- Lighting
- Emergency & Main area
- hack the space nights
- what to throw out
- tools and consumables, requests
- AGM needed
- Elections needed
- What does the board do?
I hereby claim:
- I am tub on github.
- I am tub (https://keybase.io/tub) on keybase.
- I have a public key whose fingerprint is 2F31 8E5C BA27 38E2 F598 85ED 7AB6 48CB 2D2A 56AD
To claim this, I am signing this object:
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
#!/usr/bin/env python3 | |
import wave | |
import sys | |
import os.path | |
import argparse | |
parser = argparse.ArgumentParser(description='Take a file, write it as a wav.') | |
parser.add_argument('-o', '--out', required=True, help='Output file') | |
parser.add_argument('-i', '--src', required=True, help='Input file') | |
parser.add_argument('-r', '--rate', default=11025, help='Sample rate') |