diff options
Diffstat (limited to '.local/bin/audioarticle')
-rwxr-xr-x | .local/bin/audioarticle | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.local/bin/audioarticle b/.local/bin/audioarticle new file mode 100755 index 0000000..9b044ba --- /dev/null +++ b/.local/bin/audioarticle @@ -0,0 +1,17 @@ +#!/bin/sh + +#Description: This script takes in a URL, saves the URL's to a file, then passes it through firefox's readable' + +#Axioms: CONTENTDIR + +#Dependencies: https://www.npmjs.com/package/readability-cli https://github.com/coqui-ai/TTS https://packages.debian.org/stretch/festival + +webpageLocation=$(mktemp) +wget -O "$webpageLocation" -c "$1" + +title=$(/home/"$USER"/.npm-global/bin/readable -q -p "title" "$webpageLocation") +article=$(/home/"$USER"/.npm-global/bin/readable -q -p "text-content" "$webpageLocation"|iconv -c -f utf-8 -t ascii -) + +/home/"$USER"/.local/bin/tts --use_cuda true --text "$article" --out_path "/home/$USER/Media/Videos/Content/$title-$(openssl rand -hex 6).wav" || echo "$article" | text2wave > "/home/$USER/Media/Videos/Content/$title-$(openssl rand -hex 6).wav" + +rm "$webpageLocation" |