I'm using ffmpeg to push some RTSP streams from my crittercams to YouTube via RTMP. I'm simultaneously recording the footage in BI, but the raw RTSP lacks the custom overlay that I'm putting on the YouTube feed, e.g. the real-time weather on my BeeCam:
www.youtube.com
Since I'm already generating that feed for YT, is there a way to pipe that into BI?
The ffmpeg command is of the form:
but I can create another instance of ffmpeg if things need to be different to emulate a camera for BI.
BeeCam from Painted Peacock Manor
Live BeeCam, monitoring my established hives in Palos Verdes, 90274.I have another camera monitoring a "bait hive" or "swarm trap," here:https://www.youtube....
Since I'm already generating that feed for YT, is there a way to pipe that into BI?
The ffmpeg command is of the form:
Code:
./ffmpeg1 -hwaccel videotoolbox -i "rtsp:/anonymous:password@192.168.1.11:554" -vf drawtext='fontfile=/System/Library/Fonts/Helvetica.ttc: textfile=/tmp/weather.txt: fontcolor=white: fontsize=48: x=(w-text_w)*0.01: y=(h-text_h)*0.08:reload=600' -vcodec h264_videotoolbox -b:v 5000k -acodec copy -t 01:47:02 -f flv "rtmp:/a.rtmp.youtube.com/live2/<my-youtube-streaming-key>"
but I can create another instance of ffmpeg if things need to be different to emulate a camera for BI.