Kamara, Baby Rhino, First Viewing at Blank Park Zoo

Kamara is an Eastern Black Rhino born to mother Ayana and father Kiano at the Blank Park Zoo in Des Moines, Iowa on April 5, 2019. She is the second rhino born to the pair, the first being Tumani born October 11, 2016. This video is from the first public viewing on May 11, 2019.

First Public Viewing of sister Tumani: https://youtu.be/GUhdl08u65g

https://rhinos.org (International Rhino Foundation)

Using FFmpeg with a Web Cam to Layout a Wall Mural Followup

Logitech C615 Web Cam: https://amzn.to/2Vnqf94 (Amazon Affiliate)

Previous Video: https://youtu.be/cNaKUr32G1E

Installing FFmpeg: https://www.rickmakes.com/ffmpeg-notes/

Using FFmpeg with a Web Cam to Layout a Wall Mural

Logitech C615 Web Cam: https://amzn.to/2Vnqf94 (Amazon Affiliate)

FFmpeg Web Cam Capture Notes

https://trac.ffmpeg.org/wiki/Capture/Webcam

View Live Web Cam
ffplay -f avfoundation -framerate 30 -video_size 1920x1080 -i "HD Webcam C615" -pixel_format uyvy422 -vf hflip
Capture Web Cam Screenshot
ffmpeg -f avfoundation -framerate 30 -video_size 1920x1080 -i "HD Webcam C615" -pixel_format uyvy422 -vf hflip -f image2 -frames:v 1 screencapture.jpg
Overlay Transparent PNG on Live Video
ffplay -f avfoundation -framerate 30 -video_size 1920x1080 -i "HD Webcam C615" -pixel_format uyvy422 -vf "[in]hflip[vid],movie=screencapture.png[over],[vid][over]overlay[out]"