aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbulk-audio/get2
1 files changed, 1 insertions, 1 deletions
diff --git a/bulk-audio/get b/bulk-audio/get
index 6243797..3a3305b 100755
--- a/bulk-audio/get
+++ b/bulk-audio/get
@@ -15,7 +15,7 @@ local_audio() {
[ $? -ne 0 ] && return
URL="$(echo "$res" | jq --raw-output '.audioSources[0].url // empty')"
[ -z "$URL" ] && return
- curl -sLo - "$URL"
+ curl -sLo - "$URL" | ffmpeg -hide_banner -loglevel error -i pipe: -f mp3 pipe:
exit 0
}