The cameras and networking for the Arafura Games Sailing was a great success Tom, Clancy, Greg and Matt from Majestix Media built and streamed the Sailing pretty much as planned, we used security cams and drill batteries instead of go pros but otherwise it was pretty much as planned.
Clancy and his work built a fantastic PTZ gimbaled mast camera. Matt and Greg’s power systems were brilliant and the wifi worked well. There was some panic, interference and gear failure and insanity of the commentary but well the footage speaks for its self:
The Northern Territory Rugby Union Season Kicked off early this year.
With a bit of help from PierToPier.net its being live streamed to both face book and Youtube.
NT Rugby have bought a Camera, laptop and microphones, as per our specs, so far its been a fabulous success.
There’s already a guide on ‘how to stream the rugby‘ here from last year. However there’s a couple of new an innovative features with this years version.
The main one is using nginx to split the stream. Instead of putting the youtube server and stream key into OBS, you:
Get free AWS account.
Get a free tier AWS server
install nginx with the rtmp module on it
put your nginx server into obs
put the facebook and youtube keys into nginx.conf.
There’s an excellent guide here:
Of course I didn’t follow that guide, I used an ubuntu instance. A free tier AWS ubuntu instance can be set up in minutes using:
this will compile nginx with rtmp and set the timezone and network time protocol.
then just edit the nginx.conf
sudo nano /usr/local/nginx/conf/nginx.conf
redacted version of my nginx.conf changes:
rtmp {
server {
listen 1935;
chunk_size 4096;
application [redacted] {
live on;
record off;
allow publish 127.0.0.1;
allow publish [redacted ip];
#event round three other
push rtmp://a.rtmp.youtube.com/live2/[youtube stream key];
push rtmp://live-api.facebook.com:80/rtmp/[facebook stream key];
}
}
}
Just append this to the bottom of the nginx.conf.
where it says application [redacted] put the PATH to your server. Then enter custom streaming server the same in OBS e.g. rtmp://[ip of AWS server]/path
Stream key doesn’t seem to matter
Danger Will Robinson
this is obviously a MAHOOSIVE security risk. I got around it by:
allow publish [redacted ip];
This means that only the ip listed above can publish. in this case the IP of rugby parks NBN connection.
I also did the same with the AWS firewall. I also shut the instance down when not in use.
if I were you I would NOT:
use recurring stream keys with this setup
allow unrestricted access to your server
use auto go live
in the situation above should someone find you server, they could stream anything to your channels. Use this with caution!
This is not a particular endorsement of AWS, you could do this with linode, azure, digital ocean or whoever. Only used AWS as it was free and i needed to learn it. Also AWS have an Australian Data Centre, and we’re talking live streaming here. I’m not sure I want it going half way around the globe.