Skip to content

Commit

Permalink
Use pillow if pyqt5 is installed (issue #17)
Browse files Browse the repository at this point in the history
  • Loading branch information
djfun committed May 29, 2017
1 parent 5487319 commit 4a3ff8b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"!
Expand All @@ -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.

Expand Down

1 comment on commit 4a3ff8b

@Freymark
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great little tool,
Works fine on Linux Mint 18.3
just needed to install python3-pyqt4 , python3-numpy

Please sign in to comment.