ffmpeg

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
ffmpeg [2022/06/29 08:53] Fabian Horstffmpeg [2023/03/09 20:27] (aktuell) Fabian Horst
Zeile 1: Zeile 1:
 ====== ffmpeg ====== ====== ffmpeg ======
 +
 +ffmpeg installieren:
 +  * Windows: https://www.gyan.dev/ffmpeg/builds/
 +  * Linux: sudo apt-get install ffmpeg
 +  * macOS: brew install ffmpeg 
 +
 +Chris Video Anleitung: https://www.youtube.com/watch?v=t973zd4s6R4&t=284s
 +
 +===== Yuneec Thermal Videos aufteilen =====
 +
 +Um die Videos der Drohne mit 2 Video Spuren aufzuteilen kann folgender Befehl helfen:
 +
 +Thermalvideo exportieren:
 +<code>
 +ffmpeg -i "YUN_0210.mp4" -y -vcodec libx264  -movflags faststart -map 0:v:1 -pix_fmt yuv420p "YUN_0210-thermal.mp4"
 +</code>
 +
 +Normalvideo exportieren:
 +<code>
 +ffmpeg -i "YUN_0210.mp4" -y -vcodec libx264  -movflags faststart -map 0:v:0 -pix_fmt yuv420p "YUN_0210-normal.mp4"
 +</code>
 +
 +Als Script: https://github.com/Wlanfr3ak/mixed-scripts/blob/master/yuneec-ffmpeg.sh
 +
 +Windoof: https://github.com/Wlanfr3ak/mixed-scripts/blob/master/yuneec-ffmpeg.bat
 +
 +Quelle: https://emamonline.smartertrack.com/kb/a153/extract-specific-video-and-audio-tracks-using-ffmpeg.aspx
  
 ===== AXIS Video umwandeln ===== ===== AXIS Video umwandeln =====
  
 <code>ffmpeg -i 20220626_225001_20220626_232959.mkv -codec copy test.mp4</code> <code>ffmpeg -i 20220626_225001_20220626_232959.mkv -codec copy test.mp4</code>
 +
 +===== BluRay ISO to mp4 etc. =====
 +
 +<code>https://unixsheikh.com/tutorials/remuxing-iso-dvd-or-bluray-using-cat-and-ffmpeg-on-linux.html</code>
 +
 +===== AV1 Encoding =====
 +
 +<code>ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 -c:s copy -c:a copy output.mp4</code>
 +
 +===== CUDA / NVIDIA Beschleunigung =====
 +https://docs.nvidia.com/video-technologies/video-codec-sdk/ffmpeg-with-nvidia-gpu/
 +<code>-hwaccel cuda -hwaccel_output_format cuda</code>
  
 ===== H265 ===== ===== H265 =====
  • ffmpeg.1656485625.txt.gz
  • Zuletzt geändert: 2022/06/29 08:53
  • von Fabian Horst