-
Notifications
You must be signed in to change notification settings - Fork 58
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
Multiple destinations with multiple setups. FEC/Local/SRT #379
Comments
This is the basics of how we do it.
|
Yeah, Thats pretty much what I figured, but I have this obsession with multicast and we use FEC as well. I am not sure how SRT handles the FEC portion and still needs to have a SRT receiver on the other side. Ideally its multicast with fec output for all local network stuff with two network ports. Unicast with FEC on the same network to devices that don't have multicast network interfaces, and then a unicast to SRT to go out to the rest of the world. We have our own transmission solution so it wouldn't be SRT but essentially its the same sort of stuff. I was testing hd-rum-transcode or hd-rum, and it wont bind to the multicast source on the same machine, so I think thats a bug. ./UltraGrid-1.9.1-x86_64.AppImage -t decklink:0 -s embedded -c libavcodec:encoder=libx264:bitrate=15000k:depth=8 --audio-codec=opus:sample_rate=48000:bitrate=256k --audio-capture-format channels=16 -m 1316 239.34.34.34 -T 64 -P 10000 --control-port 1234 ./UltraGrid-1.9.1-x86_64.AppImage -o hd-rum-transcode 200k 10000 -P 5004 192.168.99.100 -P 5004 127.0.0.1 using UDP send and receive buffer size of 204800 bytes It says *:10000 but I don't think its actually doing that, its expecting on local host. * would mean all, wouldn't it? Also wondering why it would need that run twice for both audio and video, wouldn't be easier to put that all into one? |
I don't know about multicast, but here is our syntax. and the corresponding log:
|
Hi, in case that your are still interested. I am not sure if entirely understand the scheme, but if I take it from the end:
I've just checked with iproute2's ss ( From the context I think you'd like the reflector to receive the multicast, right In this case, the mcast address to bind (join) to is needed to add. That is currently not possible , but I believe that it is quite easy to add, so I'll perhaps do this.
I've separated it into a discussion if you don't mind. Will answer soon. |
I have two networks. Multicast and Unicast. These are two separate networks that one encoder can be connected to.
Ideally I would like to output multicast of my ultragrid encoded video with FEC, which this can be done now with just by using the multicast output and setting my TTL value. But if I want to send that same signal to another device on the network, but to the unicast side of the network, what would be the logical setup? Use hdrum?
So something like this:
The text was updated successfully, but these errors were encountered: