Пример #1
0
 public async Task Convert2DvdMpegNtscAsyncTest()
 {
     using (var a = new LibMPlayerCommon.Mencoder())
     {
         await a.Convert2DvdMpegAsync(LibMPlayerCommon.Mencoder.RegionType.NTSC, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegNtsc);
     }
 }
Пример #2
0
        public async void Convert2DvdMpegNtscAsyncTest()
        {
            LibMPlayerCommon.Mencoder a = new LibMPlayerCommon.Mencoder();
            await a.Convert2DvdMpegAsync(LibMPlayerCommon.Mencoder.RegionType.NTSC, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegNtsc);

        }
Пример #3
0
 public async void Convert2DvdMpegPalAsyncTest()
 {
     var a = new LibMPlayerCommon.Mencoder();
     await a.Convert2DvdMpegAsync(LibMPlayerCommon.Mencoder.RegionType.PAL, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegPal);
 }