You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've looked through examples and the documentation but can't find a way to cut up a video. E.g. Remove the first and last 30 seconds from a video.
I know you can do this from the command line. E.g. ffmpeg -i inputVideo.mp4 -ss 00:10:00 -to 00:12:00 outputClip.mp4 which you could invoke from Rust code. E.g. Command::new("ffmpeg") but I was hoping to do it through the crate.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi. Fairly new Rustacean here.
I've looked through examples and the documentation but can't find a way to cut up a video. E.g. Remove the first and last 30 seconds from a video.
I know you can do this from the command line. E.g.
ffmpeg -i inputVideo.mp4 -ss 00:10:00 -to 00:12:00 outputClip.mp4
which you could invoke from Rust code. E.g.Command::new("ffmpeg")
but I was hoping to do it through the crate.Any help would be much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions