Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
superbonaci authored Nov 12, 2023
1 parent 8288281 commit f8fbf31
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions TwitchDownloaderCLI/Modes/Arguments/TsMergeArgs.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using CommandLine;

namespace TwitchDownloaderCLI.Modes.Arguments
{
[Verb("tsmerge", HelpText = "Concatenates .ts/.tsv/.tsa/.m2t/.m2ts (MPEG Transport Stream) parts into another file")]
public class TsMergeArgs : ITwitchDownloaderArgs
{
[Option('l', "inputlist", Required = true, HelpText = "Path to text file which contains the list of parts to concatenate (one path per line).")]
public string InputList { get; set; }

[Option('o', "output", Required = true, HelpText = "Path to output file.")]
public string OutputFile { get; set; }

[Option("banner", Default = true, HelpText = "Displays a banner containing version and copyright information.")]
public bool? ShowBanner { get; set; }
}
}

0 comments on commit f8fbf31

Please sign in to comment.