On Sun, Jan 15, 2017 at 21:02:00 +0500, Saif Ullah wrote: > Recently I tried downloading a video file via a program called "video cache > view", it created two video files instead of one numbered as > mpegdashtmp1.mp4 which are i guess in some mpeg-dash format. I searched > about it and came to know that out of these two files one should contain > the audio and the other will be the video part. How can I convert those > files to mp4/mkv via FFMPEG.
This is normally as easy as: $ ffmpeg -i video.mp4 -i audio.mp4 -map 0 -map 1 -c copy output.mkv Moritz _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
