Proper path for ffmpeg libs on windows

This commit is contained in:
Kovid Goyal 2024-10-09 14:24:36 +05:30
parent 76b3da6edf
commit 2010f2ca48
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -211,7 +211,7 @@ else:
if os.path.exists(os.path.join(sw, 'ffmpeg')):
ffmpeg_inc_dirs = [os.path.join(sw, 'ffmpeg', 'include')] + ffmpeg_inc_dirs
ffmpeg_lib_dirs = [os.path.join(sw, 'ffmpeg', 'lib')] + ffmpeg_lib_dirs
ffmpeg_lib_dirs = [os.path.join(sw, 'ffmpeg', 'bin' if iswindows else 'lib')] + ffmpeg_lib_dirs
if 'PODOFO_PREFIX' in os.environ: