This file contains 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
IE6 Only | |
================== | |
_selector {...} | |
IE6 & IE7 | |
================== | |
*html or { _property: } | |
IE7 Only | |
================== |
This file contains 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
Attribute VB_Name = "Kai32" | |
'-=====================================================- | |
' -= +------------------------------------------------+ =- | |
' -= | |\ =- | |
' -= | |¯¯|\ |¯¯|\ |¯¯|\ |¯¯¯¯¯¯|\ |¯¯¯¯¯¯|\ |\\ =- | |
' -= | | |\/ /\| |__|\||__|| |\||___ |\| |\\| =- | |
' -= | | |/ /\/ |¯¯¯¯¯|\ \\\\| \\|¯ |\| /¯¯___/\| |\\| =- | |
' -= | | /\/ | |\||¯¯|\ |¯¯|| |\|| ¯¯¯|\ |\\| =- | |
' -= | | \/ | | |\|| |\||______|\||______|\| |\\| =- | |
' -= | | |\ \ | |\|| |\| \\\\\\\\| \\\\\\\\| |\\| =- |
This file contains 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 scipy.io import wavfile | |
import scipy.io | |
from scipy.fft import fft, ifft | |
import numpy as np | |
""" | |
chord.wav should be a short sound, equivalent to carrier in vocoder | |
impulse.wav should be a quite sparse transient heavy sound, equivalent to modulator in vocoder | |
play with tsmear and asmear to tweak between vocoder and convolution like sound | |
""" | |
Tsmear = 1000 |