Converting video formats and copying tags with ffmpeg

后端 未结 3 717
抹茶落季
抹茶落季 2020-12-10 03:43

I\'ve been trying to convert some videos I took on my camera to a compressed format in order to save some storage space. I figured out how to use ffmpeg to convert the video

3条回答
  •  旧时难觅i
    2020-12-10 04:28

    To write all metadata (global, video, audio) to a file use

    ffmpeg -i in.mp4 -c copy -map_metadata 0 -map_metadata:s:v 0:s:v -map_metadata:s:a 0:s:a -f ffmetadata in.txt
    

    To add all metadata from a file use

    ffmpeg -i in.mp4 -f ffmetadata -i in.txt -c copy -map_metadata 1 out.mp4
    

提交回复
热议问题