jeudi 6 septembre 2018

how to change metadata on a video file with ffmpeg?

ffmpeg -loglevel quiet -i movie.avi -codec copy -metadata title="new title of the movie" movie-output.avi

Aucun commentaire:

Enregistrer un commentaire

bash script to convert all mp4 in a folder to mkv files with ffmpeg

 #!/bin/bash for i in *.mp4; do   echo "$i" "${i%%.*}.mkv"   ffmpeg -i "$i" -vcodec copy -acodec copy "${...