Timeline for Trim audio file using start and stop times
Current License: CC BY-SA 4.0
9 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Aug 11, 2019 at 15:14 | history | edited | muru | CC BY-SA 4.0 | deleted 9 characters in body |
| S Aug 11, 2019 at 15:12 | history | suggested | ginjaemocoes | CC BY-SA 4.0 | added documentation link |
| Aug 11, 2019 at 13:59 | review | Suggested edits | |||
| S Aug 11, 2019 at 15:12 | |||||
| Oct 31, 2018 at 15:15 | comment | added | whitewings | @AvnerBarr I don't know if this is possible solely with FFmpeg, but I know it's possible with Mencoder. This works, using the -to option : ffmpeg -i mmm.mp4 -ss 00:04:04 -to 00:04:35 -c copy output1.mp4 && ffmpeg -i mmm.mp4 -ss 00:05:47 -to 00:06:05 -c copy output2.mp4 && mencoder -ovc copy -oac mp3lame -idx output1.mp4 output2.mp4 -o complete.mp4 | |
| Jul 17, 2018 at 11:47 | comment | added | Avba | Is it possible to have multiple intervals and they would be joined together? i.e. ffmpeg -i file.mp3 -ss 10 -to 11 -ss 20 -to 21 -ss 30 -to 31 .... | |
| Oct 11, 2016 at 1:50 | vote | accept | whitewings | ||
| Oct 11, 2016 at 1:35 | comment | added | whitewings | Tx, that works nicely. I find that if I don't remove the copy part the audio/video is out of sync, so I remove that and add -async 1 and it works like a charm. Of course it requires reencoding, so an improvement would be a command that would allow for the copy but without the sync issues. | |
| Oct 11, 2016 at 1:34 | vote | accept | whitewings | ||
| Oct 11, 2016 at 1:49 | |||||
| Aug 10, 2016 at 5:59 | history | answered | Miati | CC BY-SA 3.0 |