KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
vtg
★ 14
Open GitHub ↗
VTG adds modern video codec support to Godot 4.
Download README (.md)
Explore Similar Repositories
UiJuicer
:
Ui Juicer Godot Plugin
reimagined-guacamole
:
No description available.
vxbot
:
配合Gewechat框架开发。 对消息捕获并进行处理。已接入chatgpt
ui-marker
:
An amazing 3draw replacment for fivem
MedVKAN
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
vtg
?
Download (.md)
# Video Toolkit for Godot ## Clone Repository ``` git clone --recurse-submodules https://github.com/zwodev/vtg.git ``` ## Building on Linux ### Installing dependencies On Ubuntu: ``` sudo apt-get update sudo apt-get install -y \ build-essential \ scons \ pkg-config \ libx11-dev \ libxcursor-dev \ libxinerama-dev \ libgl1-mesa-dev \ libglu1-mesa-dev \ libasound2-dev \ libpulse-dev \ libudev-dev \ libxi-dev \ libxrandr-dev \ libwayland-dev ``` Other Linux distros: https://docs.godotengine.org/en/latest/engine_details/development/compiling/compiling_for_linuxbsd.html ### Building godot-cpp ``` cd submodules/godot-cpp scons platform=linux arch=x86_64 target=template_release scons platform=linux arch=x86_64 target=template_debug ``` ### Building SAV1 ``` cd submodules/SAV1/subprojects chmod +x download.sh ./download.sh cd .. meson setup builddir meson compile -C ./builddir ``` ### Building VTG ``` scons platform=linux arch=x86_64 target=template_release scons platform=linux arch=x86_64 target=template_debug ``` ## Building on macOS ### Installing dependencies Using Homebrew: ``` brew install scons ``` ### Building godot-cpp ``` cd submodules/godot-cpp scons platform=macos arch=arm64 target=template_release scons platform=macos arch=arm64 target=template_debug ``` ### Building SAV1 ``` cd submodules/SAV1/subprojects chmod +x download.sh ./download.sh cd .. meson setup builddir meson compile -C ./builddir ``` ### Building VTG ``` scons platform=macos arch=arm64 target=template_release scons platform=macos arch=arm64 target=template_debug ```