-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a streaming option for in-browser listening #47
Comments
Figured out how to do WBFM in OpenWebRx but its not practical on the Pluto directly because you can only see the one station you're trying to listen to, it can't handle seeing much more of the spectrum than that. I will publish wbfm in OpenWebRx in a fork once I iron out the kinks, but that wouldn't be related to PlutoWeb. |
I think rx_fm -> ices2 -> Icecast is best. Then we can have the web page do a scan of the FM band, show the PNG with an image map and allow point-and-click tuning to pass the freq value to rx_fm. |
Its a bit the same as leantrx, but leantrx seems to use too much CPU to be useful in the FM band. |
Added to a test build - needs more testing and tweaking of configs as well as new variable, etc for it. |
Example working WBFM command: |
that is pretty cool! Just few questions:
|
|
That said, I've realized I was overlooking the easiest solution for this and that's using named pipes and an encoder of choice. That encoder will be either ffmpeg or ogg/vorbis, whichever is smaller. Icecast and Ices will not be implemented. |
Note to self...WTF, named pipes break when you try to access them through httpd...back to icecast+ices?... |
This would mostly be for WBFM but could be used with anything that plays audio. WBFM is the biggest use-case since its not supported by OpenWebRx.
Current idea = Icecast + ices2
This would allow the output from rx_fm or rx_sdr to be piped into ices2 and then played via the web browser through Icecast.
Its a bit heavy-handed, but not finding any other real solutions to be able present an audio "file" to the browser for easy playback. (I say "file" because it can't be a real file, there's no space, it has to act solely as a stream when fetched.)
The text was updated successfully, but these errors were encountered: