diff options
| author | cvium <clausvium@gmail.com> | 2021-03-22 20:53:55 +0100 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-03-22 20:53:55 +0100 |
| commit | 7dedeb6c795cb7764ec1cd1d2cd943f5c5506847 (patch) | |
| tree | 353bf2f761af2a17f6bc77738398e54e6a52fd16 /Jellyfin.Api/Controllers/UniversalAudioController.cs | |
| parent | 4637bbc723b2462ca01cb6cc5bd7e5e8b70b10c2 (diff) | |
change HLS endpoint defaults to false
Diffstat (limited to 'Jellyfin.Api/Controllers/UniversalAudioController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/UniversalAudioController.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Jellyfin.Api/Controllers/UniversalAudioController.cs b/Jellyfin.Api/Controllers/UniversalAudioController.cs index 0c2e6f19f..dcdd8b367 100644 --- a/Jellyfin.Api/Controllers/UniversalAudioController.cs +++ b/Jellyfin.Api/Controllers/UniversalAudioController.cs @@ -219,10 +219,10 @@ namespace Jellyfin.Api.Controllers AudioBitRate = audioBitRate ?? maxStreamingBitrate, StartTimeTicks = startTimeTicks, SubtitleMethod = SubtitleDeliveryMethod.Hls, - RequireAvc = true, - DeInterlace = true, - RequireNonAnamorphic = true, - EnableMpegtsM2TsMode = true, + RequireAvc = false, + DeInterlace = false, + RequireNonAnamorphic = false, + EnableMpegtsM2TsMode = false, TranscodeReasons = mediaSource.TranscodeReasons == null ? null : string.Join(',', mediaSource.TranscodeReasons.Select(i => i.ToString()).ToArray()), Context = EncodingContext.Static, StreamOptions = new Dictionary<string, string>(), |
