trying out fetching the summary.

This commit is contained in:
commie 2024-04-12 22:34:58 -04:00
parent cfd2611ec1
commit b3870ce9b7
1 changed files with 1 additions and 1 deletions

2
bash/storytime.sh Normal file → Executable file
View File

@ -35,7 +35,7 @@ fi
main() {
local feed_url=$1
feed2exec parse ${feed_url} --output echo --args '{item.title}' | \
feed2exec parse ${feed_url} --output echo --args '{item.summary}' | \
mimic3 --voice en_US/hifi-tts_low#92 --stdout | \
ffmpeg -y -i pipe:.wav -acodec pcm_s16le -ar 22050 -c:a libmp3lame ${output}
}