Getting video out to a Web-based audience can been a daunting prospect. As was discussed in class, one of the fundamental challenges is figuring out which video player(s) your audience is using. Do they have Real Player, Windows Media Player, QuickTime? Watching the video has not always been an easy task either, as Ed Helms shows us in this 2003 video from Comedy Central. While very tongue-in-cheek, the frustration he encounters was not uncommon for many early video users on the Web. For that matter, I encountered it in class just the other day, ironically, trying to show this very video. In addition to video formats for specific players, one also has to be concerned with CODECs. The letters stand for encode-decode and refer to the algorithm used to make the video more compact.
Here's the problem, uncompressed broadcast video is around 2GB/minute. That translates to about 180GB for a 90 minute movie--and that's standard definition, not high definition. MiniDV cuts this down to around 250MB per minute. While the drive space is definitely an issue for editing, it becomes critical for distribution. DVD, DBS, and digital cable all rely on CODECS to get video to you. CODECS are all the more important when you start to think about video for the Web as not only do need to worry about what player the user has, but whether or not the user has the correct CODEC--and there are a wide variety of these.
Things have gotten a bit better over the last few years, though CODECS can still wreck havoc for folks, particularly on downloaded videos. One of the tools that has helped with this is Flash. As of December 2007, some version of Flash is installed on around 98 percent of computers used online. In addition, Flash Player works on Microsoft, Apple, and Linux operating systems, as well as on a host of mobile devices. This makes it extremely flexible. Adobe offers a nice introduction to Flash Video that you should take a look at. The ubiquity of Flash is one of the things that has helped make it a popular format for YouTube and other video sites including many network sites (couldn't resist the Heroes link).
While YouTube is pretty cool (and we'll be talking about it more in another blog entry) iTunes is another option for video distribution and in many ways has helped revolutionize audio and video on the Web. If you've used iTunes much, you've probably heard of podcasts. These are video or audio shows that you can subscribe to using iTunes. You can find one for almost any topic these days. What makes this work is RSS (Real Simple Syndication). BlipTV has a nice discussion of how RSS works for the end user. RSS works with things other than podcasts. If you use http://my.yahoo.com, http://news.google.com or any other news aggregator, you are probably relying on RSS. For the next part of the blog, I'm going to talk you through an RSS feed. We'll go over this in class, but you really need to look at it ahead of time.
The key to RSS is setting up an XML document. You'll be setting up two types RSS files for your podcast, one for to create a list of your podcast files for use in a Web browser and the second so that someone can subscribe to your podcast using iTunes. Denis Sureau offers a nice discussion of the specific parts of a standard RSS feed. You'll want to make sure you use RSS 2.0.* If you want to check your RSS feed to make sure it is error free, open the XML file you created it Firefox--it has a debug feature.
A regular RSS feed and the feed you use for an iTunes subscription are a bit different. Standard RSS is transmitted using HTTP, while the RSS feed you use for iTunes uses ITPC. Creating content for iTunes also gives you the ability to add more metadata to your RSS document.
Here's the RSS feed I used for people that want to subscribe to a podcast I had using iTunes. You'll notice a tag that begins with. This is a remark tag and allows me to leave notes to you in the code explaining what things do. Hopefully it will help.
<?xml version= "1.0" encoding= "UTF-8"?>
<!-- This code is commented to help explain which section does what. Comments describe the code below them -->
<!-- Some of the text is from the Apple web site http://www.apple.com/itunes/store/podcaststechspecs.html-->
<!--this file does not contain all possible iTunes tags-->
<!-- rss xmlns - points to a document that defines what each of the iTunes tags-->
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version= "2.0">
<channel>
<!-- Time before the feed refreshes in minutes-->
<ttl>60</ttl>
<!-- The name of the podcast series that shows up in the Podcast column-->
<title>Adventures in EMAC</title>
<!-- website link and arrow in Name column-->
<link>http://www.depts.ttu.edu/masscom/programs/emac/index.php</link>
<language>en-us</language>
<!-- copyright information is not visible in iTunes 2217 is phonographic rights and A9 is the copyright symbol-->
<copyright>℗ & © 2007 College of Mass Communications, Texas Tech University</copyright>
<!-- Text in the Description column-->
<itunes:subtitle>EMAC 4300</itunes:subtitle>
<!-- Text in the Artist column -->
<itunes:author>Ed Youngblood</itunes:author>
<!--when the circled i in Description column is clicked in the iTunes store-->
<itunes:summary>Podcast for students in EMAC 4300</itunes:summary>
<!-- similar to above, but describes the RSS channel-these two should probably be the same-->
<description> Podcast for students in EMAC 4300.</description>
<!-- This is a section and is composed of two tags which designate the name and email address of the person or persons associated with the podcast-->
<itunes:owner>
<itunes:name>College of Mass Communications, Texas Tech University</itunes:name>
<itunes:email>ed.youngblood@ttu.edu</itunes:email>
</itunes:owner>
<!-- The location of the album art-->
<itunes:image href="http://www.depts.ttu.edu/masscom/images/masscommofficiallogo.jpg" />
<!-- Category column and in iTunes Music Store Browse-->
<itunes:category text="Education">
<itunes:category text="Higher Education"/>
</itunes:category>
<itunes:category text="Mass Communications"/>
<!-- An individual podcast item-->
<item>
<!-- Title of the podcast episode that shows up in the Podcast column-->
<title>Adventures in EMAC Vol. 1</title>
<itunes:author>Ed Youngblood</itunes:author>
<!-- Text in the Description column-->
<itunes:subtitle>EMAC 4300 Vol. 1</itunes:subtitle>
<!--when the circled i in Description column is clicked in the iTunes store-->
<itunes:summary></itunes:summary>
<!-- Location of the audio or video file-See Apple link above for more file type information. Length is total number of bytes. In thisw case 2.9MB. See total bytes in file infor-->
<enclosure url="itpc://youngblood.mcom.ttu.edu/~nyoungbl/emac4300_1.mp3" length="2946723" type="audio/mpeg" />
<pubDate>Monday, September 11, 2007, 21:00:00 GMT</pubDate>
<!-- Length of podcast in hours:minutes:seconds-->
<itunes:duration>3:04</itunes:duration>
<!-- Searchable but not visable-->
<itunes:keywords>Mass Communications</itunes:keywords>
</item>
</channel>
</rss>
For the reading response, I would like you to address the following:
1) Think back over the video you have consumed over the last 1-2 weeks. How much of it was Web-based vs. TV vs. DVD/VHS? Where do you go to get specific types of video entertainment/information?
2) Thinking back to Ed Helm's video from almost four years ago, how easy do you think it is now for users looking for online video. How do you think the new media landscape has changed or stayed the same?