Changes between Version 1 and Version 2 of AACEncodingGuide
- Timestamp:
- 01/11/2013 02:29:59 AM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AACEncodingGuide
v1 v2 63 63 }}} 64 64 65 Convert the video with [[x264EncodingGuide#twopass|libx264]], with a target of fitting a 90-minute movie on a 700MB(=5734400kb) CD-ROM, mixing the audio down to two channels :65 Convert the video with [[x264EncodingGuide#twopass|libx264]], with a target of fitting a 90-minute movie on a 700MB(=5734400kb) CD-ROM, mixing the audio down to two channels (WIndows users should use `NUL` rather than `/dev/null`: 66 66 67 67 {{{ 68 ffmpeg -i input.mp4 -c:v libx264 -b:v 933k -preset:v veryfast -pass 1 -an /dev/null \ 69 ffmpeg -i input.mp4 -c:v libx264 -b:v 933k -preset:v veryfast -pass 2 -ac 2 -c:a libfdk_aac -b:a 128k -afterburner:a 1 output.mp4 68 ffmpeg -y -i input.mp4 -c:v libx264 -b:v 933k -preset:v veryfast -pass 1 -an /dev/null \ 69 ffmpeg -i input.mp4 -c:v libx264 -b:v 933k -preset:v veryfast -pass 2 \ 70 -ac 2 -c:a libfdk_aac -b:a 128k -afterburner:a 1 output.mp4 70 71 }}} 71 72


