-
Notifications
You must be signed in to change notification settings - Fork 30
Question/FR about stream key #81
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
Comments
Hi @drajvver RTMP URI has the format:
The RTMP protocol provides the Each stream is uniquely identified by its The spawned FFmpeg process connects to the stream using the URI So, it is recommended to use a RTMP URI like
Example code:
|
Ah, didn't know you can "redirect" in the Auth response, that's nice and actually looks like will solve my issue :) Thank you! |
Hello!
First of all, congratulations on amazing library, it's the best one I've used for RTMP anc C# integration.
I have hit a roadblock though and wanted to ask if that's even possible. I'm using the
OutputPathResolver
from docs and it's not really working with my setup and I would like to understand why (and maybe how to fix this).My RTMP endpoint is
rtmp://127.0.0.1/ingest
so pretty standard. The "Stream Key" as OBS calls it is more complicated though and looks like this:?key=<guid>&vid=<guid>&lid=123
.When using this Stream Key, the recording with FFMpeg does not work, as it tries to connect to
rtmp://localhost:1935/ingest?code=34534D62596330306764436D34317063675733785A5A4D34506269494F644E77664D357A65697930494645377A50506C57345936314A42454F77586B4F465251
, which is missing the whole Stream Key part.I know I can utilize the
IInputPathResolver
interface to achieve what I want, but I think it would be good to have it working out of the box.Thanks!
The text was updated successfully, but these errors were encountered: