Converting Real Media with ffmpeg

核能气质少年 提交于 2019-12-06 10:48:52

It would appear that your file contains several streams and when working with ffmpeg, you will need to select the ones you want to convert. One would assume that you want an Audio / Video pair at the highest quality within the file. Here is how you use the "map" option to target streams: http://trac.ffmpeg.org/wiki/How%20to%20use%20-map%20option

If I had this file I would use this command:

ffmpeg -i [real-input-file] \
-map 0:8 -map 0:7 \
-c:v libx264 \
-c:a libfaac -b:a 32k \
output.mkv
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!