Skip to content

Instantly share code, notes, and snippets.

View kergalym's full-sized avatar

Galym Kerimbekov kergalym

  • Kazakhstan
View GitHub Profile
@kergalym
kergalym / encoding-video.md
Created May 10, 2022 19:08 — forked from Vestride/encoding-video.md
Encoding video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
@kergalym
kergalym / UE4-build.bat
Created March 11, 2021 08:55 — forked from drewsberry/UE4-build.bat
UE4 Windows command line building
:: Build client
RunUAT BuildCookRun -project="full_path.uproject"^
-noP4 -platform=Win64^
-clientconfig=Development -serverconfig=Development^
-cook -allmaps -build -stage^
-pak -archive -archivedirectory="Output Directory"
:: Cook client
RunUAT BuildCookRun -project="full_project_path_and_project_name".uproject^
-noP4 -platform=Win64^