-
Notifications
You must be signed in to change notification settings - Fork 10
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
Streaming your video #7
Comments
@uavpal 's:
|
alternative is to stream from your phone/tablet. Easier, but doubles the data usage on your mobile (and heavier on the processor as well). Louis Mcnair uses https://obsproject.com/ to mix streams. |
can you stream from the Disco instead of SC? That would save on latency and bandwith https://developer.parrot.com/blog/2016/play-bebop-stream-on-vlc/ |
Video stream uses RTP H264. You have to trigger the video stream then disco starts To trigger the video you can use this example: https://github.com/hybridgroup/node-bebop/blob/master/examples/video.js#L13 but you have to modify this parametres: https://github.com/hybridgroup/node-bebop/blob/master/lib/bebop.js#L266 adding this:
So you sending your controller info to discovery port The next step is to check what the |
You can grab the video from your Skycontroller (or Disco?) using:
http://SC2:7711/video (this is a referrer file, linking to 192.168.53.1:55004 (H264 stream) )
command to stream to YouTube:
ffmpeg -f lavfi -i anullsrc -rtsp_transport http -i rtsp://DISCO-OR-ZEROTIER-ADDRESS:55004 -tune zerolatency -vcodec libx264 -t 12:00:00 -pix_fmt + -c:v copy -c:a aac -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/STREAM-NAME
See: https://www.georgetimmermans.com/blog/streaming-rtsp-to-youtube-live
The text was updated successfully, but these errors were encountered: