aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagicGreenDragon <14246920+MagicGreenDragon@users.noreply.github.com>2022-08-14 08:53:00 +0200
committerMagicGreenDragon <14246920+MagicGreenDragon@users.noreply.github.com>2022-08-14 08:53:00 +0200
commit7391b001eff764d88fad8f35daffa1de0ca0960e (patch)
tree80ca7b0be4cdd3e49d3b4068e8238727dc0bbbfa
parent63d943aab92a4b5f69e625a269eb830bcbfb4d22 (diff)
increased subtitle extraction timeout to 30 min
-rw-r--r--CONTRIBUTORS.md1
-rw-r--r--MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs2
2 files changed, 2 insertions, 1 deletions
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 87086a728..fb582238d 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -157,6 +157,7 @@
- [jonas-resch](https://github.com/jonas-resch)
- [vgambier](https://github.com/vgambier)
- [MinecraftPlaye](https://github.com/MinecraftPlaye)
+ - [RealGreenDragon](https://github.com/RealGreenDragon)
# Emby Contributors
diff --git a/MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs b/MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs
index 50c4d9210..41354a0b9 100644
--- a/MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs
+++ b/MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs
@@ -575,7 +575,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
throw;
}
- var ranToCompletion = await process.WaitForExitAsync(TimeSpan.FromMinutes(5)).ConfigureAwait(false);
+ var ranToCompletion = await process.WaitForExitAsync(TimeSpan.FromMinutes(30)).ConfigureAwait(false);
if (!ranToCompletion)
{