1 diff --git a/imageio_ffmpeg/_utils.py b/imageio_ffmpeg/_utils.py
2 index 6387834..e5e312d 100644
3 --- a/imageio_ffmpeg/_utils.py
4 +++ b/imageio_ffmpeg/_utils.py
5 @@ -38,29 +38,7 @@ def get_ffmpeg_exe():
9 - plat = get_platform()
12 - bin_dir = resource_filename("imageio_ffmpeg", "binaries")
13 - exe = os.path.join(bin_dir, FNAME_PER_PLATFORM.get(plat, ""))
14 - if exe and os.path.isfile(exe) and _is_valid_exe(exe):
17 - # 3. Try binary from conda package
18 - # (installed e.g. via `conda install ffmpeg -c conda-forge`)
19 - if plat.startswith("win"):
20 - exe = os.path.join(sys.prefix, "Library", "bin", "ffmpeg.exe")
22 - exe = os.path.join(sys.prefix, "bin", "ffmpeg")
23 - if exe and os.path.isfile(exe) and _is_valid_exe(exe):
26 - # 4. Try system ffmpeg command
28 - if _is_valid_exe(exe):
35 def _popen_kwargs(prevent_sigint=False):