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
In Versionen von fail2ban früher als 0.8.8 gibt es noch kein „set“ und „get“. Zum entsperren also direkt iptables verwenden.
iptables -D fail2ban-jail -s 123.123.123.123 -j DROP
-D fail2ban-jail = ist der Jail von fail2ban
-s 123.123.123.123 = die IP-Adresse die nicht mehr geblockt werden soll
du -h | sort -nr
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"
find . -type f -exec grep -qi "suchwort" {} \; -print
find = Suchprogramm
. = das Verzeichnis
-type f = durchsucht nur Type File
grep = Sucht nach einem bestimmten Suchwort
convert -delay 1 -loop 0 -layers OptimizeFrame -colors 51 image*.jpg filename.gif
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