fix ts mode with hdhr clients (#588)

This commit is contained in:
Jason Dove
2022-01-23 18:58:15 -06:00
committed by GitHub
parent 1af59a0337
commit 4aa7204984
4 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ namespace ErsatzTV.Core.Iptv
StreamingMode.HttpLiveStreamingDirect => "m3u8?mode=hls-direct",
StreamingMode.HttpLiveStreamingSegmenter => "m3u8?mode=segmenter",
StreamingMode.TransportStreamHybrid => "ts",
_ => "ts?mode=legacy"
_ => "ts?mode=ts-legacy"
};
string vcodec = channel.FFmpegProfile.VideoCodec.Split("_").Head();