-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8288281
commit f8fbf31
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} |