Skip to content

Generate a "Moviebarcode" of a video using ffmpeg with real-time progress interface.

License

Notifications You must be signed in to change notification settings

AsaadMe/MovieColor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MovieColor

Create a "MovieBarcode" using average color of each frame as bars:

Example: John Wick Movie

John Wick normal

or using shrinked frames as bars (with --alt argument):

John Wick alt

Installation:

Install via pip:

pip install moviecolor

Or clone the project and Install it in Virtual Environment:

git clone https://github.com/AsaadMe/MovieColor.git
cd MovieColor
python -m venv venv
venv\Scripts\activate (on Windows)
source venv/bin/activate (on Linux)
pip install -e .

* Make sure you have ffmpeg installed.

Usage:

Run it with:

moviecolor input.mp4 [-e 30] [-o output_name] [--alt] [--help]

-e , --end: chosen part of the video from start (in Minutes)

-a , --alt: instead of using average color, use shrinked frames

Usage