public void Convert_Test4()
        {
            LibMPlayerCommon.Mencoder a = new LibMPlayerCommon.Mencoder();
            a.Convert2DvdMpeg(LibMPlayerCommon.Mencoder.RegionType.NTSC, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegNtsc);

            a.ConversionComplete+=new LibMPlayerCommon.MplayerEventHandler(a_ConversionComplete);
        }
Esempio n. 2
0
 public void Convert2DvdMpegPalTest()
 {
     using (var a = new LibMPlayerCommon.Mencoder())
     {
         a.Convert2DvdMpeg(LibMPlayerCommon.Mencoder.RegionType.PAL, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegPal);
     }
 }
        public void Convert2DvdMpegNtscTest()
        {
            var a = new LibMPlayerCommon.Mencoder();
            a.Convert2DvdMpeg(LibMPlayerCommon.Mencoder.RegionType.NTSC, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegNtsc);

            a.ConversionComplete += a_ConversionComplete;
        }
        public void Convert2DvdMpegNtscTest()
        {
            var a = new LibMPlayerCommon.Mencoder();

            a.Convert2DvdMpeg(LibMPlayerCommon.Mencoder.RegionType.NTSC, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegNtsc);

            a.ConversionComplete += a_ConversionComplete;
        }
 public void Convert_Test3()
 {
     LibMPlayerCommon.Mencoder a = new LibMPlayerCommon.Mencoder();
     a.Convert2DvdMpeg(LibMPlayerCommon.Mencoder.RegionType.PAL, GlobalVariables.Video8Path, GlobalVariables.OutputVideoDvdMpegPal);
 }