Instructions to use systemofapwne/piper-de-glados with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Piper
How to use systemofapwne/piper-de-glados with Piper:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
| # Chose one of the following bitrates, depending on the model you want to train | |
| # x-low, low models | |
| #RATE=16000 | |
| # medium, high models | |
| RATE=22050 | |
| CODEC=pcm_s16le | |
| CHANNELS=1 | |
| TMP=/tmp/wav | |
| mkdir -p ${TMP} | |
| for file in ./raw/*.wav; do | |
| ffmpeg -i ${file} -ac ${CHANNELS} -acodec ${CODEC} -ar ${RATE} -y ${TMP}/$(basename ${file}) | |
| done | |
| rm ./raw/*.wav | |
| mv ${TMP}/*.wav ./raw/ | |