From 4a3ff8bfce622de0e5affa312d50557b5d336371 Mon Sep 17 00:00:00 2001 From: Martin Kaistra Date: Mon, 29 May 2017 11:22:47 +0200 Subject: [PATCH] Use pillow if pyqt5 is installed (issue #17) --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be5ae25..a029f8d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ audio-visualizer-python This is a little GUI tool which creates an audio visualization video from an input audio. You can also give it a background image and set a title text. -I have tested the program on Linux (Ubuntu 14.10) and Windows (Windows 7), it should also work on Mac OS X. If you encounter problems +I have tested the program on Linux (Ubuntu 16.04) and Windows (Windows 7), it should also work on Mac OS X. If you encounter problems running it or have other bug reports or features, that you wish to see implemented, please fork the project and send me a pull request and/or file an issue on this project. I also need a good name that is not as generic as "audio-visualizer-python"! @@ -16,7 +16,8 @@ You need Python 3, PyQt4, PIL (or Pillow), numpy and the program ffmpeg, which i Installation ------------ ### Manual installation on Ubuntu -* Get all the python stuff: `sudo apt-get install python3 python3-pyqt4 python3-pil python3-numpy` +* Get all the python stuff: `sudo apt install python3 python3-pyqt4 python3-pil python3-numpy` +* If you have PyQt5 installed, get pillow (at least version 3.3.0) from pip: `apt install python3-pip; pip3 install pillow` * Get ffmpeg/avconv: You can either use `avconv` from the standard repositories (package `libav-tools`) or get `ffmpeg` from the [website](http://ffmpeg.org/) or from a PPA (e.g. [https://launchpad.net/~jon-severinsson/+archive/ubuntu/ffmpeg](https://launchpad.net/~jon-severinsson/+archive/ubuntu/ffmpeg). The program does automatically detect if you don't have the ffmpeg binary and tries to use avconv instead.