Skip to content

Instantly share code, notes, and snippets.

@yan-shcherbakov
yan-shcherbakov / ReflectionClass.php
Last active August 29, 2015 13:57
Creating controller instance from route.
<?php
class Controller {
function __constructor() {
echo "Do Controller Stuff";
}
}
class AnotherController {
function __constructor() {
@yan-shcherbakov
yan-shcherbakov / gist:9472968
Created March 10, 2014 19:55
Create a thumbnail every few seconds
ffmpeg -i myvideo.avi -f image2 -vf fps=fps=1/5,scale="280:-1" img_%03d.jpg