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

https://github.com/merofuruya/cpp_video_gen


https://github.com/merofuruya/cpp_video_gen

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# cpp_video_gen

## Requirements

- [CImg](http://cimg.eu/) (C++ library for image processing)
- ffmpeg (for video encoding) - no headers, only the binary is needed and the app output must be piped to it
- g++ (or any other C++ compiler)

## Usage

```
./bin/main | ffmpeg -y -f rawvideo -pixel_format gbrp -video_size 1024x768 -i - -c:v h264 -pix_fmt yuv420p out/video.mov
```

## build

```
make
```