diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-04-03 19:36:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-03 19:36:41 +0200 |
| commit | 4f387dca6e9ca64cc34108a3f5e26855011dd100 (patch) | |
| tree | 5ade5a4e76b430296669f02fb31df7203876bf16 /Jellyfin.Api/Controllers/UniversalAudioController.cs | |
| parent | 9f21dd63ae4633e10da6a59e01dd9e3e34f63a86 (diff) | |
| parent | 74e14b4ca591b9043435ee1065827101379b1318 (diff) | |
Merge pull request #5598 from cvium/fix_hls_default_values
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>(), |
