Page 1 of 1

Re-streaming a local WiFi ethernet streaming from GoPro 3

Posted: 14 Mar 2013 00:16
by aitte
Hi everyone!

I've bought a GoPro 3, that can stream live video at a local wifi LAN.

I can streaming it directly from GoPro (via WiFi) to VLC (at local computer) like this video: http://www.youtube.com/watch?v=Tovaxk6zZ6Q

Buuut, the question is: can I "re-streaming" this video from my computer to the all the internet (WAN) using some trick in VLC? VLC will be like a "repeater" of the streaming, from the local LAN to internet...

It's possible?

I want to cover an event at my job with the GoPro and stream this to other friends around the world... If it is not possible this way, there's some sugestions to make it happens?

THANKS in advance!! ;)

Re: Re-streaming a local WiFi ethernet streaming from GoPro

Posted: 14 Mar 2013 17:32
by RĂ©mi Denis-Courmont
It depends on your computer power and your network connection.

Re: Re-streaming a local WiFi ethernet streaming from GoPro

Posted: 14 Mar 2013 22:55
by aitte
Ok, there's no problem about computer power and network connection. I need to know how can I SETUP a "re-streaming" system from a stream transmitted from another computer at the same local network. That's it! =)

Re: Re-streaming a local WiFi ethernet streaming from GoPro

Posted: 09 Apr 2013 08:10
by linpoyu0415
You could try the command below,

Code: Select all

VLC --intf=dummy http://10.5.5.9:8080/live/amba.m3u8 --http-host=172.18.66.145 :sout=#http{mux=ts,dst=:80/} :sout-keep --repeat
where <http://10.5.5.9:8080/live/amba.m3u8> is the GoPro httplive URL, and <172.18.66.145> is your another public IP from your computer to internet. As for a client, you could use VLC media player with a network URL <http://172.18.66.145/> to view the live stream from your computer.

You could also use the RTSP to restream your GoPro livestream as below,

Code: Select all

VLC --intf=dummy http://10.5.5.9:8080/live/amba.m3u8 --rtsp-host=172.18.66.145 :sout=#rtp{sdp=rtsp://:8554/} :sout-keep --repeat
In your VLC client, you can type a network URL as <rtsp://172.18.66.145:8554/>

That's all. Hope it helps.
Please let me if it works.