02-16-2023, 01:14 AM
@fdealexa
Like Tim said, this station is exercising the MPD oggflac plugin.
One trick to get more info about these radio streams is to examine the server response when connection is first made. Here's one way to do that using curl:
Here I've exploited the binary-output warning/exit feature of curl to avoid actually downloading the (endless) output.
Regards,
Kent
Like Tim said, this station is exercising the MPD oggflac plugin.
One trick to get more info about these radio streams is to examine the server response when connection is first made. Here's one way to do that using curl:
Code:
pi@m825p3a:~ $ curl -i https://stream.and-stuff.nl:8443/riverside
HTTP/1.0 200 OK
Server: Icecast 2.4.4
Connection: Close
Date: Thu, 16 Feb 2023 01:10:10 GMT
Content-Type: application/ogg
Cache-Control: no-cache, no-store
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Access-Control-Allow-Origin: *
icy-br:2000
icy-description:We're your friend on the internet
icy-genre:Rock'n'roll
icy-name:Breakaway One
icy-pub:0
icy-url:http://www.breakaway.one
Warning: Binary output can mess up your terminal. Use "--output -" to tell
Warning: curl to output it to your terminal anyway, or consider "--output
Warning: <FILE>" to save to a file.
pi@m825p3a:~
Here I've exploited the binary-output warning/exit feature of curl to avoid actually downloading the (endless) output.
Regards,
Kent