Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
<?php | |
use SilverStripe\ORM\DataObject; | |
use SilverStripe\Forms\DropdownField; | |
use SilverStripe\ORM\Filters\ExactMatchFilter; | |
class Project extends DataObject | |
{ | |
private static $db = [ | |
'Title' => 'Varchar(200)', |
<IfModule pagespeed_module> | |
ModPagespeed on | |
ModPagespeedDisallow "*/admin/*" | |
AddOutputFilterByType MOD_PAGESPEED_OUTPUT_FILTER text/html | |
ModPagespeedLowercaseHtmlNames on | |
ModPagespeedEnableFilters prioritize_critical_css,defer_javascript | |
ModPagespeedEnableFilters convert_jpeg_to_webp,inline_preview_images | |
ModPagespeedEnableFilters collapse_whitespace,remove_comments | |
</IfModule> |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: phd | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: phabricator | |
# Description: manages phd | |
### END INIT INFO |
A very basic starter template with fundamental HTML5 markup -- only the basics.
Based on HTML5 Bones | http://html5bones.com
This uses Twitter Bootstrap classes for CodeIgniter pagination.
Drop this file into application/config
.