sudo apt-get install libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0
sudo apt-get install ffmpeg libav-tools
sudo pip install pyaudio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <IfModule mod_rewrite.c> | |
| Options -MultiViews | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^(.*)$ index.php [QSA,L] | |
| </IfModule> | |
| <IfModule !mod_rewrite.c> | |
| <IfModule mod_alias.c> | |
| RedirectMatch 302 ^/$ /index.php/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from tkinter import * | |
| from tkinter.colorchooser import askcolor | |
| class Paint(object): | |
| DEFAULT_PEN_SIZE = 5.0 | |
| DEFAULT_COLOR = 'black' | |
| def __init__(self): |