ffmpeg -i in.mp4 -profile:v baseline -vf „scale=iw/4:ih/4“ out.mp4
Bildgröße vierteln mit „scale=iw/4:ih/4“
Bildgröße halbieren mit „scale=iw/2:ih/2“
und so weiter
ffmpeg -i in.mp4 -profile:v baseline -vf „scale=iw/4:ih/4“ out.mp4
Bildgröße vierteln mit „scale=iw/4:ih/4“
Bildgröße halbieren mit „scale=iw/2:ih/2“
und so weiter
avconv -i "$inputFile" -threads 8 -s 1280x720 -preset libvpx-720p -b 3900k -pass 1 -an -f webm -y "$outputFile"
avconv -i "$inputFile" -threads 8 -preset libvpx-720p -pass 2 -b 3900k -acodec libvorbis -ar 44100 -ac 2 -ab 128k -f webm -y "$outputFile"
ffmpeg -i quell-video.mpg -sameq ziel-video.flv -i Quellvideo -sameq benutze den selben Quantisierer wie die Quelle
ffmpeg ist unter der Linux Distribution Ubuntu verfügbar