concat videos with cat and ffmpeg

On March 15, 2009, in media, by nils

i tried several methods but this was the best:

    cat *.MPG | ffmpeg -i - -b 1500k -ar 44100 together.flv

the * goes in ordered state so if you have videos from your camera they are already ordered.

Tagged with:
 

can't see it anymore!!!

On August 8, 2008, in linux, by nils

i hate when people escape the quotes in a php or perl or bash cgi script :

there is a little workaround called End Of Message:

in perl do

print << EOM;
htmlcode without escaping
EOM;

with bash you would use cat instead of print.

Tagged with: