Add version verb with option to check for upgrade Add Search verb to search the library Add export file type inference Add more set-status options Add console progress bar and ETA Add processable option to liberate specific book IDs Scan accounts by nickname or account ID Improve startup performance for halp and on parsing error More useful error messages
12 lines
295 B
C#
12 lines
295 B
C#
using CommandLine;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LibationCli
|
|
{
|
|
[Verb("convert", HelpText = "Convert mp4 to mp3.")]
|
|
public class ConvertOptions : ProcessableOptionsBase
|
|
{
|
|
protected override Task ProcessAsync() => RunAsync(CreateProcessable<FileLiberator.ConvertToMp3>());
|
|
}
|
|
}
|