Ffmpeg/Tonspuren: Unterschied zwischen den Versionen

Aus Foxwiki
Wechseln zu:Navigation, Suche
Die Seite wurde neu angelegt: „==== Tonspuren ==== ; Tonspuren entfernen Videostrom ohne Ton kopieren $ ffmpeg -i [input file] '''-an''' '''-c:v copy''' [output file] {| class="wikitable options big" |- ! Option !! Beschreibung |- | -an || Tonspur ignorieren |- | -c:v copy || Kopie ohne Neukodierung |} ; Beispiel $ ffmpeg -i input.mp4 -an -c:v copy output.mp4“
 
K Textersetzung - „ options"“ durch „ col1bold col1nowrap"“
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 4: Zeile 4:
  $ ffmpeg -i [input file] '''-an''' '''-c:v copy''' [output file]
  $ ffmpeg -i [input file] '''-an''' '''-c:v copy''' [output file]


{| class="wikitable options big"
{| class="table table-striped table-hover col1bold col1nowrap"
|-
|-
! Option !! Beschreibung
! Option !! Beschreibung
Zeile 15: Zeile 15:
; Beispiel
; Beispiel
  $ ffmpeg -i input.mp4 -an -c:v copy output.mp4
  $ ffmpeg -i input.mp4 -an -c:v copy output.mp4
[[Kategorie:FFMPEG]]

Aktuelle Version vom 22. September 2026, 21:16 Uhr

Tonspuren

Tonspuren entfernen

Videostrom ohne Ton kopieren

$ ffmpeg -i [input file] -an -c:v copy [output file]
Option Beschreibung
-an Tonspur ignorieren
-c:v copy Kopie ohne Neukodierung
Beispiel
$ ffmpeg -i input.mp4 -an -c:v copy output.mp4