-
It seems like it should be supported, according to the meson build file
But I couldn't find any guide/list of requirements on the project homepage or the repo. What would be necessary to achieve this? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
To be honest, I don't know. Maybe @kasper93 or @Nevcairiel can help? |
Beta Was this translation helpful? Give feedback.
-
There is nothing special about building libplacebo on Windows.
works. Of course you need build environment with compiler and dependencies (ffmpeg for plplay). You can use MSYS2 [1] and install prebuilt ffmpeg package, see mpv guide for more details [2]. MSVC is also possible then you have to build ffmpeg yourself [3]. (and native file for meson, because tool autodetection is not that good, but when you arrive at this point I can help with that) [1] https://www.msys2.org/wiki/MSYS2-installation/ With those pointer you should be able to built it, feel free to ask questions.
Look here for complete list and build steps https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-libplacebo/PKGBUILD (don't copy |
Beta Was this translation helpful? Give feedback.
-
libplacebo-demos package has been added for MSYS2. So now you can just install prebuilt package instead of compiling plplay yourself. |
Beta Was this translation helpful? Give feedback.
-
Ah, nice. Although this repo apparently only contains the Binaries are linked here, I think: Not sure if you'd want Seems like they are compressed with zstd, so one would also need a program able to handle these, normal 7zip won't cut it here I think. |
Beta Was this translation helpful? Give feedback.
There is nothing special about building libplacebo on Windows.
works.
Of course you need build environment with compiler and dependencies (ffmpeg for plplay). You can use MSYS2 [1] and install prebuilt ffmpeg package, see mpv guide for more details [2]. MSVC is also possible then you have to build ffmpeg yourself [3]. (and native file for meson, because tool autodetection is not that good, but when you arrive at this point I can help with that)
[1] https://www.msys2.org/wiki/MSYS2-installation/
[2] https://github.com/mpv-player/mpv/blob/master/DOCS/compile-windows.md#native-compilation-with-msys2
[3] https://trac.ffmpeg.org/wiki/CompilationGuide
W…