fix: maintain passed in streams position

This commit is contained in:
Stevan Freeborn
2025-07-29 18:21:17 -05:00
parent ef45a4098a
commit 07190acb65
3 changed files with 74 additions and 23 deletions
@@ -52,7 +52,7 @@ internal class DefaultCommand(
.Spinner(Spinner.Known.Dots)
.StartAsync("Extracting audio...", async ctx =>
{
audioStream = await _audioExtractor.ExtractMp3FromMp4Async(videoStream).ConfigureAwait(false);
audioStream = await _audioExtractor.ExtractMp3FromMp4Async(videoStream);
});
if (audioStream is null)