Skip to content

Instantly share code, notes, and snippets.

View revolunet's full-sized avatar
🐫
Killing bugz

Julien Bouquillon revolunet

🐫
Killing bugz
View GitHub Profile
@revolunet
revolunet / TEMPLATE.glsl
Last active October 13, 2015 10:23 — forked from glslioadmin/TEMPLATE.glsl
GLSL.io Transition (v1)
#ifdef GL_ES
precision highp float;
#endif
// General parameters
uniform sampler2D from;
uniform sampler2D to;
uniform float progress;
uniform vec2 resolution;

Live Transcoding

This is a collection of working commandline examples to show how one could use FFMpeg and VLC for live transcoding of video streams. All examples have been tested on OSX 10.7.5 with FFMPeg 1.1.3 and VLC 2.0.5 in early 2013.

Documentation links

Play / Pause CSS3 Transition

Using CSS3, with help from Shak Dizzle, manage come up with a different icon transition, can be handy for web app's handling with multimedia such as audio and video.

A Pen by Paul Stewart on CodePen.

License.

@revolunet
revolunet / open-webinspector.applescript
Last active August 29, 2015 14:07 — forked from Thinkscape/open-webinspector.applescript
Ouvrir automatiquement Safari web inspector avec cordova run (french version)
#!/usr/bin/osascript
#
# ajouter ce script dans .cordova/hooks/after_run/safari-webinspector.applescript
# le rendre executable avec un chmod +x
#
# lancer l'app avec par exemple : cordova run ios --target="ipad"
#
# Name of the device as visible in Safari->Develop menu
@revolunet
revolunet / dabblet.css
Created August 2, 2013 23:00 — forked from LeaVerou/dabblet.css
Switch-style checkboxes.
/**
* Switch-style checkboxes.
* Inspired by Espresso’s “Tools” switch
*/
input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked { /* :checked here acting as a filter for older browsers */
position: absolute;
opacity: 0;
}