Changes between Version 1 and Version 2 of Software/encoding


Ignore:
Timestamp:
09/29/17 14:00:34 (7 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Software/encoding

    v1 v2  
    11
    2 == Encoding Movies
     2== Encoding Movies with MEncoder/FFmpeg
    33[[PageOutline]]
    44
     5=== Introduction
     6MPlayer is available on JURECA.
     7Please load the required modules first:
    58{{{#!ShellExample
    6 mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg \
     9module load Stages/Devel-2017a
     10module load GCC/5.4.0
     11module load MPlayer
     12}}}
     13
     14For more details on MEncoder please check [http://www.mplayerhq.hu/DOCS/HTML/en/encoding-guide.html here]
     15
     16==== Images => Movie:
     17
     18===== Example 1: JPEG -> MPEG4 in AVI-container (with vcodec=mpeg4)
     19For details on lavopts check [http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-vcd-dvd.html#menc-feat-vcd-dvd-lavc here]
     20{{{#!ShellExample
     21mencoder mf://*.jpg -mf w=1920:h=1080:fps=25:type=jpg \
    722-ovc lavc \
    823   -lavcopts vcodec=mpeg4:mbd=2:trell \
     
    1126}}}
    1227
    13 === mencoder Examples
     28===== Example 2: PNG -> MPEG4 in AVI-container (with library x264 through FFmpeg integrated into mencoder)
     29For details on x264encopts check [http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-x264.html here]
     30{{{#!ShellExample
     31mencoder mf://*.png -mf w=1920:h=1080:fps=25:type=png \
     32-ovc x264 \
     33   -x264encopts \
     34      bitrate=900:bframes=1:me=umh:partitions=all:trellis=1:qp_step=4:qcomp=0.7:direct_pred=auto:keyint=300:threads=auto \
     35-oac copy \
     36-o output.avi
     37}}}
     38
     39
     40===== Example 3: PNG -> MPEG4 (ready for !QuickTime 7)
    1441(ready for !QuickTime 7 limitations - taken from [https://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-quicktime-7.html here])
    1542
     
    3461}}}
    3562
    36 === ffmpeg Examples
     63==== ffmpeg Examples
    3764(https://www.virag.si/2012/01/web-video-encoding-tutorial-with-ffmpeg-0-9)
    3865{{{#!ShellExample