I recently spent some time at the Ashland Nature Center. In addition to their nature trails and other facilities, they have a set of bird feeders next to a blind, specifically for birdwatching.
This setup results in bird photography on easy mode. I still managed to mess up most shots; these are some of those that came out OK. Enjoy!
I had been wanting to get some EABL pictures for a while. These birds were quite cooperative, the lighting somewhat less so.
The RWBLs were out in force, and were happy to pose by the feeders and in the trees.
This was fun to put together! My current defaults for “bird mode” are to shoot at 5FPS as long as the shutter button is held; I had 7 shots while this bird was calling. But at full extension (400mm focal length) and shooting upwards, my hands were a little shaky. A little bit of searching and trial-and-error got me “stabilized animated .webp from images.”
I started with a set of lossless PNGs (16-bit color depth) exported from Darktable. I tried “just” pushing them into an mkv with ffmpeg, but the video stabilization library didn’t like that – it wanted YUV color, not RGB. So, step one (from this post) was to encode as H264 video:
ffmpeg -y \
-r 5 \
-i rwbl-call-%04d.png \
-c:v libx264 \
-crf 0 \
rwbl-call-raw.mkv
Then per this post, use two passes to stabilize and encode as webp:
ffmpeg -i rwbl-call-raw.mkv \
-vf vidstabdetect=shakiness=10:accuracy=15 \
-f null -
ffmpeg -y -i rwbl-call-raw.mkv \
-vf vidstabtransform \
-vcodec libwebp \
-quality 90 \
-loop 0 \
rwbl-call.webp
See this page for equipment used; these all photos all use the 28-400 lens. Animals were identified humanely, by a pre-trained neural network, run locally while we had dinner one night.
All photos by Charles Eckman. All rights reserved. If you are interested in using these photos for commercial or non-commercial purposes, please contact me.