diff options
| author | Abitofevrything <54505189+abitofevrything@users.noreply.github.com> | 2026-01-18 12:17:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-18 12:17:06 +0100 |
| commit | 8d052a6cb17421e6c7774bafc6957029f3c9d4ae (patch) | |
| tree | 015d513cee276a2582ce8cd14184a475f21ab146 /MediaBrowser.MediaEncoding/Transcoding | |
| parent | b9abf590c528803c8ca7d4a953b58d54fa59f797 (diff) | |
Merge pull request #15926 from abitofevrything/feat/accurate_hls_seeking
Refactor HLS transcode seeking
Diffstat (limited to 'MediaBrowser.MediaEncoding/Transcoding')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs b/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs index 2fd054f11..defd855ec 100644 --- a/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs +++ b/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs @@ -673,7 +673,7 @@ public sealed class TranscodeManager : ITranscodeManager, IDisposable if (state.VideoRequest is not null) { - _encodingHelper.TryStreamCopy(state); + _encodingHelper.TryStreamCopy(state, encodingOptions); } } |
