public void convertAndSplit() { string inputPath = @"C:\Users\adamz\Source\Repos\Hackathon_New\Hackathon\HackathonTests\bin\Debug\ted.mp4"; string OutPutPath = @"C:\Users\adamz\Source\Repos\Hackathon_New\Hackathon\HackathonTests\bin\Debug\"; VideoToWavConverter vdCconv = new VideoToWavConverter(inputPath, OutPutPath); vdCconv.Convert(); WavSplitter.Split(15, "ted_audio.wav"); }
public void WrongOutputPath() { VideoToWavConverter v = new VideoToWavConverter(@"C:\Users\Ron Michaeli\Downloads\1.mp4", @"C:\Users\Ron Michaeli\Downloa"); v.Convert(); }
public void GoodConversion() { VideoToWavConverter v = new VideoToWavConverter(@"C:\Users\Ron Michaeli\Downloads\1.mp4", @"C:\Users\Ron Michaeli\Downloads"); v.Convert(); }