Last active
November 19, 2024 06:54
-
-
Save dewomser/8332b38bc5a743af8006ea5e1acb5c25 to your computer and use it in GitHub Desktop.
Videoclip ausschneiden mit ffmpeg , Von Sekunde 7 , Länge 1.26 Minuten
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fmpeg -i porn.mp4 -ss 7 -t 01:26 porn_xxx.mp4 | |
#oder | |
fmpeg -i porn.mp4 -ss 00:07 -t 01:26 porn_xxx.mp4 | |
# und , aber nicht probiert -to statt -t | |
# statt der Länge wird Zeitstempel Ende verwendet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment