Fullscreen HTML5 Video in Safari via JavaScript

In Safari 5 HTML5 videos played in the <video> tag can now be made fullscreen, if you’re using the default controls then a button is available, but if you’re overriding them with a custom control you can use:

webkitEnterFullScreen();

This needs to be called on the video tag element, for example, to fullscreen the first video tag on the page use:

document.getElementsByTagName('video')[0].webkitEnterFullscreen();

Photoshop – Content Aware Fill

Photoshop – Content Aware Fill

The somewhat magical feature in Photoshop CS5 is the Content Aware Fill feature, which is best explained in this Adobe demo video.

In about three clicks I was able to mask out the Eiffel Tower.

Before

Eiffel Tower

Eiffel Tower - myriadity (flickr)

After

Paris Skyline Minus Eiffel Tower

Ei-filled Tower

Not perfect, but definitely a good start! I’m sure once I get used to the best way of using it, it’ll become a life saver!

The Adobe Creative Suite 5 demo is available as a 30 day trial, so go and have a play!