I hereby claim:
- I am fire- on github.
- I am fire (https://keybase.io/fire) on keybase.
- I have a public key whose fingerprint is 5553 5681 83BE 6D7A A65C 763F 6960 54FD 5C99 1060
To claim this, I am signing this object:
const [muted, unmuted] = [false, true]; | |
let Config = { | |
Software: { | |
Playback: { | |
"Device Name": "Speakers", | |
Levels: { | |
"Realtek HD Audio Output": [0.0, unmuted], | |
Microphone: [0.0, muted], | |
"Front Pink In": [-34.5, muted], | |
"Rear Blue In": [-15.0, muted], |
## change seek (-ss) and length (-t) values as appropriate. | |
## Preview with ffplay first. | |
ffmpeg -ss 00:00:13.80 -t 00:00:11.90 -i input.file -vf "crop=in_w:720,fps=50" -an -r 50 -f image2pipe -c:v ppm - | magick convert -set delay 2 - -delay 2 -layers Optimize output.file.gif |
/* main, full replace, dynamic kapchat. This will override all CSS in the default clear theme */ | |
html { | |
font-size: 24px; | |
/* everything scales with this font-size; default is 16px. | |
* Usage of `em` in font-size refers to the parent's font-size as 1em. | |
* Usage of `rem` refers to the root em value ( this ) instead. | |
* Use `rem` when possible. | |
*/ | |
width: 100%; | |
height: 100%; |
/* Dynamically scaling chat | |
* For use with https://nightdev.com/kapchat/ | |
* | |
* Main file – full replace. | |
* This should override all CSS in the default clear theme. | |
*/ | |
html { | |
font-size: 16px; | |
/* Everything scales with this font-size. | |
* Default if not manually set is 16px. |
### 0 | |
## Uses motion vectors to change the framerate of a file with motion blur instead of standard duplication or decimation | |
## Requires: | |
# ffmpeg | |
# vapoursynth http://www.vapoursynth.com/ | |
# ffms2 vs plugin https://github.com/FFMS/ffms2/blob/master/doc/ffms2-vapoursynth.md | |
# mvtools vs plugin https://github.com/dubhater/vapoursynth-mvtools | |
### 1 | |
## Snip the part you want, or use the whole file, either way | |
## if you do not need to snip, or to re-encode, omit this step. |
[0] | |
name=Keyboard+mouse | |
left=A|Left | |
right=D|Right | |
up=W|Up | |
down=S|Down | |
shoot=mb1 | |
ability=mb2 | |
take=E | |
switch=Q|Space |
I hereby claim:
To claim this, I am signing this object:
@echo off | |
:begin | |
if "%~1" == "" goto end | |
set "done=" | |
set "start_ts=" | |
set "end_ts=" | |
echo( | |
echo "Cutting: %~1" | |
echo( | |
set /p start_ts="Enter starting timestamp ( Format: hh:mm:ss.mus, eg: 00:38:32.570 ): " |
decoded = (function (string) { | |
try { | |
return decodeURIComponent(string); | |
} catch (e) { | |
return unescape(string); | |
} | |
})(encoded); |
var ticker = setTimeout(function tick() { | |
clearTimeout(ticker); | |
console.log('tick'); | |
ticker = setTimeout(tick, 1000); | |
}, 1000); |