You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ffmpeg provided by pd-else is tricky to compile. These are steps I took:
Tried to use bash.exe provided by an msys install. However in the ffmpeg_deps custom script failed with Unsupported OS: MSYS_NT-10.0-22631. Seems to only supports mingw64 env according to their script.
Installed mingw with choco install mingw instead and used their bash for the bash in the ffmpeg_deps CMakeFiles. Now it complains it can't find make. But mingw names their make mingw32-make.exe for some strange reason. Copied to make.exe on PATH and now it the ffmpeg target builds.
Maybe this can be improved? Or above added to Readme
The text was updated successfully, but these errors were encountered:
Okay I dunno what I changed but now I keep getting
make: *** No rule to make target 'C:\Program', needed by 'libavfilter/allfilters.o'. Stop.
So that ffmpeg_deps target keeps failing. It seems I only get one shot to build the whole solution without errors, and after that if it tries to rebuild it will attempt to rebuild ffmpeg_deps and fail...
The
ffmpeg
provided bypd-else
is tricky to compile. These are steps I took:bash.exe
provided by an msys install. However in theffmpeg_deps
custom script failed withUnsupported OS: MSYS_NT-10.0-22631
. Seems to only supportsmingw64
env according to their script.mingw
withchoco install mingw
instead and used theirbash
for thebash
in theffmpeg_deps
CMakeFiles. Now it complains it can't findmake
. Butmingw
names their makemingw32-make.exe
for some strange reason. Copied tomake.exe
on PATH and now it theffmpeg
target builds.Maybe this can be improved? Or above added to Readme
The text was updated successfully, but these errors were encountered: