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
File size: 386 Bytes
072e103 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/bash
# 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/
|