Skip to content

Commit

Permalink
Turns out the ? isn't necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Jul 11, 2024
1 parent 9fb74b7 commit 9760bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/Tools/FfmpegConcatList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static async Task SerializeAsync(string filePath, M3U8 playlist, Range vi
await sw.WriteLineAsync("stream");
await sw.WriteLineAsync("exact_stream_id 0x101"); // Video
await sw.WriteLineAsync("stream");
await sw.WriteLineAsync("exact_stream_id 0x102?"); // Subtitle
await sw.WriteLineAsync("exact_stream_id 0x102"); // Subtitle

await sw.WriteAsync("duration ");
await sw.WriteLineAsync(stream.PartInfo.Duration.ToString(CultureInfo.InvariantCulture));
Expand Down

0 comments on commit 9760bbd

Please sign in to comment.