1 diff --git a/nextcord/opus.py b/nextcord/opus.py
2 index b1119a8e..b7c9c713 100644
5 @@ -233,7 +233,7 @@ def _load_default() -> bool:
6 _filename = os.path.join(_basedir, "bin", f"libopus-0.{_target}.dll")
7 _lib = libopus_loader(_filename)
9 - opus = ctypes.util.find_library("opus")
14 diff --git a/nextcord/player.py b/nextcord/player.py
15 index 5c7daf52..48a11eb7 100644
16 --- a/nextcord/player.py
17 +++ b/nextcord/player.py
18 @@ -127,7 +127,7 @@ class FFmpegAudio(AudioSource):
20 source: Union[str, io.BufferedIOBase],
22 - executable: str = "ffmpeg",
23 + executable: str = "@ffmpeg@",
25 **subprocess_kwargs: Any,
27 @@ -254,7 +254,7 @@ class FFmpegPCMAudio(FFmpegAudio):
29 source: Union[str, io.BufferedIOBase],
31 - executable: str = "ffmpeg",
32 + executable: str = "@ffmpeg@",
34 stderr: Optional[IO[str]] = None,
35 before_options: Optional[str] = None,
36 @@ -357,7 +357,7 @@ class FFmpegOpusAudio(FFmpegAudio):
39 codec: Optional[str] = None,
40 - executable: str = "ffmpeg",
41 + executable: str = "@ffmpeg@",
45 @@ -510,7 +510,7 @@ class FFmpegOpusAudio(FFmpegAudio):
48 method = method or "native"
49 - executable = executable or "ffmpeg"
50 + executable = executable or "@ffmpeg@"
51 probefunc = fallback = None
53 if isinstance(method, str):
54 @@ -555,9 +555,9 @@ class FFmpegOpusAudio(FFmpegAudio):
57 def _probe_codec_native(
58 - source, executable: str = "ffmpeg"
59 + source, executable: str = "@ffmpeg@"
60 ) -> Tuple[Optional[str], Optional[int]]:
61 - exe = executable[:2] + "probe" if executable in ("ffmpeg", "avconv") else executable
62 + exe = executable[:-4] + "probe" if executable.endswith(("ffmpeg", "avconv")) else executable
66 @@ -584,7 +584,7 @@ class FFmpegOpusAudio(FFmpegAudio):
69 def _probe_codec_fallback(
70 - source, executable: str = "ffmpeg"
71 + source, executable: str = "@ffmpeg@"
72 ) -> Tuple[Optional[str], Optional[int]]:
73 args = [executable, "-hide_banner", "-i", source]
74 proc = subprocess.Popen(