How You Like Me Now?

June 10th, 2010  |  Published in Design  |  Comment

Always dug that KIA 2011 Sorento commercial; backed by the music “How You Like Me Now?” of The Heavy. I guess “the like” is coming from a well-picked audio piece that accentuates the character of not only the commercial, but the KIA Sorento’s playful/active and family-oriented lifestyle.

Anyways, enough reading and more watching/hearing, here’s the 30s spot.

Read the rest of this entry »

Pillows

June 9th, 2010  |  Published in Events  |  Comment

Chris Crutchfield documented DTLA’s event during International Pillow Fight Day this past April 3, 2010. Here’s his video, Pillows (Good Feeling).

Awesome, digging it. Especially the use of AE, the crispness, and soundtrack.

Read the rest of this entry »

The Sandpit

June 9th, 2010  |  Published in Design  |  Comment

In the spirit of my Small Worlds post, here’s a short by Sam O’Hare entitled, The Sandpit.

“A day in the life of New York City, in miniature. ”

Do note that for the best effect, you should see this piece in HD and full screen.

PS. If you are interested for a description of the shoot, camera, lenses and workflow, go here.

Fix Full Screen Issues by Video Embedder WordPress Plugin

June 9th, 2010  |  Published in Development  |  Comment

If you are having problems trying to display an embedded video(s) in your posts like me, then this might help you out. I usually embed videos from Hulu, Vimeo and YouTube mostly. But it’s been a problem trying to have the latter 2 display in fullscreen mode.

For Vimeo, the fullscreen icon/grpahic displays on the overlay of the video. But pressing on it, just pauses the video and nothing else. For YouTube, there was no fullscreen icon/graphic in the first place. I think that might have been caused by some code changes on YouTube’s end.

Meanwhile, it seems that the author of Video Embedder, Kristoffer Forsgren, hasn’t been able to update the plugin since 2009. So for those like me who still finds good use for the plugin, it was a let down not finding any new comments/updates since August of 2009.

Anyways, I proceeded to just snoop around and edit part of the code in the file video-embedder.php (in the plugin’s directory under wp-content/plugins/). Be sure to backup as usual before editing/updating code. To fix the Vimeo issue (and probably others too), find the function buildEmbed() block and apply the following updates (around line 600):

function buildEmbed($code)
{
    $options = get_option(videoembedder_options);
    $width = $options["video_width"];
    $height = $options["video_height"];
    $object = '';
    if(is_feed()) {
        $object  = '<object width="'.$width.'" height="'.$height.'">';
        $object .= '<param name="movie" value="'.$code.'"></param>';
        $object .= '<param name="allowFullScreen" value="true" />';
        $object .= '<param name="wmode" value="transparent"></param>';
        $object .= '<embed src="'.$code.'" type="application/x-shockwave-flash" wmode="transparent" allowfullscreen="true" width="'.$width.'" height="'.$height.'"></embed>';
        $object .= '</object>';
    } else {
        $object  = '<object type="application/x-shockwave-flash" width="'.$width.'" height="'.$height.'" data="'.$code.'">';
        $object .= '<param name="movie" value="'.$code.'" />';
        $object .= '<param name="allowFullScreen" value="true" />';
        $object .= '<param name="wmode" value="transparent" />';
        $object .= '<param name="quality" value="high" />';
        $object .= '</object>';
    }
    return $object;
}

To fix the YouTube issue, find the section commented “// Youtube” in the function videoembedder_embed() block. Then, just add the following highlighted snippet (around line 300):

$new = buildEmbed("http://www.youtube.com/v/".$video."&amp;rel=0&amp;fs=1")

I hope that helps. Hopefully, there’s an official update; or if you have found another plugin that is new and well-received by the WordPress community that does what Video Embedder do or better, please do let us know by posting a comment.

Update
I might as well add the following update to this post. If you would like to have the ability for your YouTube embedded videos to play at a higher quality and/or HD, just add the following snippet:

$new = buildEmbed("http://www.youtube.com/v/".$video."&amp;rel=0&amp;fs=1&amp;ap=%2526fmt%3D18")

Eyjafjallajökull Time Lapse

June 9th, 2010  |  Published in Design  |  Comment

Awesome time-lapse of Eyjafjallajökull eruption this past May by Sean Stiegemeier.