Tralies head inverted, aka PSYCHED

In [3]:
#Captured when Prof tralie lagged out due to bandwith issues XD
import numpy as np
import matplotlib.pyplot as plt
import librosa
from scipy.signal import fftconvolve
from scipy.ndimage.filters import maximum_filter1d
from scipy.interpolate import interp2d
from instruments import fm_bell_note
import IPython.display as ipd
from vocoder import *
from skimage.color import rgb2gray
import skimage.io
sr = 44100
w = 2048
h = 512
y = im2sound("Picture1.png", w, h, hann_window, 10)
ipd.Audio(y, rate=sr)
[[0.23731804 0.23731804 0.23256314 ... 0.07886745 0.07886745 0.07886745]
 [0.23731804 0.23815137 0.23536863 ... 0.08025137 0.07827922 0.07827922]
 [0.23703529 0.24040627 0.23256314 ... 0.0788298  0.08049647 0.07966314]]
-------
[[0.23731804 0.23731804 0.23256314 ... 0.07886745 0.07886745 0.07886745]
 [0.23731804 0.23815137 0.23536863 ... 0.08025137 0.07827922 0.07827922]
 [0.23703529 0.24040627 0.23256314 ... 0.0788298  0.08049647 0.07966314]]
2048
Out[3]:
In [ ]: