Example #1
0
 public Subtitle GetVideoSubtitle(string subtitleUri, string outputFormat)
 {
     // return the subtitle for the desired language in the desired format
     return(new Subtitle()
     {
         SubtitleData = AmaraApiController.GetVideoSubtitle(subtitleUri, outputFormat)
     });
 }
Example #2
0
 public Subtitle GetVideoSubtitle(string videoId, string videoLanguage, string outputFormat)
 {
     //throw new NotImplementedException();
     // return the subtitle for the desired language in the desired format
     return(new Subtitle()
     {
         SubtitleData = AmaraApiController.GetVideoSubtitle(videoId, videoLanguage, outputFormat)
     });
 }