Skip to content

Commit

Permalink
Swallow exception
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Feb 8, 2024
1 parent 404276f commit de99fc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto_editor/ffwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ def initFileInfo(path: str, ffmpeg: FFmpeg, log: Log) -> FileInfo:
]
)
_sar, c_range, c_space, c_primary, c_transfer = _raw.strip().split("\n")
except Exception as e:
raise e
except Exception:
log.debug("Unexpected ffprobe shape")

if v.sample_aspect_ratio is None:
try:
Expand Down

0 comments on commit de99fc5

Please sign in to comment.