Changes between Version 3 and Version 4 of Software/encoding


Ignore:
Timestamp:
10/23/17 15:32:55 (7 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Software/encoding

    v3 v4  
    6464}}}
    6565
     66
     67===== Example 4: WMV -> MPEG4 (best quality)
     68Shown is encoding MPEG4 movie with 5000 bit/s using best quality settings.\\
     69You can increase the quality only by increasing the bit rate and therefore the file size.
     70
     71Pass 1:
     72{{{#!ShellExample
     73mencoder input.wmv \
     74-ovc x264 \
     75   -x264encopts pass=2:bitrate=15000:bframes=3:subq=7:frameref=6:me=umh:partitions=all:trellis=1:qp_step=4:qcomp=0.7:direct_pred=auto:keyint=300:threads=auto \
     76   -vf harddup \
     77-oac copy \
     78-o output.mp4
     79}}}
     80
     81Pass 2:
     82{{{#!ShellExample
     83mencoder input.wmv \
     84-ovc x264 \
     85   -x264encopts pass=2:bitrate=15000:bframes=3:subq=7:frameref=6:me=umh:partitions=all:trellis=1:qp_step=4:qcomp=0.7:direct_pred=auto:keyint=300:threads=auto \
     86   -vf harddup \
     87-oac copy \
     88-o output.mp4
     89}}}
     90
     91Pass 3:
     92{{{#!ShellExample
     93mencoder input.wmv \
     94-ovc x264 \
     95   -x264encopts pass=3:bitrate=15000:bframes=3:subq=7:frameref=6:me=umh:partitions=all:trellis=1:qp_step=4:qcomp=0.7:direct_pred=auto:keyint=300:threads=auto \
     96   -vf harddup \
     97-oac copy \
     98-o output.mp4
     99}}}
     100
    66101==== ffmpeg Examples
    67102(https://www.virag.si/2012/01/web-video-encoding-tutorial-with-ffmpeg-0-9)