Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/icetd/videoplayer
- Owner: icetd
- Created: 2023-11-15T18:55:47.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-04T10:20:01.000Z (2 months ago)
- Last Synced: 2024-12-04T11:25:36.362Z (2 months ago)
- Topics: ffmpeg, imgui
- Language: C++
- Homepage:
- Size: 74.8 MB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-devmkdir build && cd build
cmake ..
make -j8
```App Demo base on imgui.
![](pic/demo.png)