fixed ffprobe running over and over

This commit is contained in:
Luke Pulverenti
2013-09-25 11:11:23 -04:00
parent 3ee73bb7c2
commit 2d9b48d00f
17 changed files with 80 additions and 38 deletions

View File

@@ -57,7 +57,7 @@ namespace MediaBrowser.Server.Implementations.MediaEncoder
/// <summary>
/// The FF probe resource pool
/// </summary>
private readonly SemaphoreSlim _ffProbeResourcePool = new SemaphoreSlim(2, 2);
private readonly SemaphoreSlim _ffProbeResourcePool = new SemaphoreSlim(1, 1);
public string FFMpegPath { get; private set; }