Video support with gdx video - e-ucm/ead GitHub Wiki
Following the tracks of the gdx-video pull request
- Clone the repo (you can do this on another branch of LibGDX; just provide the full URL to the latest commit and give it a named branch).
- Fix a small typo in
extensions/gdx-video/gdx-video-desktop/pom.xml: missing dependency on lwgl
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gdx-backend-lwjgl</artifactId>
<version>${project.version}</version>
</dependency>- Grab dependencies & cross-compilation for building ffmpeg
sudo apt-get build-dep ffmpeg
sudo apt-get install mingw-w64 mingw-w64-tools
sudo apt-get install g++-multilib g++-mingw-w64-i686 g++-mingw-w64-x86-64
sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev