Difference between revisions of "MLT"

From Vague Hope Wiki
Jump to: navigation, search
Line 11: Line 11:
 
   vcodec=libx264 mlt_profile=atsc_1080p_25 vb=15M
 
   vcodec=libx264 mlt_profile=atsc_1080p_25 vb=15M
  
see `x264 --fullhelp` for tune, preset params.
+
see <code>x264 --fullhelp</code> for tune, preset params.
  
 
* http://www.mltframework.org/bin/view/MLT/ConsumerAvformat
 
* http://www.mltframework.org/bin/view/MLT/ConsumerAvformat
 
* http://superuser.com/questions/358082/command-line-video-editing-in-linux-cut-join-and-preview
 
* http://superuser.com/questions/358082/command-line-video-editing-in-linux-cut-join-and-preview
 
* http://bernaerts.dyndns.org/linux/74-ubuntu/214-ubuntu-stabilize-video-melt
 
* http://bernaerts.dyndns.org/linux/74-ubuntu/214-ubuntu-stabilize-video-melt

Revision as of 17:02, 5 October 2013

melt prj.xml -consumer avformat:prj.mp4 \
 acodec=libmp3lame acodec=aac ab=128k \
 vcodec=libx264 vb=15M acodec=aac ab=128k preset=slow apsect=16/9
melt prj.xml -consumer avformat:prj.mp4 \
 acodec=libmp3lame acodec=aac ab=128k \
 vcodec=libx264 vb=15M acodec=aac ab=128k tune=film preset=slow apsect=16/9
melt prj.xml -consumer avformat:prj.mp4 \
 acodec=libmp3lame acodec=aac ab=128k \
 vcodec=libx264 mlt_profile=atsc_1080p_25 vb=15M

see x264 --fullhelp for tune, preset params.