|
|
|
@ -70,8 +70,8 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
|
|
|
|
|
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(targetFile));
|
|
|
|
|
|
|
|
|
|
using (var output = new FileStream(targetFile, FileMode.Create, FileAccess.Write, FileShare.Read))
|
|
|
|
|
{
|
|
|
|
|
await using var output = new FileStream(targetFile, FileMode.Create, FileAccess.Write, FileShare.Read);
|
|
|
|
|
|
|
|
|
|
onStarted();
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Copying recording stream to file {0}", targetFile);
|
|
|
|
@ -81,7 +81,6 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
|
|
|
|
cancellationToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token).Token;
|
|
|
|
|
|
|
|
|
|
await _streamHelper.CopyUntilCancelled(await response.Content.ReadAsStreamAsync().ConfigureAwait(false), output, 81920, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Recording completed to file {0}", targetFile);
|
|
|
|
|
}
|
|
|
|
|