{"id":19809637,"url":"https://github.com/openvpi/dataset-tools","last_synced_at":"2026-04-01T17:34:47.320Z","repository":{"id":184704686,"uuid":"672291534","full_name":"openvpi/dataset-tools","owner":"openvpi","description":"DiffSinger dataset processing tools, including audio processing, labeling.","archived":false,"fork":false,"pushed_at":"2026-03-12T04:29:51.000Z","size":15757,"stargazers_count":69,"open_issues_count":2,"forks_count":13,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-12T10:49:14.167Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openvpi.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-29T15:14:29.000Z","updated_at":"2026-03-12T04:13:45.000Z","dependencies_parsed_at":"2023-07-29T19:50:04.446Z","dependency_job_id":"3ffbc9e4-e717-493f-996f-0e25b36e5029","html_url":"https://github.com/openvpi/dataset-tools","commit_stats":null,"previous_names":["openvpi/dataset-tools"],"tags_count":59,"template":false,"template_full_name":null,"purl":"pkg:github/openvpi/dataset-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openvpi%2Fdataset-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openvpi%2Fdataset-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openvpi%2Fdataset-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openvpi%2Fdataset-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openvpi","download_url":"https://codeload.github.com/openvpi/dataset-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openvpi%2Fdataset-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290537,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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":[],"created_at":"2024-11-12T09:17:35.446Z","updated_at":"2026-04-01T17:34:47.296Z","avatar_url":"https://github.com/openvpi.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data-set Tools\n\nDiffSinger dataset processing tools, including audio processing, labeling.\n\n## Applications\n\n+ MinLabel\n+ SlurCutter\n+ AudioSlicer\n\n## Supported Platforms\n\n+ Microsoft Windows (Vista ~ 11)\n+ Apple Mac OSX (11+)\n+ Linux (Tested on Ubuntu)\n\n## AsrModel\n\n[AsrModel](https://github.com/openvpi/dataset-tools/releases/tag/AsrModel)\n\nUsed for LyricFA, only supports Chinese. [jp\u0026\u0026en version(beta)](https://github.com/wolfgitpr/LyricFA)\n\n## SomeModel\n\n[SomeModel](https://github.com/openvpi/dataset-tools/releases/tag/SomeModel)\n\n## FblModel\n\n[FblModel](https://github.com/openvpi/dataset-tools/releases/tag/FblModel)\n\nCurrently, FoxBreatheLabeler only supports annotating breathing using TextGrid files output from SOFA(i.e. overlaying\nnew \"AP\" annotations on intervals already marked as \"SP\").\n\n## Build from source\n\n### Requirements\n\n| Component | Requirement |             Detailed             |\n|:---------:|:-----------:|:--------------------------------:|\n|    Qt     |  \\\u003e=6.8.0   | Core, Gui, Widgets, Svg, Network |\n| Compiler  |  \\\u003e=C++17   |      MSVC 2022, GCC, Clang       |\n|   CMake   |   \\\u003e=3.17   |      \u003e=3.20 is recommended       |\n|  Python   |   \\\u003e=3.8    |                                  |\n\n### Setup Environment\n\nYou need to install Qt libraries first. (Tested on Qt 6.8.3 only)\n\n#### Windows\n\n```sh\ncd /D src/libs\ncmake -Dep=dml -P ../../scripts/setup-onnxruntime.cmake\n\ncd ../../\nset QT_DIR=\u003cdir\u003e # directory `Qt6Config.cmake` locates\nset Qt6_DIR=%QT_DIR%\nset VCPKG_KEEP_ENV_VARS=QT_DIR;Qt6_DIR\n\ngit clone https://github.com/microsoft/vcpkg.git\ncd /D vcpkg\nbootstrap-vcpkg.bat\n\nvcpkg install ^\n    --x-manifest-root=../scripts/vcpkg-manifest ^\n    --x-install-root=./installed ^\n    --triplet=x64-windows\n```\n\n#### Unix\n\n```sh\ncd src/libs\ncmake -Dep=cpu -P ../../scripts/setup-onnxruntime.cmake\n\ncd ../../\nexport QT_DIR=\u003cdir\u003e # directory `Qt6Config.cmake` locates\nexport Qt6_DIR=$QT_DIR\nexport VCPKG_KEEP_ENV_VARS=\"QT_DIR;Qt6_DIR\"\n\ngit clone https://github.com/microsoft/vcpkg.git\ncd vcpkg\n./bootstrap-vcpkg.sh\n\n./vcpkg install \\\n    --x-manifest-root=../scripts/vcpkg-manifest \\\n    --x-install-root=./installed \\\n    --triplet=\u003ctriplet\u003e\n\n# triplet:\n#   Mac:   `x64-osx` or `arm64-osx`\n#   Linux: `x64-linux` or `arm64-linux`\n```\n\n### Build \u0026 Install\n\n```sh\ncmake -B build -G Ninja \\\n    -DCMAKE_INSTALL_PREFIX=\u003cdir\u003e \\ # install directory\n    -DCMAKE_PREFIX_PATH=\u003cdir\u003e \\ # directory `Qt5Config.cmake` locates\n    -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake \\\n    -DCMAKE_BUILD_TYPE=Release\n\ncmake --build build --target all\n\ncmake --build build --target install\n```\n\n## Libraries\n\n### Related Projects\n\n+ [DiffSinger](https://github.com/openvpi/DiffSinger)\n    + Apache 2.0 License\n\n+ [ChorusKit](https://github.com/SineStriker/qsynthesis-revenge)\n    + Apache 2.0 License\n\n### Dependencies\n\n+ [Qt 6.8.3](https://www.qt.io/)\n    + GNU LGPL v2.1 or later\n+ [FFmpeg](https://github.com/FFmpeg/FFmpeg)\n    + GNU LGPL v2.1 or later\n+ [LAME](https://lame.sourceforge.io/)\n    + GNU LGPL v2.0\n+ [SDL](https://github.com/libsdl-org/SDL)\n    + Zlib License\n+ [SndFile](https://github.com/libsndfile/libsndfile)\n    + GNU LGPL v2.1 or later\n+ [vcpkg](https://github.com/microsoft/vcpkg)\n    + MIT License\n+ [r8brain-free-src](https://github.com/avaneev/r8brain-free-src)\n    + MIT License\n+ [FunASR](https://github.com/alibaba-damo-academy/FunASR)\n    + MIT License\n+ [fftw3](https://github.com/FFTW/fftw3)\n    + GNU GPL v2.0\n+ [yaml-cpp](https://github.com/jbeder/yaml-cpp)\n    + MIT License\n+ [FoxBreatheLabeler](https://github.com/autumn-DL/FoxBreatheLabeler)\n    + GNU AGPL v3.0\n+ [textgrid.hpp](https://github.com/eiichiroi/textgrid.hpp)\n    + MIT License\n\n## License\n\nThis repository is licensed under the Apache 2.0 License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenvpi%2Fdataset-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenvpi%2Fdataset-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenvpi%2Fdataset-tools/lists"}