Changes between Version 33 and Version 34 of x264EncodingGuide


Ignore:
Timestamp:
11/28/2012 01:41:50 AM (6 months ago)
Author:
llogan
Comment:

fix "muxer does not support non seekable output"

Legend:

Unmodified
Added
Removed
Modified
  • x264EncodingGuide

    v33 v34  
    4646 
    4747{{{ 
    48 ffmpeg -i input -c:v libx264 -preset fast -b:v 555k -pass 1 -an -f mp4 - && \ 
     48ffmpeg -i input -c:v libx264 -preset fast -b:v 555k -pass 1 -an -f mp4 -y /dev/null && \ 
    4949ffmpeg -i input -c:v libx264 -preset fast -b:v 555k -pass 2 -c:a libfaac -b:a 128k output.mp4 
    5050}}} 
     51 
     52  '''Note:''' Windows users should use `NUL` instead of `/dev/null`. 
    5153 
    5254As with CRF, choose the slowest preset you can tolerate.