{"id":17036504,"url":"https://github.com/emoon/stemgen","last_synced_at":"2025-04-12T13:20:22.161Z","repository":{"id":207979244,"uuid":"720192905","full_name":"emoon/stemgen","owner":"emoon","description":"STEM generator using libopenmpt with glue in Rust","archived":false,"fork":false,"pushed_at":"2023-11-27T12:14:30.000Z","size":2866,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-26T07:51:15.336Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emoon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-11-17T19:35:15.000Z","updated_at":"2023-12-30T16:51:47.000Z","dependencies_parsed_at":"2023-11-27T13:41:29.257Z","dependency_job_id":null,"html_url":"https://github.com/emoon/stemgen","commit_stats":null,"previous_names":["emoon/stemgen"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emoon%2Fstemgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emoon%2Fstemgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emoon%2Fstemgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emoon%2Fstemgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emoon","download_url":"https://codeload.github.com/emoon/stemgen/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248571836,"owners_count":21126522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T08:50:44.958Z","updated_at":"2025-04-12T13:20:22.143Z","avatar_url":"https://github.com/emoon.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# stemgen\n\nSTEM generator using libopenmpt with glue in Rust\n\n# Building\n\nDownload Rust by following the instructions here https://rustup.rs\nNotice that a C++ toolchain needs to be installed along with Cmake as well. On Windows this means Visual Studo 2019 or later and on Linux or macOS clang or gcc.\n\n`cargo build --release`\n\nAnd to run\n\n`cargo run --release -- \u003cparameters\u003e`\n\nor just run directly from\n\n`target/release/stemgen`\n\nafter building the release config\n\n# Usage\n\n```\nUsage: stemgen [OPTIONS] --input \u003cINPUT\u003e --output \u003cOUTPUT\u003e\n\nOptions:\n  -i, --input \u003cINPUT\u003e\n          Input song or directory of files supported by libopenmpt\n\n  -o, --output \u003cOUTPUT\u003e\n          Output directory to place the generated files\n\n  -r, --recursive\n          If input is a directory recursive can be used to get the all files within that directory\n\n      --stereo-separation \u003cSTEREO_SEPARATION\u003e\n          Represents the stereo separation generated by the mixer in percent. Range is [0, 200] and default value is 100\n\n      --full\n          Render the whole song as is\n\n      --progress\n          Show progressbar when generating\n\n  -s, --sample-rate \u003cSAMPLE_RATE\u003e\n          Output sample rate. Should be in [8000, 192000]\n\n          [default: 48000]\n\n      --stereo\n          Render the instruments to stereo wav files. mono is default\n\n  -c, --channels\n          Render each instrument for each channel (if false only a _all file will be generated)\n\n      --instruments\n          Render each instrument to a separate file\n\n      --song-samples \u003cSONG_SAMPLES\u003e\n          Write samples in the song to disk\n\n          [possible values: flac, wav]\n\n  -f, --format \u003cFORMAT\u003e\n          Sample depth for the rendering\n\n          [default: int16]\n          [possible values: int16, float]\n\n  -w, --write \u003cWRITE\u003e\n          Write format for the rendering\n\n          [default: flac]\n          [possible values: flac, wav, vorbis, mp3]\n\n      --vorbis-mode \u003cVORBIS_MODE\u003e\n          Mode for the ogg vorbis encoding\n\n          [default: vbr]\n          [possible values: vbr, quality-vbr, abr, constrained-abr]\n\n      --vorbis-bitrate \u003cVORBIS_BITRATE\u003e\n          Bitrate option for vbr, abr, quality-vbr and constrained-abr\n\n          [default: 160]\n\n      --vorbis-quality \u003cVORBIS_QUALITY\u003e\n          Quality option for quality-vbr range is [-0.2, 1]\n\n          [default: 0.5]\n\n      --mp3-bitrate \u003cMP3_BITRATE\u003e\n          Bitrate for mp3 encoding in kbps supported values: [8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320]\n\n          [default: 320]\n\n      --mp3-vbr \u003cMP3_VBR\u003e\n          Vbr mode for mp3 encoding\n\n          [default: mthr]\n\n          Possible values:\n          - off:  Off\n          - mt:   MT\n          - rh:   RH\n          - abr:  ABR\n          - mtrh: MTRH\n\n      --mp3-vbr-quality \u003cMP3_VBR_QUALITY\u003e\n          Quality for VBR encoding\n\n          [default: good]\n\n          Possible values:\n          - best:         Best possible quality\n          - second-best:  Second best\n          - near-best:    Close to best\n          - very-nice:    Very nice\n          - nice:         Nice\n          - good:         Good\n          - decent:       Decent\n          - ok:           Okayish\n          - second-worst: Almost worst\n          - worst:        Worst\n\n      --mp3-quality \u003cMP3_QUALITY\u003e\n          Quality for regular encoding\n\n          [default: good]\n\n          Possible values:\n          - best:         Best possible quality\n          - second-best:  Second best\n          - near-best:    Close to best\n          - very-nice:    Very nice\n          - nice:         Nice\n          - good:         Good\n          - decent:       Decent\n          - ok:           Okayish\n          - second-worst: Almost worst\n          - worst:        Worst\n\n  -h, --help\n          Print help (see a summary with '-h')\n\n  -V, --version\n          Print version\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femoon%2Fstemgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femoon%2Fstemgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femoon%2Fstemgen/lists"}