Files
edge-tts/bin/edge-playback
2021-06-06 14:54:57 +03:00

11 lines
159 B
Bash
Executable File

#!/usr/bin/env bash
unset stdin
if [ "$1" == "stdin" ]
then
stdin=$(cat)
shift 1
edge-tts -f <(printf '%s' "$stdin") | mpv -
else
edge-tts "$@" | mpv -
fi