Receiving ffplay audio as a source in OBS

kanopy

New Member
hi.

I have some audio that is streamed from an external host using ffmpeg and I can listen to it using ffplay using the following command:

Code:
ffplay -protocol_whitelist file,udp,rtp -i stream.sdp

and i can restream it using

Code:
ffmpeg -protocol_whitelist file,udp,rtp -i stream.sdp -c copy -i rtp://127.0.0.1:5555

I would like to bring this audio source into OBS so I can blend it with some video, I've used the 'Media Source' source and in the 'Input' field i type rtp://127.0.0.1:5555. But it doesn't do anything, no audio is received.

The SDP file was created from the output from ffmpeg on the host machine which is

Code:
v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 xxx.xxx.xxx.xxx
t=0 0
a=tool:libavformat 57.83.100
m=audio 1234 RTP/AVP 97
b=AS:768
a=rtpmap:97 PCMU/48000/2

What am I doing wrong? This should be possible right?
 
Top