Advertisement
Guest User

ffmpeg mpeg2 2-pass encoding parameters

a guest
Sep 16th, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.57 KB | None | 0 0
  1. ffmpeg -i current/input.avi \
  2.     -vcodec mpeg2video -strict strict -profile:v 4 -level:v 8 \
  3.     -pass 1 \
  4.     -b:v 4800k -maxrate 8700k -minrate 0 -bufsize 1835k \
  5.     -g 15 -bf 2 \
  6.     -b_strategy 2 -brd_scale 0 -b_sensitivity 40 \
  7.     -qmin 1 -qmax 28 -qdiff 3 -dc 10 -non_linear_quant 1 \
  8.     -luma_elim_threshold -4 -chroma_elim_threshold 7 \
  9.     -qcomp 0.6 -qblur 0.5 -rc_strategy 0 \
  10.     -lmin 59 -lmax 3658 \
  11.     -i_qfactor -0.8 -i_qoffset 0 -ibias 96 -pbias 0 \
  12.     -b_qfactor -4 -b_qoffset 1.25 \
  13.     -sc_threshold 0 \
  14.     -me_method dia -me_range 0 -dia_size 6 -pre_dia_size 6 \
  15.     -preme 1 -bidir_refine 4 -mv0_threshold 256 \
  16.     -mbd rd -cmp 2 -subcmp 2 -mbcmp 2 -precmp 2 -skipcmp 2 \
  17.     -nr 0 \
  18.     -aspect 16/9 -threads 2 \
  19.     -f dvd \
  20.     -passlogfile current/ffm48dcqm-nlqs-dz-basic-goprc1-me8-mc4-rc4 \
  21.     /dev/null -y && \
  22. ffmpeg -i current/input.avi \
  23.     -vcodec mpeg2video -strict strict -profile:v 4 -level:v 8 \
  24.     -pass 2
  25.     -b:v 4800k -maxrate 8700k -minrate 0 -bufsize 1835k \
  26.     -g 15 -bf 2 \
  27.     -qmin 1 -qmax 28 -qdiff 3 -dc 10 -non_linear_quant 1 \
  28.     -luma_elim_threshold -4 -chroma_elim_threshold 7 \
  29.     -qcomp 0.6 -qblur 0.5 -rc_strategy 0 \
  30.     -lmin 59 -lmax 3658 \
  31.     -i_qfactor -0.8 -i_qoffset 0 -ibias 96 -pbias 0 \
  32.     -b_qfactor -4 -b_qoffset 1.25 \
  33.     -sc_threshold 0 \
  34.     -me_method dia -me_range 0 -dia_size 6 -pre_dia_size 6 \
  35.     -preme 1 -bidir_refine 4 -mv0_threshold 256 \
  36.     -mbd rd -cmp 2 -subcmp 2 -mbcmp 2 -precmp 2 -skipcmp 2 \
  37.     -nr 0 \
  38.     -aspect 16/9 -threads 2 \
  39.     -f dvd \
  40.     -passlogfile current/ffm48dcqm-nlqs-dz-basic-goprc1-me8-mc4-rc4 \
  41.     current/ffm48dcqm-nlqs-dz-basic-goprc1-me8-mc4-rc4.vob -y
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement