Skip to content

Instantly share code, notes, and snippets.

View alex-tee's full-sized avatar
💭
https://www.zrythm.org

alex-tee

💭
https://www.zrythm.org
View GitHub Profile
import argparse
import logging
import sys
import time
from rtmidi.midiutil import open_midioutput
from rtmidi.midiconstants import *
log = logging.getLogger("midi-send-all")
@emilianavt
emilianavt / BestVTuberSoftware.md
Last active April 27, 2024 19:58
Best VTuber Software

Best VTuber software

This is a list of the most commonly used and relevant vtubing software. The "best" will always be subjective and depend on your specific requirements. Overall, the information in this list is as accurate as I could figure it out, but there might be errors or some details might become out of date. If you find anything that needs to be corrected, please let me know. You can also note it in a comment.

Additional explanations:

  • iPhone means that an iPhone is basically required
  • iFacialMocap support means that tracking data can be received from the iFacialMocap iPhone app
  • VMC protocol means that the application can send and/or receive tracking data from other VMC protocol capable applications, allowing the combination of multiple tracking methods (e.g. VSeeFace receiving VR tracking from Virtual Motion Capture and iPhone/ARKit face tracking from Waidayo)
  • Tobii means that the Tobii eye tracker is supported
Flat profile:
Each sample counts as 0.01 seconds.
% cumulative self self total
time seconds seconds calls ms/call ms/call name
84.62 0.33 0.33 10 33.00 33.00 mpmc_queue_clear
5.13 0.35 0.02 98163 0.00 0.00 graph_node_process
2.56 0.36 0.01 85225 0.00 0.00 port_sum_signal_from_inputs
2.56 0.37 0.01 108 0.09 0.09 kmeter_dsp_process
2.56 0.38 0.01 3 3.33 3.33 object_pool_new
@t-mat
t-mat / minimal_vst2x_host.cpp
Last active September 4, 2023 17:11
WIN32 : Minimal VST 2.x host in C++11.
// Win32 : Minimal VST 2.x Synth host in C++11.
//
// This is a simplified version of the following project by hotwatermorning :
// A sample VST Host Application for C++ Advent Calendar 2013 5th day.
// https://github.com/hotwatermorning/VstHostDemo
//
// Usage :
// 1. Compile & Run this program.
// 2. Select your VST Synth DLL.
// 3. Press QWERTY, ZXCV, etc.
@azam
azam / svg2ico.sh
Last active April 28, 2024 03:28
Convert SVG to ICO using ImageMagick, with transparent background and multi-size icons
convert -density 256x256 -background transparent favicon.svg -define icon:auto-resize -colors 256 favicon.ico