diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-16 14:18:49 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-16 14:18:49 -0400 |
| commit | 27c644e6c8e215efe47e16bf49db0aec619409bc (patch) | |
| tree | 6eef7a499ddf0581beff22ad3a71bcd503c7737d /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | 44493dca1d597f3cf9f8cf5db8d0ddda082c65e0 (diff) | |
#236 - Subtitle charset
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index f035aebd9..c7ac0184f 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -385,7 +385,7 @@ namespace MediaBrowser.Api.Playback Directory.CreateDirectory(parentPath); } - var task = MediaEncoder.ConvertTextSubtitleToAss(subtitleStream.Path, path, offset, CancellationToken.None); + var task = MediaEncoder.ConvertTextSubtitleToAss(subtitleStream.Path, path, subtitleStream.Language, offset, CancellationToken.None); Task.WaitAll(task); } |
