Hello,
I'm investigating possibility to send audio/video stream to Kurento room using ffmpeg
This is helpful while testing and also allows to connect external video source cam/video file etc.
Kurento supports rtp so I have tried something like this:
ffmpeg -re -i Avengers2.mp4 -f rtp rtp://localhost:8888/5?test=test
doesn't work, rtp can only send 1 stream (audio or video)
This command:
ffmpeg -re -i Avengers2.mp4 -an -f rtp rtp://localhost:8888/5?test=test
produces no errors, ffmpeg streams as expected
Surprisingly my ObjectCreatedListener set up for ApplicationServer get no ObjectCreatedEvent
(and no log entries in kurento docker instance)
Then I have tried to change protocol:
ffmpeg -re -i Avengers2.mp4 -preset ultrafast -f mpegts udp://localhost:8888/5?test=test
same effect: ffmpeg streaming without errors, but the stream seems to be invisible to Kurento
Maybe it sort of configuration issue? Or some other listener need to be registered?