updated mpeg dash

This commit is contained in:
Luke Pulverenti
2015-03-18 02:02:22 -04:00
parent 8c36adc6c3
commit 79d2f7efd7
4 changed files with 89 additions and 161 deletions

View File

@@ -1095,7 +1095,7 @@ namespace MediaBrowser.Api.Playback
StartStreamingLog(transcodingJob, state, process.StandardError.BaseStream, state.LogFileStream);
// Wait for the file to exist before proceeeding
while (!File.Exists(outputPath) && !transcodingJob.HasExited)
while (!File.Exists(state.WaitForPath ?? outputPath) && !transcodingJob.HasExited)
{
await Task.Delay(100, cancellationTokenSource.Token).ConfigureAwait(false);
}