kidrigger/godot-videodecoder

Binaries page returns 404 error

Opened this issue · 5 comments

Unfortunately I failed building the plugin for linux, so I wanted to download already built versions, but the page doesn't exist :/ if anyone could help by sending a link to binaries it would change my life tbh

Where did you get it from ? Thank ya btw

I have to compile the engine with these folders in the module section of the engine ?

These builds are created by github. You don't have to compile the engine, it's a gdnative plugin, not a module.

See the test project for an example: https://github.com/kidrigger/godot-videodecoder/tree/master/test

The dll/so files would be built and placed in https://github.com/kidrigger/godot-videodecoder/tree/master/test/addons/bin

next to
https://github.com/kidrigger/godot-videodecoder/blob/master/test/addons/videodecoder.gdnlib

OSX.64="res://addons/bin/osx/libgdnative_videodecoder.dylib"
Windows.64="res://addons/bin/win64/libgdnative_videodecoder.dll"
Windows.32="res://addons/bin/win32/libgdnative_videodecoder.dll"
X11.64="res://addons/bin/x11/libgdnative_videodecoder.so"
X11.32="res://addons/bin/x11_32/libgdnative_videodecoder.so"

:/ I'm realizing as I look at it that it's... not very ergonomic at this point... (and due to osx licensing bs we don't have an auto mac build)

Probably won't change until the godot4 rewrite though.. unless somebody has time.

Thanks a lot, it worked ^^