Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/icetd/videoplayer

video player base on imgui(Just support video)
https://github.com/icetd/videoplayer

ffmpeg imgui

Last synced: about 1 month ago
JSON representation

video player base on imgui(Just support video)

Awesome Lists containing this project

README

        

## build for win

ENV: Visual Studio 2022

```
mkdir build && cd build
cmake ..
MSBuild.exe VideoPlayer.sln -t:Rebuild -p:Configuration=Release
```

## build for Linux
```
sudo apt install -y \
libavcodec-dev \
libavformat-dev \
libavfilter-dev \
libavdevice-dev \
libavutil-dev \
libswresample-dev \
libswscale-dev \
libjpeg-dev

mkdir build && cd build
cmake ..
make -j8
```

App Demo base on imgui.

![](pic/demo.png)