Changes between Version 11 and Version 12 of Encode/YouTube
- Timestamp:
- Jul 15, 2014, 9:53:07 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Encode/YouTube
v11 v12 125 125 Inverse telecine a NTSC DVD rip (output video framerate will be "ntsc-film", 24000/1001): 126 126 {{{ 127 ffmpeg -i input.mpg -strict experimental -c:a aac -b:a 128k -vf "fieldmatch=combmatch=full:mode=pc_n_ub, yadif=deint=interlaced, decimate" -pix_fmt yuv420 -c:v libx264 -crf 18 -preset slow -tune film -bf 2 -movflags faststart -shortest output.mp4127 ffmpeg -i input.mpg -strict experimental -c:a aac -b:a 128k -vf "fieldmatch=combmatch=full:mode=pc_n_ub, yadif=deint=interlaced, decimate" -pix_fmt yuv420p -c:v libx264 -crf 18 -preset slow -tune film -bf 2 -movflags faststart -shortest output.mp4 128 128 }}} 129 129 130 130 Same thing, but just de-interlace it (output video framerate will be "ntsc", 30000/1001): 131 131 {{{ 132 ffmpeg -i input.mpg -strict experimental -c:a aac -b:a 128k -vf yadif -pix_fmt yuv420 -c:v libx264 -crf 18 -preset slow -tune film -g 15 -bf 2 -movflags faststart -shortest output.mp4132 ffmpeg -i input.mpg -strict experimental -c:a aac -b:a 128k -vf yadif -pix_fmt yuv420p -c:v libx264 -crf 18 -preset slow -tune film -g 15 -bf 2 -movflags faststart -shortest output.mp4 133 133 }}}
