read text from file, scripts for voices

This commit is contained in:
Kashif Shah 2024-06-08 09:37:58 -05:00
parent 14a8387d33
commit 4d4b2c5ec9
4 changed files with 86 additions and 0 deletions

7
speak-file-mp3.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
FILE="ffmpeg_output.wav"
MP3="ffmpeg_output.mp3"
ffmpeg -i $FILE -acodec mp3 $MP3 -y
ffplay $MP3 -nodisp -autoexit

25
speak-file-slobot.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
# https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video
# https://github.com/mozilla/TTS
#
if [ -z "$1" ]; then
echo usage: $0 \"filename\" [tempo]
exit
fi
FILE=$1
STR=`cat $FILE`
MODEL="tts_models/en/jenny/jenny"
TEMPO=1.0
if [ -z "$2" ]; then
TEMPO=$TEMPO
else
TEMPO=$2
fi
tts --text "$STR" --model_name "$MODEL" && \
ffmpeg -i tts_output.wav -filter:a "atempo=$TEMPO" -vn ffmpeg_output.wav -y && \
ffmpeg -i ffmpeg_output.wav -acodec mp3 $FILE.mp3 -y && \
ffplay $FILE.mp3 -nodisp -autoexit

25
speak-file-slomo.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
# https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video
# https://github.com/mozilla/TTS
#
if [ -z "$1" ]; then
echo usage: $0 \"filename\" [tempo]
exit
fi
FILE=$1
STR=`cat $FILE`
MODEL="tts_models/en/ljspeech/glow-tts"
TEMPO=1.0
if [ -z "$2" ]; then
TEMPO=$TEMPO
else
TEMPO=$2
fi
tts --text "$STR" --model_name "$MODEL" && \
ffmpeg -i tts_output.wav -filter:a "atempo=$TEMPO" -vn ffmpeg_output.wav -y && \
ffmpeg -i ffmpeg_output.wav -acodec mp3 $FILE.mp3 -y && \
ffplay $FILE.mp3 -nodisp -autoexit

29
speak-file.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/bash
# https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video
# https://github.com/mozilla/TTS
#
if [ -z "$1" ]; then
echo usage: $0 \"filename\" [tempo] [model]
exit
fi
FILE=$1
STR=`cat $FILE`
MODEL="tts_models/en/jenny/jenny"
TEMPO=1.0
if [ -z "$2" ]; then
TEMPO=$TEMPO
else
TEMPO=$2
if [ -z "$3" ]; then
MODEL=$MODEL
else
MODEL=$3
fi
fi
tts --text "$STR" --model_name "$MODEL" && \
ffmpeg -i tts_output.wav -filter:a "atempo=$TEMPO" -vn ffmpeg_output.wav -y && \
ffplay ffmpeg_output.wav -nodisp -autoexit