You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there are extra files inside the camera snapshots directory (like a Thumbs.db from windows explorer, etc), the code which loops over the "images" will try to include those and fail on the ffmpeg command. It also happens if there are folders in the directory.
The loop could be improved to exclude anything that doesn't end in .png since the snapshot command forces that into the file names. Not a perfect solution, but would solves most edge cases for little effort.
The text was updated successfully, but these errors were encountered:
If there are extra files inside the camera snapshots directory (like a
Thumbs.db
from windows explorer, etc), the code which loops over the "images" will try to include those and fail on the ffmpeg command. It also happens if there are folders in the directory.The loop could be improved to exclude anything that doesn't end in
.png
since thesnapshot
command forces that into the file names. Not a perfect solution, but would solves most edge cases for little effort.The text was updated successfully, but these errors were encountered: