Aggiorna 'ffmpeg.md'

This commit is contained in:
incandenza 2024-02-08 10:31:33 +01:00
parent cae5e836c3
commit c46e8bbec0

View file

@ -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