ffmpeg-python icon indicating copy to clipboard operation
ffmpeg-python copied to clipboard

Getting videos info (width, height) gives error

Open MH-Python opened this issue 2 years ago • 0 comments

_probe = ffmpeg.probe(video_path) _stream = next((stream for stream in _probe['streams'] if stream['codec_type'] == 'video'), None)

Although I added ffmpeg and ffprobe binaries to my venv/bin/, but still getting this error OSError: [Errno 8] Exec format error: 'ffprobe'

MH-Python avatar Nov 29 '23 14:11 MH-Python