()
| 15 | import sys |
| 16 | |
| 17 | def fast_check_ffmpeg(): |
| 18 | try: |
| 19 | subprocess.run(["ffmpeg", "-version"], capture_output=True, check=True) |
| 20 | return True |
| 21 | except: |
| 22 | return False |
| 23 | |
| 24 | ffmpeg_path = "./ffmpeg-4.4-amd64-static/" |
| 25 | if not fast_check_ffmpeg(): |