Advertisement
Guest User

encoding flags trouble

a guest
Mar 13th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     FLAGS="$FLAGS --enable-shared --disable-symver"
  2.     FLAGS="$FLAGS --enable-small --optimization-flags=-O2"
  3.     FLAGS="$FLAGS --disable-doc"
  4.     FLAGS="$FLAGS --disable-ffmpeg"
  5.     FLAGS="$FLAGS --disable-ffplay"
  6.     FLAGS="$FLAGS --disable-ffprobe"
  7.     FLAGS="$FLAGS --disable-ffserver"
  8.     FLAGS="$FLAGS --disable-avdevice"
  9.     FLAGS="$FLAGS --disable-swresample"
  10.     FLAGS="$FLAGS --disable-swscale"
  11.     FLAGS="$FLAGS --disable-postproc"
  12.     FLAGS="$FLAGS --disable-avfilter"
  13.     FLAGS="$FLAGS --disable-everything"
  14.     FLAGS="$FLAGS --disable-gpl"
  15.    
  16.     # FFmpeg mp4/h264 decoding options
  17.     # NOTES:
  18.     # - "sdp" demuxer is required!
  19.     FLAGS="$FLAGS --enable-demuxer=h264,sdp"
  20.     FLAGS="$FLAGS --enable-parser=h264"
  21.     FLAGS="$FLAGS --enable-decoder=h264"
  22.     FLAGS="$FLAGS --enable-protocol=file"    
  23.  
  24.     # FFmpeg mp4/h264 encoding options
  25.     # NOTES:
  26.     # - "libx264" is the h264 encoder!
  27.     FLAGS="$FLAGS --enable-gpl"
  28.     FLAGS="$FLAGS --enable-libx264"
  29.     FLAGS="$FLAGS --enable-muxer=mp4,h264"
  30.     FLAGS="$FLAGS --enable-swscale"
  31.     FLAGS="$FLAGS --enable-swresample"
  32.    
  33.     FLAGS="$FLAGS --disable-debug"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement