This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Simplified version of kr0k0f4nt's script by nlac | |
* - no STD ange, just MIN and MAX | |
* - no pin mode selection, only one, new mode: pressing DOWN (video) button slowly rotates the camera downwards until MAX, pressing it again stops the movement. Pressing UP does the same just upwards until MIN angle. | |
* | |
* Original header comment: | |
* | |
* Bayangtoys X21 BGC Gimbal Control for Ardunio | |
* by kr0k0f4nt (2017) - Version 1.1 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This javascript snippet is able to split a merged audio track to parts by silence analysis | |
* It is based on ffmpeg (https://ffmpeg.org), especially on the silencedetect filter (https://ffmpeg.org/ffmpeg-filters.html#silencedetect) | |
* | |
* Assumptions: | |
* - nodejs is installed | |
* - ffmpeg is installed | |
* | |
* Usage: | |
* - fill the options object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* ffmpeg script generator for merged audio tracks on youtube | |
* @author nlac | |
* @desc Helps to intelligently split merged audio tracks (eg. https://www.youtube.com/watch?v=Lf6yNZPwREU) | |
* | |
* Usage: | |
* 1. download the merged track eg. using JDownloader | |
* 2. open the youtube page in a browser + paste this script into the js console | |
* 3. fill the variables in the first line (fullSong is the file name of the downloaded track) | |
* 4. run the script |