now handles spaces in command names (in the naming of the export folder)
[pyvconv.git] / commands.xml
blob7d9b1e56a14364aa0e61418f661889e079bd3981
1 <?xml version="1.0" encoding="UTF-8"?>
2 <commands>
4 <command name="OGV/Cinelerra" call="ffmpeg2theora $[optquality] -c 2 -o ${out} ${in}">
5 <variable name="quality" expr="[1-9]"/>
6 <optionalsetting name="optquality" expr="-v ${quality} -a 3"/>
7 </command>
9 <command name="MPEG-4/Cinelerra" call="ffmpeg -i ${in} -f mp4 -vcodec libxvid -maxrate 2000k -b 2000k -qmin 3 -qmax 5 -bufsize 4096k -g 300 -acodec libfaac -ac 2 -ab 128k -ar 48000 ${out}"/>
11 <command name="MPEG-2 DVD NTSC/Cinelerra" call="ffmpeg -i ${in} -target ntsc-dvd -aspect 4:3 ${out}"/>
13 <command name="DV Cinelerra/Kino" call="ffmpeg -i ${in} -target ntsc-dv ${out}" />
15 <command name="MPEG-2 DVD/Cinelerra" call="ffmpeg -i ${in} -target dvd -s ${size} -ac 2 ${out}">
16 <variable name="size" default="640x480" expr="(640x480|800x600)"/>
17 </command>
19 <command name="MPEG-4/IPod" call="ffmpeg -i ${in} -f mov -b 1800 -maxrate 2500 -vcodec libxvid -qmin 3 -qmax 5 -s 320x180 -padtop 30 -padbottom 30 -acodec libfaac -ab 128 ${out}"/>
21 </commands>