How to cut video using ffmpeg in iOS? -
does 1 know how cut portion video stream based on start , end time ? using ffmpeg library in ios.
if dont mind doing application rather library:
ffmpeg -i video.mp4 -ss hh:mm:ss -to hh:mm:ss -c copy cut.mp4
eg
ffmpeg -i video.mp4 -ss 00:01:00 -to 00:02:00 -c copy cut.mp4
-c copy tells remux rather transcode depends on codecs using whether or not work
Comments
Post a Comment