Coder Social home page Coder Social logo

mdl's Introduction

Musescore Drumline (MDL)

mdl's People

Contributors

anatoly-os avatar lasconic avatar lengthwave avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

mdl's Issues

Lossless version with .flac files

Currently samples are .ogg vorbis format:

Ogg Vorbis is a lossy format which is not ideal for high-quality sounding performances/recordings.

Within the SFZ and Soundfont world it is a standard to share instruments in a lossless format such as:

You can create a "compact" lossy version by converting .flac back to .ogg afterwards using the commands.

  1. Convert .flac to .ogg using ffmpeg
    for file in $(find . -type f -name '*.flac'); do ffmpeg -i "$file" -b:a 192k "${file%.*}.ogg"; done

  2. replace all references of flac to ogg in sfz files
    find . -type f \( -iname \*.sfz -o -iname \*.txt \) -exec sed -i -e 's/flac/ogg/g' {} \;

  3. Delete the old .flac files
    find . -type f -name '*.flac' -type f -delete

This can be run in GitHub CI such as:
https://github.com/studiorack/studiorack-workflows/blob/main/.github/workflows/sfz.yml#L97

Of course none of this is possible without the lossless versions being the originals

Add a GitHub parseable license file

Hello
Thank-you for open-sourcing your instrument!

Currently you have a custom license.txt file:
https://github.com/musescore/mdl/blob/master/license.txt

GitHub cannot parse custom licenses in the UI
Screen Shot 2022-10-06 at 8 27 57 PM

Or provide them via the search API:

"license": {
    "key": "other",
    "name": "Other",
},

https://api.github.com/repos/musescore/mdl

Using a license template will fix this and make your repo searchable by license:
https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository

Thanks!

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.