This is a summary of this nice tutorial.
- Install TensorFlow.
- Download the TensorFlow models repository.
# Based on https://www.youtube.com/watch?v=oVi9WfoA0QI and the code https://github.com/mtytel/vital/blob/c0694a193777fc97853a598f86378bea625a6d81/src/synthesis/producers/spectral_morph.h#L132-L178 | |
#%% | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from matplotlib.widgets import Slider | |
from scipy.fft import rfft, irfft | |
from IPython.display import display, Audio | |
import sounddevice as sd |
perl -e 'print "file gif_or.mp4\n" x 10000' > animgif.txt | |
ffmpeg -f concat -i animgif.txt -i song_name.mp3 -map 0 -map 1 -c copy -shortest tikka_hommat_industrial.mp4 |
This is a summary of this nice tutorial.
import gifAnimation.*; | |
GifMaker gifExport; | |
int frames = 0; | |
int totalFrames = 120; | |
public void setup() { | |
smooth(); | |
size(400, 400); |
void FrequencyFinder::Start() | |
{ | |
m_listenerThread = std::thread(&AudioListener::RecordAudioStream, m_listener, &m_sink, std::ref(m_finished)); | |
} |
Shader "Tri-Planar World" { | |
Properties { | |
_Side("Side", 2D) = "white" {} | |
_Top("Top", 2D) = "white" {} | |
_Bottom("Bottom", 2D) = "white" {} | |
_SideScale("Side Scale", Float) = 2 | |
_TopScale("Top Scale", Float) = 2 | |
_BottomScale ("Bottom Scale", Float) = 2 | |
} | |
import urllib2 | |
import threading | |
from Queue import Queue | |
import sys, os, re | |
class ThreadedDownload(object): | |
REGEX = { | |
'hostname_strip':re.compile('.*\..*?/', re.I) | |
} |