Example #1
0
 public void Cancel()
 {
     Utilities.DebugLine("[TranscodingAPI] Cancel", Source);
     using (var host = TranscodingNotifyingService.NewTranscodingServiceProxy())
         host.Channel.Cancel(Source.Key);
 }
Example #2
0
 public string MakeMPEGLink(string mpegFolder, string vob)
 {
     Utilities.DebugLine("[TranscodingAPI] MakeMPEGLink", mpegFolder, vob);
     using (var host = TranscodingNotifyingService.NewTranscodingServiceProxy())
         return(host.Channel.MakeMPEGLink(mpegFolder, vob));
 }
Example #3
0
 public bool CreateSymbolicLink(string mpegFile, string vob)
 {
     Utilities.DebugLine("");
     using (var host = TranscodingNotifyingService.NewTranscodingServiceProxy())
         return(host.Channel.CreateSymbolicLink(mpegFile, vob));
 }
Example #4
0
 public void Transcode()
 {
     Utilities.DebugLine("[TranscodingAPI] Transcode", Source);
     using (var host = TranscodingNotifyingService.NewTranscodingServiceProxy())
         host.Channel.Transcode(Source, Environment.UserName);
 }