aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-04 16:27:46 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-04 16:27:46 -0400
commit7990f9ca50c21be298d8fa90ce70015a80b976c3 (patch)
treea73baba29a1eed79446f4042ccf41d5c9cf78c56 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parent9ffb82d96a405fdb35cdd925d8ddbba716592fef (diff)
update connect
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs6
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)