[skeb] fix "KeyError - 'frame_rate'" (#7798)

This commit is contained in:
Mike Fährmann
2025-07-09 08:05:43 +02:00
parent 4e9cb428d6
commit b77e18317b

View File

@@ -183,7 +183,7 @@ class SkebExtractor(Extractor):
"height" : info["height"],
"byte_size" : info["byte_size"],
"duration" : info["duration"],
"frame_rate": info["frame_rate"],
"frame_rate": info.get("frame_rate"),
"software" : info["software"],
"extension" : info["extension"],
"is_movie" : info["is_movie"],