diff --git a/src/auto_archiver/core/media.py b/src/auto_archiver/core/media.py index 75fb366..2fad0ec 100644 --- a/src/auto_archiver/core/media.py +++ b/src/auto_archiver/core/media.py @@ -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: