TODO: Write a project description
TODO: Describe the installation process
| import pyaudio | |
| import wave | |
| FORMAT = pyaudio.paInt16 | |
| CHANNELS = 2 | |
| RATE = 44100 | |
| CHUNK = 1024 | |
| RECORD_SECONDS = 5 | |
| WAVE_OUTPUT_FILENAME = "file.wav" | |
| #!/bin/bash | |
| COMPASS="/var/lib/gems/1.8/bin/compass" | |
| case "$1" in | |
| ""|start) | |
| echo "Starting compass watch..." | |
| if [ -f ./cwatch.pid ] | |
| then | |
| echo "Sorry, but compass is already watching this folder..." |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
| #!/usr/bin/env python | |
| import pygst | |
| pygst.require("0.10") | |
| import gst, pygtk, gtk | |
| import sys | |
| class Main(object): | |
| def __init__(self): | |
| self.multimedia_file="" | |
| # Create the GUI | |
| self.win = gtk.Window() |