1. 分别下载1080p以上的高清视频及其音频

2.安装ffmpeg

3.muxing

ffmpeg -i input_video.mp4 -i input_audio.mp4 -c copy -map 0:v:0 -map 1:a:0 -shortest output.mp4

 

  • -map 0:v:0 can be translated as: from the first input (0), select video stream type (v), first video stream (0)
  • -map 1:a:0 can be translated as: from the second input (1), select audio stream type (a), first audio stream (0)

 

REFER: http://stackoverflow.com/questions/12938581/ffmpeg-mux-video-and-audio-from-another-video-mapping-issue

利用ffmpeg合并(mux)已下载的youtube高清视频与音频文件

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据