do not add commit comments to code

This commit is contained in:
msramalho
2025-06-17 13:18:12 +01:00
parent f0b876e67c
commit 1b260788de

View File

@@ -116,11 +116,6 @@ class Media:
# self.is_video() should be used together with this method
try:
streams = ffmpeg.probe(self.filename, select_streams="v")["streams"]
# DM 27th May 2025
# https://x.com/dave_mateer/status/1524341442738638848
# shows this warning for the gif file
# Have changed to debug for now to clean up logs
# logger.warning(f"STREAMS FOR {self.filename} {streams}")
logger.debug(f"STREAMS FOR {self.filename} {streams}")
return any(s.get("duration_ts", 0) > 0 for s in streams)
except Error: