Difference between revisions of "MLT"

From Vague Hope Wiki
Jump to: navigation, search
Line 16: Line 16:
 
* 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
 +
 +
== From src ==
 +
 +
* http://www.mltframework.org/bin/view/MLT/BuildScripts
 +
* https://github.com/mltframework/mlt-scripts

Revision as of 01:18, 6 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.

From src