Oh, that’s kind of neat. Pretty impressive. Wait, what’s she… no way, one foot?? WHOA!
Q: Where do the dreams of desk toys take them?
A: To the Pacific Coast
Address Is Approximate by Tom Jenkins is a stop-motion adventure that globe trots in beautiful, imaginative ways, without ever leaving the desk.
Rocketboom publishes extensions to enable video thumbnails in Tumblr
Certainly a welcome enhancement - I’m just wondering why the Tumblr devs didn’t roll it out a long time ago.
/via rocketboomdev c/o rocketboom:
In today’s age, we don’t judge books by their covers. We judge them by their thumbnails. We also judge videos, e-books, software, and people the same way. Engaging an audience demands engaging them visually, no matter the medium. Some of our peers in the online video community recently noted that Tumblr allows the display of thumbnails for YouTube embeds on their dashboard, but other popular video sites, such as Vimeo and Blip.tv, are currently left out from showcasing their user videos with a thumbnail image.
Rocketboom R&D, the development unit of the Rocketboom network, has created a simple solution: a browser add-on that allows Tumblr users to see any video’s known thumbnail in their Tumblr dashboard. There’s no platform favoritism; this enables nearly every other common video platform the ability for thumbnail display. The add-on was created using Mag.ma, our own video aggregation service, to do thumbnail lookups for numerous video platforms with our simple API methods. The results? Uniformity for Tumblr users and creative support for content creators.
Get your browser add-on for Firefox, Chrome, or Safari, and visit the Tumblr Video Thumbnails add-on page for information, installation help, and more. Special thanks to our friends at Vimeo, Blip.tv, and Wreck & Salvage for their testing and support.
Fallback from Flash to HTML5 video for iPad/iPhone Support
In a recent post, Jeremy Keith explains how the “HTML5 video vs. Flash” dichotomy is nonsensical:
Frankly, I’m a little baffled by this supposed dichotomy because you don’t have to choose. The way that
videoworks, according to the spec, is for fallback content to be placed between the opening and closingvideotags. So you can go ahead and useobjectorembedor whatever you need to put your Flash video in your markup. Browsers that understand thevideoelement will use that while less capable browsers will play the Flash movie in theobjectelement (and because of the way theobjectelement works, you can put yet another layer of fallback content between the opening and closingobjecttags).
What this boils down to is: what are you trying to achieve?
If the answer is “cross-browser HTML5 video (with Flash fallback)”, then a solution along the lines of Kroc Camen’s Video for Everybody is perfectly suitable. By taking this approach, you are implicitly acknowledging that the Flash container is suboptimal for delivering video to the browser, and you will only engage it if necessary.
If the answer is “enabling existing Flash video to play on the iPad/iPhone”, then the above solution is overkill. By far, the most appropriate solution is to embed Flash video as usual (via object for most browsers, and embed for Firefox) and fall back to HTML5 video for Mobile Safari (iPad/iPhone/iPod Touch).
So, borrowing some conventions used by Jeremy in his write-up, here is an example of code that falls back from Flash to HTML5 video to a download link:
<object data="flashplayer.swf?video=file.flv" width="640" height="480">
<param name="movie" value="flashplayer.swf?video=file.flv">
<embed src="flashplayer.swf?video=file.flv" width="640" height="480" />
<video controls src="file.mp4" poster="file.jpg" width="640" height="480">
<p>Download video:<a href="file.mp4">MP4</a></p>
</video>
</object>
If you want to see this example in action, please view the demo.
The cost of this implementation is converting the existing FLV to an MP4, hosting the MP4, and adding the HTML5 video code at the end of the object tag. If you’ve previously been serving up Flash video, the only changes are that
- visitors on Mobile Safari will now be able to play your videos, and
- visitors without Flash who are not on Mobile Safari will now be able to download your videos.
If you’re happy with delivering Flash video to your visitors but don’t want to exclude Mobile Safari visitors, this is an extremely robust solution that lets you take a step forward without mandating a leap of faith (in HTML5 video performance/patents/support).
Fifty People One Question
Cool premise, cooler execution. This reminds me of some game show where a contestant would try to guess how a random person would answer a typically-obvious trivia question… which was also pretty cool as well.
A wonderful video of “GMail Art”. That stopdesign RSS feed really came through for me this time!



