(cmd, timeout=240)
| 20405 | return num |
| 20406 | |
| 20407 | def _run_ffmpeg(cmd, timeout=240): |
| 20408 | return subprocess.run( |
| 20409 | cmd, |
| 20410 | capture_output=True, |
| 20411 | text=True, |
| 20412 | timeout=timeout |
| 20413 | ) |
| 20414 | |
| 20415 | def probe_image_metadata(image_path: Path): |
| 20416 | base = { |
no outgoing calls
no test coverage detected