diff --git a/yt_dlp/__init__.py b/yt_dlp/__init__.py
index 87d431c6e0..cab2dd62f9 100644
--- a/yt_dlp/__init__.py
+++ b/yt_dlp/__init__.py
@@ -920,6 +920,7 @@ def _real_main(argv=None):
     # We may need ffmpeg_location without having access to the YoutubeDL instance
     # See https://github.com/yt-dlp/yt-dlp/issues/2191
     if opts.ffmpeg_location:
+        opts.ffmpeg_location = expand_path(opts.ffmpeg_location)
         FFmpegPostProcessor._ffmpeg_location.set(opts.ffmpeg_location)
 
     with YoutubeDL(ydl_opts) as ydl: