Posts Tagged ‘youtube’


03

Aug

Good alternatives to YouTube?

POSTED August 3rd, 2009 by James in Social Media | No Comments »

UK designer Karl Bata has taken the time to create a page that showcases the latest and greatest of what the web has to offer, streaming video.  The web site, which is located here (http://kareltests.co.uk/) takes a look at the different options you have when it comes to uploading a video to the web.

There are many pros and cons to each streaming site.  They include video lengths, resolution, distribution, copyright information, thumbnails, HD embedding, revenue sharing and many more things. From a developer standpoint, there are also other factors to look into when choosing an online video streaming service.  Will your embedded video be W3C compatible?  Does the embedded layout also look good?  Many of these questions are answerered in the guide.

Joel Williams of Blog Tech guy has also taken the time to create a quick cheat-sheet when it comes to selecting an online video sharing service.  You can check out his guide here.

As the trend of online video streaming continues to grow, more services will continue to push the bounds of this technology as we move more into digital distribution.  If you are a professional in this medium, it is always nice to take the time to find which service will work best for you.  I myself, personally, would stick to using Vimeo or YouTube.  I find them both to be user-friendly, and provide a wide audience of viewers to check out your work.

Tags: , , , ,

25

Aug

Embedding high resolution YouTube videos

POSTED August 25th, 2008 by James in Web Design | 1 Comment »

A lot of people realize that YouTube now features the option to watch certain videos in high resolution, but what a lot of people don’t know if that you can modify the embed code used for YouTube movies so that they will play back in high resolution as well. For instance, take this embed code for example:

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/TQc5d-A6×3E"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/TQc5d-A6×3E" type="/x-shockwave-flash" wmode="transparent" width="425″ height="344″></embed></object>

If you add the following code to the value url and embed src, it will display the video in high resolution…

&ap=%2526fmt%3D18

Once added, the code looks something like this…

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/TQc5d-A6×3E&ap=%2526fmt%3D18"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/TQc5d-A6×3E&ap=%2526fmt%3D1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="344"></embed></object>

Heres an example of it in action on one of my animations…

This is a very nifty find for people who post a lot of video blogs, podcasts, and such.

Tags: , , ,