Outlander S01e13 Ffmpeg -
often includes multiple audio tracks (e.g., commentary) or subtitles.
ffmpeg -i input.mp4 -vf scale=-1:720 -c:v libx264 -crf 20 output_720p.mp4 . ffmpeg Documentation outlander s01e13 ffmpeg
ffmpeg -i input.mp4 -c:v libx265 -crf 28 -c:a copy output_hevc.mp4 . 4. Audio and Subtitle Management often includes multiple audio tracks (e
This command scales the video to 1280x720, and converts both video and audio to formats commonly supported by mobile devices. often includes multiple audio tracks (e.g.
Let's say you have a file named outlander_s01e13.mp4 and you want to convert it to a format suitable for a mobile device:
$$ffmpeg -i outlander_s01e13.mp4 -vf scale=1280:720 -c:v libx264 -c:a aac outlander_mobile.mp4$$