Replies: 1 comment
-
Sounds like adding a custom FastAPI route together with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am working on a project to create a web app running on a Raspberry PI. When users access the app, they will be able to play a live audio that sampling from the microphone of Raspberry PI in real time.
In order to make such an app, I plan to use ffmpeg to create a live streaming from microphone. Then the live audio can be accessed by
http://localhost:8080/index.m3u8
. In order to usereflex.Audio
to play this source, I need to have some backward proxy to forward the request ofhttp://my-reflex-app.domain/index.m3u8
tohttp://localhost:8080
.I know that I can always put a proxy before both reflex and ffmpeg to solve the problem. But I am wondering if I can do this with only reflex?
Beta Was this translation helpful? Give feedback.
All reactions