{"id":16237527,"url":"https://github.com/lexus2k/vgm_decoder","last_synced_at":"2026-03-12T00:34:31.985Z","repository":{"id":108177311,"uuid":"255047006","full_name":"lexus2k/vgm_decoder","owner":"lexus2k","description":"This vgm to pcm decoder for ay-3-8910-like chips","archived":false,"fork":false,"pushed_at":"2021-02-04T07:54:21.000Z","size":1355,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-25T22:47:01.503Z","etag":null,"topics":["audio","audio-converter","audio-decoder","audio-processing","ay-3-8910","esp32","esp32-idf","nes-apu","nes-emulator","vgm","vgmusic","ym2149"],"latest_commit_sha":null,"homepage":"","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/lexus2k.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-12T09:16:31.000Z","updated_at":"2024-11-28T15:03:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"512b5d2a-bbaa-43ad-859d-ef3a0eee82ab","html_url":"https://github.com/lexus2k/vgm_decoder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lexus2k/vgm_decoder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2Fvgm_decoder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2Fvgm_decoder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2Fvgm_decoder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2Fvgm_decoder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lexus2k","download_url":"https://codeload.github.com/lexus2k/vgm_decoder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexus2k%2Fvgm_decoder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30408547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T22:36:59.286Z","status":"ssl_error","status_checked_at":"2026-03-11T22:36:57.544Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["audio","audio-converter","audio-decoder","audio-processing","ay-3-8910","esp32","esp32-idf","nes-apu","nes-emulator","vgm","vgmusic","ym2149"],"created_at":"2024-10-10T13:36:00.431Z","updated_at":"2026-03-12T00:34:31.966Z","avatar_url":"https://github.com/lexus2k.png","language":"C++","readme":"# VGM/NSF decoder\n\nThe library can be used to convert VGM / NSF data to PCM on the fly.\n\nIt recognizes:\n * vgm files (AY-3-8910, YM2149 (MSX2) and NES APU (Nes console))\n * nsf files (Nintendo Sound Format - NES APU)\n\n## Compilation\n\n### Makefile\n\n\u003e make\n\nIf you want to compile with audio playing support, please use the following command\nRemember, SDL2 dev libraries must be installed\n\n\u003e make AUDIO_PLAYER=y\n\n### CMake (includes Windows support)\n\n\u003e mkdir build\n\u003e cd build\n\u003e cmake .. \u0026\u0026 make\n\nIf you want to compile with audio playing support, please use the following command\n(remember, SDL2 dev libraries must be installed):\n\n\u003e cmake -DAUDIO_PLAYER=ON ..\u003cbr\u003e\n\u003e make\n\n\nFor Windows:\nPlease, download SDL2 development version from offical SDL site and unpack it to\nSDL2 subfolder before.\nIf you have VC installed, cmake will automatically generate project files, then\ncompile the project with VC.\n\n\u003e mkdir build\u003cbr\u003e\n\u003e cd build\u003cbr\u003e\n\u003e cmake -DAUDIO_PLAYER=ON ..\n\n## Usage\n\n\u003e ./vgm2wav crisis_force.nsf crisis_force.wav 0\n\u003e\n\u003e DONE\n\nNow open crisis_force.wav in any audio player.\n\nTo play nsf music using vgm2wav (if you compiled it with audio playing support - see above):\n\n\u003e ./vgm2wav crisis_force.nsf play 0\n\n## Known issues\n\n## Links\n\nWonderful resources for NSF files: https://www.zophar.net/music, for VGM files: https://vgmrips.net\n\n## License\n\nMIT License\n\nCopyright (c) 2020 Aleksei Dynda\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexus2k%2Fvgm_decoder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flexus2k%2Fvgm_decoder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexus2k%2Fvgm_decoder/lists"}