A video player, that outputs your video in ASCII text
- C++ 95.4%
- CMake 4.6%
| cmake/tests | ||
| src | ||
| .gitignore | ||
| bad_apple_original.webm | ||
| CMakeLists.txt | ||
| main.cpp | ||
| README.md | ||
ASCII video player
This repository contains source-code for ascii video player.
Build on Linux
Step 1: Install prerequisites
Fedora:
$ sudo dnf install ffmpeg-libs
Debian:
$ sudo apt install -y libavcodec-dev libavformat-dev libavdevice-dev libavfilter-dev portaudio19-dev libswscale-dev libswresample-dev
Step 2: Build the project:
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ..