algoo / preview-generator

generates previews of files with cache management
https://pypi.org/project/preview-generator/
MIT License
224 stars 49 forks source link

Set default frame time on missing video duration metadata #306

Open DurandA opened 10 months ago

DurandA commented 10 months ago

PR Goal

Prevent exception when generating a preview on a video with missing duration metadata. duration metadata is typically missing on webm files recorded using the MediaStream Recording API. There is even a JS package to add duration to webm files.

Implemented solution

If there is no duration metadata, take the first frame rather than throwing a KeyError.

Checkpoints