summaryrefslogtreecommitdiff
path: root/docs/HOLLY SPEAKING.md
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-07-29 13:10:21 +0200
committerJules Laplace <julescarbon@gmail.com>2018-07-29 13:10:21 +0200
commit2fa55170303cd01680ab249c1a6c6419cd4e5567 (patch)
treee0cfe0d8cbf0abbe806031b1b764dffcc0cbfc32 /docs/HOLLY SPEAKING.md
parent1dc77585c90d74ea80068ecdc8ba5f513af3130f (diff)
more notes
Diffstat (limited to 'docs/HOLLY SPEAKING.md')
-rw-r--r--docs/HOLLY SPEAKING.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/HOLLY SPEAKING.md b/docs/HOLLY SPEAKING.md
index 404ce42..69852ae 100644
--- a/docs/HOLLY SPEAKING.md
+++ b/docs/HOLLY SPEAKING.md
@@ -53,3 +53,20 @@ PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/process.py \
--input_directory ./test_data \
--output_directory ./output \
--gpu 0
+
+PYTHONPATH=`pwd` /home/spawn/.virtualenv/yukarin/bin/python scripts/process.py \
+ --conv_model_directory ./data/speaking-44100/net/speaking_mat_2_holly/ \
+ --sr_model_directory ./data/singing-44100/net_sr/holly/ \
+ --input_directory ./test_data \
+ --output_directory ./output \
+ --gpu 0
+
+function to_mp3 () {
+ dir=$1;
+ mkdir $dir;
+ for i in *.wav;
+ do
+ ffmpeg -i $i "$dir/${i%.*}.mp3";
+ done;
+ scp -r $dir jules@lmno:asdf/neural/yukarin/;
+} \ No newline at end of file