Now for my issue...
If I open the timeline view for a given camera for the "hour" time span, I am am able to move my cursor through the time line (in red) and see thumbnails. However, If I change the time span to day, week, or month the thumbnails are not displayed when moving through the timeline. I did some digging around and it looks like ffmpeg is being called but it is missing a duration, so the image creation fails:
I monitored the ffmpeg processes and found a working thumbnail:
Code: Select all
www-data 3521 0.0 0.0 4628 856 ? S 11:06 0:00 sh -c ffmpeg -ss 554.06 -i /var/cache/zoneminder/events/5/2018-10-31/308130/308130-video.mp4 -frames:v 1 /var/cache/zoneminder/events/5/2018-10-31/308130/05543-capture.jpg
www-data 3522 0.0 0.2 550732 37008 ? Dl 11:06 0:00 ffmpeg -ss 554.06 -i /var/cache/zoneminder/events/5/2018-10-31/308130/308130-video.mp4 -frames:v 1 /var/cache/zoneminder/events/5/2018-10-31/308130/05543-capture.jpg
Code: Select all
www-data 3525 0.0 0.0 4628 788 ? S 11:06 0:00 sh -c ffmpeg -ss -i /var/cache/zoneminder/events/5/2018-10-31/308130/308130-video.mp4 -frames:v 1 /var/cache/zoneminder/events/5/2018-10-31/308130/04933-capture.jpg
www-data 3526 0.0 0.1 508480 30528 ? R 11:06 0:00 ffmpeg -ss -i /var/cache/zoneminder/events/5/2018-10-31/308130/308130-video.mp4 -frames:v 1 /var/cache/zoneminder/events/5/2018-10-31/308130/04933-capture.jpg
Thanks again!