diff --git a/README.md b/README.md index 13904b0..f9f9db7 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,14 @@ Create a "MovieBarcode" using average color of each frame as bars: -![image of test output](https://raw.githubusercontent.com/AsaadMe/MovieColor/master/doc/outresult.png) +***Example: John Wick Movie*** + +![John Wick normal](https://raw.githubusercontent.com/AsaadMe/MovieColor/master/doc/johnwicknormal.jpg) or using shrinked frames as bars (with `--alt` argument): -![image of test output2](https://raw.githubusercontent.com/AsaadMe/MovieColor/master/doc/outresult2.jpg) +![John Wick alt](https://raw.githubusercontent.com/AsaadMe/MovieColor/master/doc/johnwickalt.jpg) ------------------- ## Installation: Install via pip: @@ -25,9 +26,8 @@ source venv/bin/activate (on Linux) pip install -e . ``` -\* Make sure you have [ffmpeg](https://www.ffmpeg.org/) installed. +*\* Make sure you have [ffmpeg](https://www.ffmpeg.org/) installed.* ----------------- ## Usage: Run it with: diff --git a/doc/johnwickalt.jpg b/doc/johnwickalt.jpg new file mode 100644 index 0000000..93f10c9 Binary files /dev/null and b/doc/johnwickalt.jpg differ diff --git a/doc/johnwicknormal.jpg b/doc/johnwicknormal.jpg new file mode 100644 index 0000000..bce029f Binary files /dev/null and b/doc/johnwicknormal.jpg differ diff --git a/doc/outresult.png b/doc/outresult.png deleted file mode 100644 index 4ca8801..0000000 Binary files a/doc/outresult.png and /dev/null differ diff --git a/doc/outresult2.jpg b/doc/outresult2.jpg deleted file mode 100644 index e98faf5..0000000 Binary files a/doc/outresult2.jpg and /dev/null differ diff --git a/setup.py b/setup.py index fac6a38..ed28e4e 100644 --- a/setup.py +++ b/setup.py @@ -5,12 +5,12 @@ setuptools.setup( name="moviecolor", - version="1.2.0", + version="1.2.1", author="Mehran Asaad", author_email = 'mehran.asaad@gmail.com', license='MIT', url = 'https://github.com/AsaadMe/MovieColor', - download_url = 'https://github.com/AsaadMe/MovieColor/releases/tag/v1.2.0', + download_url = 'https://github.com/AsaadMe/MovieColor/releases/tag/v1.2.1', keywords = ['moviebarcode'], description="Generate a 'Moviebarcode' of a video from shrinked frames or average color of frames using ffmpeg with real-time progress interface.", long_description=long_description,