Browse Source

Aggiorna 'ffmpeg.md'

incandenza 2 months ago
parent
commit
c46e8bbec0
1 changed files with 9 additions and 0 deletions
  1. 9 0
      ffmpeg.md

+ 9 - 0
ffmpeg.md

@@ -69,6 +69,15 @@ file '06.png'
 duration 1 
 ```
 
+### Cut a video in an interval 
 
+```
+ffmpeg -ss 00:09:41 -i .\xynthesi_no_titoli.mp4 -t 50 -map 0 -c copy clip02.mp4
+```
 
+**t** option is in seconds from the **ss** start timestamp in HH:MM:SS
 
+```
+ffmpeg -copyts -ss [start] -i in.mp4 -to [end] -map 0 -c copy out.mp4
+```
+In this second command we're specifying **start** and **end** with a full timestamp in format HH:MM:SS