├── .gitignore ├── 0_convert2mp3.py ├── 1_pre_slice.py ├── 2_sep_music.py ├── 3_final_slice.py ├── 4_resample.py ├── 5_chinese_asr.py ├── 6_prepare_mfa.py ├── 7_mfa_align.py ├── 8_build_dataset.py ├── LICENSE ├── README.md ├── assets └── opencpop-strict.dict ├── dataset └── structure ├── install_mfa.sh ├── optional_deepfilternet.py ├── temp └── tempdir └── utils ├── __init__.py ├── distribution.py └── slicer2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /0_convert2mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/0_convert2mp3.py -------------------------------------------------------------------------------- /1_pre_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/1_pre_slice.py -------------------------------------------------------------------------------- /2_sep_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/2_sep_music.py -------------------------------------------------------------------------------- /3_final_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/3_final_slice.py -------------------------------------------------------------------------------- /4_resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/4_resample.py -------------------------------------------------------------------------------- /5_chinese_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/5_chinese_asr.py -------------------------------------------------------------------------------- /6_prepare_mfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/6_prepare_mfa.py -------------------------------------------------------------------------------- /7_mfa_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/7_mfa_align.py -------------------------------------------------------------------------------- /8_build_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/8_build_dataset.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/README.md -------------------------------------------------------------------------------- /assets/opencpop-strict.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/assets/opencpop-strict.dict -------------------------------------------------------------------------------- /dataset/structure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/dataset/structure -------------------------------------------------------------------------------- /install_mfa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/install_mfa.sh -------------------------------------------------------------------------------- /optional_deepfilternet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/optional_deepfilternet.py -------------------------------------------------------------------------------- /temp/tempdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/utils/distribution.py -------------------------------------------------------------------------------- /utils/slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/audio-preprocessing-scripts/HEAD/utils/slicer2.py --------------------------------------------------------------------------------