aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Transcoding
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2024-02-25 17:24:54 +0100
committerShadowghost <Ghost_of_Stone@web.de>2024-02-25 17:24:54 +0100
commit36f298e4173b4f08edfdf9a3a2f09e887846e935 (patch)
treed2abcac64ba23d4b143901360e1126478050f75d /MediaBrowser.MediaEncoding/Transcoding
parent321e9fb0b5e5583734b154704fc3eb39c62a2005 (diff)
Do not dispose the ffmpeg process
Diffstat (limited to 'MediaBrowser.MediaEncoding/Transcoding')
-rw-r--r--MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs b/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs
index 146b30643..8bace15c6 100644
--- a/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs
+++ b/MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs
@@ -437,7 +437,7 @@ public sealed class TranscodeManager : ITranscodeManager, IDisposable
}
}
- using var process = new Process
+ var process = new Process
{
StartInfo = new ProcessStartInfo
{