I wrote a function to cut videos using the NReco library.
public void SplitVideo(string SourceFile,string DestinationFile,int StartTime,int EndTime) { var ffMpegConverter = new FFMpegConverter(); ffMpegConverter.ConvertMedia(SourceFile, null, DestinationFile, null, new ConvertSettings() { Seek = StartTime, MaxDuration = (EndTime-StartTime),
This works and gives me the video, from the beginning of the video to the maximum duration that I assigned. It does not start from the position of the search value and the maximum duration. Can anyone help me on this.
ffmpeg
Kanishka Jul 27 '16 at 12:42 on 2016-07-27 12:42
source share