updated occassionally
filename | character |
---|---|
CH0058_spr |
Hifumi (Swimsuit) |
CH0060_spr |
Tsurugi (Swimsuit) |
CH0063_spr |
Hina (Swimsuit) |
CH0064_spr |
Iori (Swimsuit) |
CH0066_spr |
Shun (Small) |
CH0069_spr |
Mika |
from PIL import Image, ImageDraw, ImageOps, ImageStat | |
""" | |
convert picture to matrix data uint8 array | |
this script is too slow... | |
maybe we should rewrite it in np things |
The open-source audio production toolset is becoming more and more powerful and feature-complete with every year passing.
Something still missing from it are artist-friendly tools for reverb removal (both realtime and offline). Here's a list of existing open-source projects that could be used as basis for such tools:
https://github.com/HoerTech-gGmbH/openMHA https://github.com/fgnt/nara_wpe https://github.com/helianvine/fdndlp https://github.com/sas91/jhu-neural-wpe https://github.com/sjlee7/speech-dereverberation
library(V8) | |
library(rvest) | |
library(hrbrthemes) | |
library(tidyverse) | |
ctx <- v8() | |
pg <- read_html("https://www.tiobe.com/tiobe-index/") | |
html_nodes(pg, xpath=".//script[contains(., 'series:')]") %>% |
Video.prototype.slowDown = function (options, input, cb) { | |
var self = this, | |
audio = fs.createWriteStream('/tmp/' + uuid() + '.wav'), | |
video = fs.createWriteStream('/tmp/' + uuid() + '.mov'), | |
streamed = {}, | |
run_proc = null; | |
input.on('data', function (data) { | |
audio.write(data); |