@mk12, using your above script, I first ran the following command in gnome terminal
curl https://www.broadcastify.com/listen/feed/41475
which yielded what appears to be all of the html source code for the page.
next, I tried adapting your script to the following, which resulted in a blank line followed by the command prompt.
This is what i have:
auth=$(curl -s "https://www.broadcastify.com/listen/feed/41475/" \
| grep webAuth \
| head -n 1 \
| sed 's/^.*"webAuth": "//;s/".*$//')relay_url=$(curl -s "https://www.broadcastify.com/listen/41475" \
-H "webAuth: $auth" -d 't=14' \
| grep -o 'http://[^"]*')audio_url=$(curl -s "$relay_url" | cut -d' ' -f5)
echo "$audio_url"
I have tried replacing the feed number with the $1 variable, and it yielded an error in the cli.
One thing I did notice, was a curious...well what seems to me to be a variable portion of an audio stream link.
link = "https://audio.broadcastify.com/" + a.id + ".mp3";
can you or anyone else shed some light on the "a.id"
portion of the link?
Thank you