Changes between Version 5 and Version 6 of Encode/PremierePro
- Timestamp:
- Oct 22, 2013, 12:13:18 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Encode/PremierePro
v5 v6 16 16 1. Save your project and close Premiere Pro 17 17 18 2. Install [http://umezawa.dyndns.info/archive/utvideo/?C=M;O=D Ut Video]. It is a fast, lossless video encoder (and decoder) .18 2. Install [http://umezawa.dyndns.info/archive/utvideo/?C=M;O=D Ut Video]. It is a fast, lossless video encoder (and decoder), and is natively supported by `ffmpeg`. 19 19 20 20 3. Open Premiere, select your sequence, and choose "File > Export > Media" (or hit ''Ctrl+M''). … … 49 49 50 50 {{{ 51 ffmpeg -i encode/frameserver.avs -c:v libx264 -preset medium -crf 23 -pix_fmt yuv420p -c:a lib mp3lame -q:a4 output.mp451 ffmpeg -i encode/frameserver.avs -c:v libx264 -preset medium -crf 23 -pix_fmt yuv420p -c:a libfdk_aac -vbr 4 output.mp4 52 52 }}} 53 53 … … 66 66 === The "Export Settings" window in Premiere does not show up === 67 67 Probably a bug in Premiere when using Debugmode !FrameServer. Save your project and restart Premiere. 68 69 === The audio is out of sync after I encode with `ffmpeg` from the frameserver === 70 You can output the audio from Premiere and mux it with the ffmpeg encoded video from the frameserver. This example will ignore any audio from the first input (`video.mp4`): 71 72 {{{ 73 ffmpeg -i video.mp4 -i audio.wav -c:v copy -c:a libfdk_aac -vbr 5 -map 0:v:0 -map 1:a:0 -shortest output.mp4 74 }}} 75 76 == Also See == 77 * [[x264EncodingGuide|FFmpeg and x264 Encoding Guide]] 78 * [[AACEncodingGuide|FFmpeg and AAC Encoding Guide]]
