Git Product home page Git Product logo

Comments (3)

stevefan1999-personal avatar stevefan1999-personal commented on August 20, 2024

This looks quite close to what I wanted to do

Console.OutputEncoding = Encoding.UTF8;

var cla = new CommandLineApplication<AppOptions>();
cla.Conventions
    .UseDefaultConventions();
var app = cla.Parse(args).SelectedCommand;

var textInfo = new CultureInfo("en-US", false).TextInfo;
var builder = Host.CreateApplicationBuilder();
builder.Configuration.AddInMemoryCollection(app
    .GetOptions()
    .ToDictionary(x => textInfo.ToTitleCase(x.LongName), x => x.Values)
    .SelectMany(kvp => kvp.Value.Count switch
    {
        1 => Enumerable.Repeat(KeyValuePair.Create(kvp.Key, kvp.Value[0]), 1),
        > 1 => kvp.Value.Select((value, idx) => KeyValuePair.Create($"{kvp.Key}:{idx}", value)),
        _ => null
    } ?? Array.Empty<KeyValuePair<string, string?>>()));
builder.Services.AddOptions<AppOptions>().BindConfiguration("");
builder.Services.AddSingleton(provider =>
{
    var options = provider.GetRequiredService<IOptions<AppOptions>>().Value;
    return new MaimaiConvertOption
    {
        ExtractImage = options.ExtractImage,
        BitRate = options.BitRate
    };
});
builder.Services.AddSingleton(provider =>
{
    var option = provider.GetRequiredService<MaimaiConvertOption>();
    return new MaimaiConverter(new WindowsPath(@"C:\maimai_universe"), option);
});

builder.Services.AddHostedService<AppService>();
using var host = builder.Build();
host.Run();

record AppOptions
{
    [Option("--extract-image")]
    public bool ExtractImage { get; init; }

    [Option("-b|--bit-rate")]
    public int? BitRate { get; init; }

    [Option("-P|--parallelism")]
    public int Parallelism { get; init; } = 1;
    [Option("-v|--verbose", CommandOptionType.MultipleValue)]
    public bool[]? Verbose { get; init; }
}

record AppService(MaimaiConverter Converter, IOptions<AppOptions> Options, ILogger<AppService> Logger) : IHostedService
{
    public Task StartAsync(CancellationToken cancellationToken)
    {
        var taskQueue = new List<Action>();

        foreach (var x in Converter.AvailableSongs?.Take(100) ?? ImmutableList<MusicData>.Empty)
        {
            async void Run()
            {
                Logger.LogInformation($"Processing {x.CueName.Id} - {x.CueName.Str}");
                var path = new WindowsPath("./output").Join($"{x.CueName.Id} - {x.CueName.Str}.mp3".ToValidFileName());
                {
                    await using var memStream = new MemoryStream();
                    await Converter.ExtractMusicTrackWithJacketByMusicData(x, memStream);

                    await using var file = path.Open(FileMode.Create);
                    memStream.WriteTo(file);
                }

                GC.Collect();

                Logger.LogInformation($"Processed {x.CueName.Str}");
            }

            taskQueue.Add(Run);
        }

        Parallel.Invoke(new() { MaxDegreeOfParallelism = Options.Value.Parallelism }, taskQueue.ToArray());
        return Task.CompletedTask;
    }

    public Task StopAsync(CancellationToken cancellationToken)
    {
        return Task.CompletedTask;
    }
}

from commandlineutils.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.