Script for playing videofiles in console
git clone https://github.com/Roqvie/PlayVideoInConsole.git
cd PlayVideoInConsole
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
sudo apt-get install ffmpeg -y
Playing video with grayscale-based frames processing:
python play.py examples/rick.mp4 --shape 160 45 --image-type grayscale
Playing video with treshold-based frames processing:
python play.py examples/badapple.mp4 --symbols .# --shape 160 45 --image-type treshold --treshold 127
Help:
python play.py --help