Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
| <!--[if mso]> | |
| <center> | |
| <table><tr><td width="580"> | |
| <![endif]--> | |
| <div style="max-width:580px; margin:0 auto;"> | |
| <p>This text will be centered and constrained to 580 pixels even on Outlook which does not support max-width CSS</p> | |
| </div> | |
| <!--[if mso]> |
| // ======================= | |
| // = WRAP IMAGES IN DIVS = | |
| // ======================= | |
| function wrapImagesInDiv($content) { | |
| $pattern = '/(<img[^>]*class=\"([^>]*?)\"[^>]*>)/i'; | |
| $replacement = '<div class="image-container $2">$1</div>'; | |
| $content = preg_replace($pattern, $replacement, $content); | |
| return $content; | |
| } |
| function wpautop_fix( $content ){ | |
| $content = preg_replace('/<p[^>]*>(<img[^>]*>)<\\/p[^>]*>/i', '$1', $content); | |
| return $content; | |
| } | |
| add_filter('the_content', 'wpautop_fix'); |
Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
⇐ back to the gist-blog at jrw.fi
Or, 16 cool things you may not have known your stylesheets could do. I'd rather have kept it to a nice round number like 10, but they just kept coming. Sorry.
I've been using SCSS/SASS for most of my styling work since 2009, and I'm a huge fan of Compass (by the great @chriseppstein). It really helped many of us through the darkest cross-browser crap. Even though browsers are increasingly playing nice with CSS, another problem has become very topical: managing the complexity in stylesheets as our in-browser apps get larger and larger. SCSS is an indispensable tool for dealing with this.
This isn't an introduction to the language by a long shot; many things probably won't make sense unless you have some SCSS under your belt already. That said, if you're not yet comfy with the basics, check out the aweso