Tagged with “video”…
Jean-François by Tom Haugomat & Bruno Mangyoku
2 months ago on Friday, December 2nd, 2011 at 12:02 PM | Permalink
Chonko Animation 2011 (via Yewknee)
2 months ago on Sunday, November 27th, 2011 at 9:24 AM | Permalink
Interview with Shaun Inman on Apps
2 months ago on Tuesday, November 22nd, 2011 at 4:35 PM | Permalink
Liam Neeson - Life’s Too Short
(via Keeley)
3 months ago on Friday, November 11th, 2011 at 10:18 AM | Permalink
Uploading YouTube Videos with the PHP Client Library
3 months ago on Thursday, November 10th, 2011 at 11:35 PM | Permalink
Don’t Stop Believin’ (NES Remake in FamiTracker)
3 months ago on Monday, November 7th, 2011 at 11:59 AM | Permalink
Codify is an iOS App that lets you create games and simulations on your iPad.
3 months ago on Friday, November 4th, 2011 at 5:32 PM | Permalink
Ready Steady Bang - 30 Ways
Just downloaded this for the iPad and would recommend you do the same.
4 months ago on Wednesday, October 19th, 2011 at 5:19 PM | Permalink
Rendering Synthetic Objects into Legacy Photographs
(via Glasshoff)
4 months ago on Thursday, October 13th, 2011 at 6:01 PM | Permalink
Resizing a Video Player within a Responsive Web Design
function resizeVideo() {
var vid = document.getElementById("vimeo"),
vidParent = vid.parentNode,
resizeW = vidParent.offsetWidth,
resizeH = Math.ceil((resizeW/16) * 9);
vid.setAttribute("width", resizeW);
vid.setAttribute("height", resizeH);
}
window.onresize = resizeVideo;
window.onload = resizeVideo;
4 months ago on Wednesday, October 12th, 2011 at 11:26 AM / Permalink