Skip to content

Commit

Permalink
refactor: ffmpeg recorder use mpegts output
Browse files Browse the repository at this point in the history
  • Loading branch information
HMBSbige committed Jun 8, 2023
1 parent c4c0cf7 commit 9e71e78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public override async ValueTask DownloadAsync(string outFilePath, CancellationTo
throw new InvalidOperationException(@"Do InitializeAsync first");
}

string filePath = Path.ChangeExtension(outFilePath, @".mkv");
string filePath = Path.ChangeExtension(outFilePath, @".ts");
FileInfo file = new(filePath);
file.Directory?.Create();

Expand Down

0 comments on commit 9e71e78

Please sign in to comment.