diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2020-11-20 08:17:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-20 08:17:05 +0100 |
| commit | 84fe0462266c377caa2dcc5a919230cab0fe694c (patch) | |
| tree | 8e2ed75e7e96f6c11b064a11254e722cc907874d /Jellyfin.Api/Helpers/TranscodingJobHelper.cs | |
| parent | 8b23c4e241f33b65a2b5013e849d09d40bf41f2a (diff) | |
| parent | 44ff7a48436123e7290c576e2ca97c400e9f0ffa (diff) | |
Merge pull request #4432 from nyanmisaka/fmp4-hls
Add initial support for HEVC over FMP4-HLS
Diffstat (limited to 'Jellyfin.Api/Helpers/TranscodingJobHelper.cs')
| -rw-r--r-- | Jellyfin.Api/Helpers/TranscodingJobHelper.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/TranscodingJobHelper.cs b/Jellyfin.Api/Helpers/TranscodingJobHelper.cs index 26a03105d..85cfbd00f 100644 --- a/Jellyfin.Api/Helpers/TranscodingJobHelper.cs +++ b/Jellyfin.Api/Helpers/TranscodingJobHelper.cs @@ -771,8 +771,9 @@ namespace Jellyfin.Api.Helpers new LiveStreamRequest { OpenToken = state.MediaSource.OpenToken }, cancellationTokenSource.Token) .ConfigureAwait(false); + var encodingOptions = _serverConfigurationManager.GetEncodingOptions(); - _encodingHelper.AttachMediaSourceInfo(state, liveStreamResponse.MediaSource, state.RequestedUrl); + _encodingHelper.AttachMediaSourceInfo(state, encodingOptions, liveStreamResponse.MediaSource, state.RequestedUrl); if (state.VideoRequest != null) { |
