- Install ffmpeg.
brew install ffmpeg
- Figure out which device to use.
ffmpeg -f avfoundation -list_devices true -i ""
Ouput will look like:
#include <mach-o/dyld.h> | |
char *target_image_name = "libdyld"; | |
const struct mach_header* target_mach_header = NULL; | |
const char *image_name = NULL; | |
int num_images = _dyld_image_count(); | |
printf("%i images loaded\n", num_images); | |
for (int i = 0; i < num_images; i++) { |
# | |
# Make `pp` use IPython's pretty printer, instead of the standard `pprint` module. | |
# | |
# Sources: https://nedbatchelder.com/blog/200704/my_pdbrc.html | |
# | |
# XXX: This .pdbrc is only valid for Python >= 3.4 | |
# | |
import pdb | |
import inspect as __inspect | |
from pprint import pprint as __pprint |
#Download deb file from : | |
# https://developer.nvidia.com/compute/machine-learning/cudnn/secure/v7.5.0.56/prod/10.1_20190225/Ubuntu14_04-x64/libcudnn7_7.5.0.56-1%2Bcuda10.1_amd64.deb | |
# https://developer.nvidia.com/compute/machine-learning/cudnn/secure/v7.5.0.56/prod/10.1_20190225/Ubuntu14_04-x64/libcudnn7-dev_7.5.0.56-1%2Bcuda10.1_amd64.deb | |
sudo dpkg -i libcudnn7_7.5.0.56-1+cuda10.1_amd64.deb | |
sudo dpkg -i libcudnn7-dev_7.5.0.56-1+cuda10.1_amd64.deb |
/* | |
This small patch is an example of how to nicely send midi to Ableton Live from SuperCollider. | |
It includes how to set up Ableton Link (don't forget to press the "LINK" button in Live) and play a pattern using Link and midi. | |
It is assumed that you do this on MacOS and you have created a midi driver called "IAC Driver". | |
*/ | |
( |