diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-04 16:27:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-04 16:27:46 -0400 |
| commit | 7990f9ca50c21be298d8fa90ce70015a80b976c3 (patch) | |
| tree | a73baba29a1eed79446f4042ccf41d5c9cf78c56 /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | 9ffb82d96a405fdb35cdd925d8ddbba716592fef (diff) | |
update connect
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index a19b66af6..c0917b8df 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -1768,6 +1768,12 @@ namespace MediaBrowser.Api.Playback state.InputAudioSync = "1"; } + if (string.Equals(mediaSource.Container, "wma", StringComparison.OrdinalIgnoreCase)) + { + // Seeing some stuttering when transcoding wma to audio-only HLS + state.InputAudioSync = "1"; + } + var mediaStreams = mediaSource.MediaStreams; if (videoRequest != null) |
