Schlagwort-Archive: video

Mehrere avi-Dateien zu einer zusammenfügen (OSX)

cat part1.avi part2.avi part3.avi > tmp.avi && mencoder -forceidx -oac copy -ovc copy tmp.avi -o output.avi && rm -f tmp.avi

 

wenn es nicht funktioniert:

-bash: mencoder: command not found. Download ffmpegXbinaries20060307.zip unzip and then copy mencoder to /usr/local/bin

FFmpeg: Bild mit Musik versehen

Create a video with a still image (input.png) and an audio file (audio.ogg):

ffmpeg -loop 1 -r 2 -i input.png -i audio.ogg -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mkv

Achtung – Hochkant Bild erzeugt auch Hochkant Video!