I have a raspberry pi with bookworm lite, I would like to stream an internet radio station using gstreamer from the command line There must be some plugin that can do this. Specifically I'd like to stream which is KCRW. I know this works gst-launch-1.0 audiotestsrc ! audioconvert ! autoaudiosink. I just need to replace the audiotestsrc with the radio station
I have a raspberry pi with bookworm lite, I would like to stream an internet radio station using gstreamer from the command line There must be some plugin that can do this. Specifically I'd like to stream https://streams.kcrw/e24_mp3 which is KCRW. I know this works gst-launch-1.0 audiotestsrc ! audioconvert ! autoaudiosink. I just need to replace the audiotestsrc with the radio station
Share Improve this question asked Mar 8 at 16:09 CrabbyPeteCrabbyPete 5349 silver badges20 bronze badges 2 |2 Answers
Reset to default 1gst-launch-1.0 playbin uri=https://streams.kcrw/e24_mp3
or
gst-play-1.0 https://streams.kcrw/e24_mp3
gst-launch-1.0 souphttpsrc location=https://streams.kcrw/e24_mp3 iradio-mode=true ! icydemux ! decodebin ! audioconvert ! autoaudiosink
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744892056a4599474.html
cvlc -I rc --rc-host localhost:3030 https://streams.kcrw/e24_mp3
– g00se Commented Mar 8 at 16:16