-
You need
ffmpeginstalled. If you have Homebrew installed on a Mac, you can do this by running:brew install ffmpeg -
Put
process.shin directory containing.oggfiles. -
Ensure it's executable:
| // | |
| // @author Daryl Roberts | |
| // @license MIT | |
| // @url https://gist.github.com/sorahn/7915cae6c820e351158f | |
| // | |
| @mixin side-shadow($shadow, $side, $base-size: 50px) { | |
| // If you need to make shadows larger than 50px, you can | |
| // override the base size. |
| // ---- | |
| // libsass (v3.1.0) | |
| // ---- | |
| // | |
| // @author Daryl Roberts | |
| // @license MIT | |
| // | |
| @mixin side-shadow($shadow, $side, $base-size: 50px) { |
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.1) | |
| // ---- | |
| @mixin appearance($var) { | |
| -webkit-appearance: $var; | |
| -moz-appearance: $var; | |
| appearance: $var; | |
| } |
| // ---- | |
| // Sass (v3.4.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| // Ratings. | |
| $ranks-color: gold !default; | |
| @mixin clearfix() { | |
| content: "clearfix"; | |
| } |
| # Parse ini style numbers in strings. | |
| # hex = '$123ABC' | |
| # dec = '123456' | |
| String::getHex = -> parseInt @, 16 | |
| String::iniHex = -> if "#{@.charAt 0}" is '$' then do "#{@.slice 1}".getHex else +@ |
| /** | |
| * css gradient for triangle shaped arrow (SO) | |
| * http://stackoverflow.com/q/12431596/1397351 | |
| */ | |
| .shape { | |
| float: left; | |
| position: relative; | |
| border: 1px solid #ccc; | |
| border-right: none; | |
| width: 240px; height: 80px; |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | |
| <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.no-icons.min.css" rel="stylesheet"> | |
| <link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet"> | |
| <style> | |
| </style> | |
| <!-- none of the rest of the tags are required for html5, wee! --> | |
| <!-- body --> | |