**Dies ist eine alte Version des Dokuments!**
Inhaltsverzeichnis
Haroopad to Dokuwiki
- Text in Haroopad erstellen
- aus Haroopad in HTML exportieren
- mit Pandoc von html to dokuwiki
pandoc --from html --to dokuwiki haroopad.html > test.txt
ein Titel der ersten Stufe
der zweiten Stufe
der dritten Stufe
der vierten Stufe
der fünften Stufe
dein fetter Text
muss dann kursiv sein
text der unsterstrichen ist
sudo cat /etc/httpd/httpd.conf
ssmtp=typ varlog=message
generated by haroopad
-
Descaling von 4k bzw. 2.7k auf FullHD
ffmpeg -i DJI_0010.MOV -vf scale=1920:1080 -c:v libx264 -crf 20 -preset slow -c:a copy DJI_0001_fullhd.mp4
-c:v\\libx264 tells it to use the libx264 encoder
crf 20\\uses the Constant Rate Factor quantiser (which paradoxially means variable bit rate, but constant quality) with a value of 20 (pretty good quality; lower is better quality / larger files, higher is crappier / smaller)
slow\\preset is a shortcut for a bunch of encoder settings that means it puts a bit more effort into it than the default (medium). > -c:a copy
using audio as it is without re-encoding
Aufbereiten für Blender
ffmpeg -i DJI_0010.MP4 -acodec copy -vcodec copy DJI_0010_FullHD-copy.MP4
einfache Kopie um Encoder zu entfernen gleiches Ergebnis wir Rohmaterial vom Mavic, aber besser in Blender zu verarbeiten
Screenshot aus Video
ffmpeg -itsoffset -46 -i DJI_0001_fullhd.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -s 1920x1080 DJI_0001_fullHD.jpg
Ein Teil schneiden
-ss ist die Startzeit and -t die Dauer
so if you want 10 seconds from a video starting from minute one, you would use this.
ffmpeg -i INFILE.mp4 -vcodec copy -acodec copy -ss 00:01:00.000 -t 00:00:10.000 OUTFILE.mp4
You can use seconds or hh:mm:ss[.xxx] as arguments for the start time and duration, i prefer the second option. The options -vcodec copy and -acodec copy are used to only cut the video and disable the re-encoding, this really speed things up.
generated by haroopad