Skip to content

Instantly share code, notes, and snippets.

View twxia's full-sized avatar
👨‍💻

Wei-Chieh Hsia twxia

👨‍💻
View GitHub Profile
@twxia
twxia / index.js
Created May 10, 2023 21:12 — forked from arccoza/index.js
JavaScript Callable Object using proxy
'use strict'
class Callable extends Function {
constructor() {
super()
return new Proxy(this, {
apply: (target, thisArg, args) => target._call(...args)
})
}
@twxia
twxia / stream_to_youtube.sh
Last active April 30, 2016 03:08 — forked from olasd/stream_to_youtube.sh
Stream video to youtube via ffmpeg (TCP version)
#! /bin/bash
#
# Diffusion youtube avec ffmpeg
# Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée.
VBR="2500k" # Bitrate de la vidéo en sortie
FPS="30" # FPS de la vidéo en sortie
QUAL="medium" # Preset de qualité FFMPEG
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube