Benutzer-Werkzeuge

Webseiten-Werkzeuge


playground:playground

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
playground:playground [2017/09/20 23:23] tomplayground:playground [2025/05/03 09:15] (aktuell) – Externe Bearbeitung 127.0.0.1
Zeile 1: Zeile 1:
-====== Haroopad to Dokuwiki ====== +====== PlayGround ======
-  - 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%%'' +
- +
-<code> +
-ssmtp=typ +
-varlog=message +
-</code> +
-generated by [[http://pad.haroopress.com|haroopad]] +
- +
- +
- +
- +
-  *                    [[#descaling-von-4k-bzw.-2.7k-auf-fullhd|Descaling von 4k bzw. 2.7k auf FullHD]]  +
-        *  [[#aufbereiten-für-blender|Aufbereiten für Blender]]  +
-        *  [[#screenshot-aus-video|Screenshot aus Video]]  +
-        *  [[#ein-teil-schneiden|Ein Teil schneiden]]  +
- +
-=== 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 [[http://pad.haroopress.com|haroopad]] +
  
playground/playground.1505942623.txt.gz · Zuletzt geändert: 2025/05/03 09:11 (Externe Bearbeitung)