<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>QICBoy - editing tag</title>
  <link>http://www.qicboy.com:80/tags/editing/</link>
  <description>Hippopotomonstrosesquippedaliophiliac</description>
  <language>en</language>
  <copyright>qicboy</copyright>
  <lastBuildDate>Fri, 31 Dec 2010 00:02:00 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  <image>
    <url>http://www.qicboy.com/themes/user-default/favicon.png</url>
    <title>QICBoy</title>
    <link>http://www.qicboy.com:80/</link>
  </image>
  
  
  <item>
    <title>Convert audio between Microsoft and Apple</title>
    <link>http://www.qicboy.com:80/2007/10/23/1193148000000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com:80/files/2007/10/23/mp3.jpg&#034;&gt;
Here are a couple scripts to convert an iTunes audio file (m4a) to the ubiquitous mp3 format.  The first script converts the file to a wav, the second one converts the wav to an mp3.  The supporting software are nice because they&#039;re portable, they don&#039;t require you to install them.   The scripts should work on m4b files as well.
&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Download and extract &lt;a href=&#034;http://www3.mplayerhq.hu/MPlayer/releases/win32/MPlayer-mingw32-1.0rc1.zip&#034;&gt;mplayer&lt;/a&gt;. 
&lt;/li&gt;

&lt;li&gt;Download and extract &lt;a href=&#034;http://mitiok.maresweb.org/lame-3.97.zip&#034;&gt;lame&lt;/a&gt; into the mplayer directory.
&lt;/li&gt;

&lt;li&gt;Download &lt;a href=&#034;http://www.qicboy.com:80/files/2007/10/23/1m4a2wav.bat&#034;&gt;1m4a2wav.bat&lt;/a&gt; and &lt;a href=&#034;http://www.qicboy.com:80/files/2007/10/23/2wav2mp3.bat&#034;&gt;2wav2mp3.bat&lt;/a&gt; into the mplayer directory.
&lt;/li&gt;

&lt;li&gt;Drop the mp4 onto the first script (1m4a2wav.bat).
&lt;/li&gt;

&lt;li&gt;Drop the resulting wav file onto the second script (2wav2mp3.bat).
&lt;/li&gt;

&lt;/ol&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
@%~d1
@cd %~p1
&#034;%~d0\%~p0mplayer&#034; -ao pcm %1 -ao pcm:file=&#034;%~n1.wav&#034; 
@pause
&lt;/pre&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&#034;%~d0\%~p0lame&#034; --preset standard %1
@pause
&lt;/pre&gt;

        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com:80/2007/10/23/1193148000000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com:80/2007/10/23/1193148000000.html</guid>
    <pubDate>Tue, 23 Oct 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Convert video between Microsoft and Apple</title>
    <link>http://www.qicboy.com:80/2007/09/17/1190037600001.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com:80/files/2007/09/17/mplayer.jpg&#034;/&gt;
This is probably more information than anyone would care to know.  I&#039;m posting it in case anyone&#039;s interested in the geeky details of using MPlayer to convert to and from MOV files.  It would be far easier to simply download either &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/15/mov2avi.bat&#034;&gt;mov2avi.bat&lt;/a&gt; or &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/15/wmv2mp4.bat&#034;&gt;wmv2mp4.bat&lt;/a&gt; and use them with the instructions in the &#034;&lt;a href=&#034;http://www.qicboy.com/2007/06/10/1181492400000.html&#034;&gt;Editing mov files with Windows Movie Maker&lt;/a&gt;&#034; or &#034;&lt;a href=&#034;http://www.qicboy.com/2007/06/15/1181916000000.html&#034;&gt;Podcast primer&lt;/a&gt;&#034; posts respectively.

&lt;p&gt;
This command converts from the QuickTime format into something that can be used by Windows Movie Maker.&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
mencoder -oac pcm -ovc lavc -ffourcc DIVX -o test.avi test.mov
&lt;/pre&gt;

&lt;p&gt;This command converts from The Windows Movie Maker fromat into something that can be used by iTunes. It&#039;s useful if the file you&#039;re creating is to be used in a podcast.&lt;/p&gt;
&lt;pre class=&#034;codeSample&#034;&gt;
mencoder -oac lavc -ovc lavc -lavcopts aglobal=1:vglobal=1:vcodec=mpeg4:acodec=aac -of lavf -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -o test.mp4 test.wmv 
&lt;/pre&gt;



&lt;p&gt;
If you need more info on batch file parameters, you can find out more from the &lt;a target=&#034;_blank&#034; href=&#034;http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx&#034;&gt;Microsoft&lt;/a&gt; site.
&lt;/p&gt;

&lt;p&gt;See also: 
&lt;a href=&#034;http://www.qicboy.com/2007/06/15/1181916000000.html&#034;&gt;Podcast primer&lt;/a&gt;, 
&lt;a href=&#034;http://www.qicboy.com/2007/06/08/1181345460000.html&#034;&gt;Movie watermark&lt;/a&gt;,
&lt;a href=&#034;http://www.qicboy.com/2007/06/10/1181492400000.html&#034;&gt;Editing mov files with Windows Movie Maker&lt;/a&gt;
&lt;/p&gt;
        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com:80/2007/09/17/1190037600001.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com:80/2007/09/17/1190037600001.html</guid>
    <pubDate>Mon, 17 Sep 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Podcast primer</title>
    <link>http://www.qicboy.com:80/2007/06/15/1181916000000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com:80/files/2007/06/15/podcast.jpg&#034;/&gt;
In previous articles I&#039;ve talked about converting QuickTime movies (mov files) so that they can be used in Windows Movie Maker (WMM).  WMM creates ouputs Windows Media Video (WMV) files.  You can upload the wmv to YouTube or blip.tv to share your video with other people.  If you have a blog, you can then add the code to a post.  Otherwise you can copy the URL and send it to friends in an email.  
&lt;/p&gt;

&lt;p&gt;
If you&#039;ve subscribed to podcasts, you know that the video or audio files are delivered to your machine (and possibly your mp3 player) automatically whenever the author publishes a new episode.  You can do the same things with your videos.
&lt;/p&gt;

&lt;p&gt;
An easy way to manage your podcast is by creating a blip.tv account.  YouTube wants you to watch movies using their player so you&#039;ll have a hard time trying to manage a podcast there.  When you create an account at blip.tv you&#039;ll be given a &#034;Show&#034; page.  This page contains a &#034;Subscribe&#034; section which publishes your videos as a podcast.  Visitors will have 3 ways to subscribe, with iTunes, Windows Media Center and Democracy Player.  
&lt;/p&gt;

&lt;p&gt;If you&#039;re uploading your videos as wmv files and you&#039;re concerned about making the video available to all 3 audiences (including iTunes) you need to convert your video to a format that iTunes understands.
&lt;/p&gt;

&lt;p&gt;
To convert the wmv file, you&#039;re going to need third party software.  I use MPlayer because its free, fast, powerful and it doesn&#039;t need to install itself on your system.  Download MPlayer and extract the files onto your machine. 
I&#039;ve written some scripts to make converting the files easier so you&#039;ll need to download those into the MPlayer folder as well.  Take the files you want to convert and drag them one at a time onto wmv2mp4.bat.  This will create a file with an mp4 extension.  Upload that file to blip.tv.  Blip.tv allows you to store the same file in more than one format.  If you&#039;ve already uploaded the file to blip.tv in another format, &#034;Add additional format&#034; from the edit page and upload the files from there.  I usually use &#034;Portable (iPod)&#034; as the format.

&lt;ol&gt;

&lt;li&gt;Download &lt;a href=&#034;http://www3.mplayerhq.hu/MPlayer/releases/win32/MPlayer-mingw32-1.0rc1.zip&#034;&gt;
MPlayer&lt;/a&gt; and extract the files.&lt;/li&gt;

&lt;li&gt;Download &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/15/mov2avi.bat&#034;&gt;mov2avi.bat&lt;/a&gt; and &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/15/wmv2mp4.bat&#034;&gt;wmv2mp4.bat&lt;/a&gt; into the MPlayer directory.&lt;/li&gt;

&lt;li&gt;Drop the wmv files (it can be located anywhere) one at a time onto wmv2mp4.bat&lt;/li&gt;

&lt;li&gt;Upload the file to blip.tv.&lt;/li&gt;

&lt;/ol&gt;
&lt;/p&gt;

&lt;p&gt;
Now that your podcast is ready, you can add it to your blog.  You can let everyone know about your iTunes podcast by copying and pasting the following code.  You&#039;ll need to change qicboy.blip.tv to the name of your show.  You can find this by going to your show page and copying the URL from the address bar.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&#034;pcast://qicboy.blip.tv/?file_type=mov,mpeg4,mp4,m4v,mp3&amp;skin=rss&#034;&gt;
&lt;img width=&#034;186px&#034; height=&#034;47px&#034; src=&#034;http://qicboy.blip.tv/skin/blipnew/icons/sub_itunes.gif&#034;/&gt;
&lt;/a&gt;
&lt;/p&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&amp;lt;a href=&#034;pcast://qicboy.blip.tv/?file_type=mov,mpeg4,mp4,m4v,mp3&amp;skin=rss&#034;&gt;
&amp;lt;img width=&#034;186px&#034; height=&#034;47px&#034; src=&#034;http://qicboy.blip.tv/skin/blipnew/icons/sub_itunes.gif&#034;/&gt;
&amp;lt;/a&gt;
&lt;/pre&gt;

&lt;!--&lt;p&gt;You may have noticed that, in an early article, I suggested downloading a piece of software called MP4Cam2AVI.  That software is very handy for converting files so that they can be used in Windows Movie Maker.  If you&#039;re using MPlayer, there&#039;s no sense in using two different pieces of software.  You can use MPlayer to make your iTunes files and you can also use it to make the files you use in Windows Movie Maker.  So you can replace MP4Cam2AVI entirely if you like.  Instead of using MP4Cam2AVI, simply drop the original mov file onto mov2avi.bat.
&lt;/p&gt;--&gt;

&lt;p&gt;
See also: &lt;a href=&#034;http://www.qicboy.com:80/2007/06/08/1181345460000.html&#034;&gt;Movie watermark&lt;/a&gt;, &lt;a href=&#034;http://www.qicboy.com:80/2007/06/10/1181492400000.html&#034;&gt;Editing mov files with Windows Movie Maker&lt;/a&gt;, &lt;a href=&#034;http://www.qicboy.com:80/2006/12/11/1165849800000.html&#034;&gt;Podcasting 101&lt;/a&gt;, &lt;a href=&#034;http://www.qicboy.com:80/2007/09/17/1190037600001.html&#034;&gt;MPlayer invocations&lt;/a&gt;

        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com:80/2007/06/15/1181916000000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com:80/2007/06/15/1181916000000.html</guid>
    <pubDate>Fri, 15 Jun 2007 14:00:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Editing mov files with Windows Movie Maker</title>
    <link>http://www.qicboy.com:80/2007/06/10/1181492400000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com:80/files/2007/06/10/mov.jpg&#034;/&gt;
If you own a point and click camera that records video, there&#039;s a good chance that it saves the files as QuickTime Movies (mov files).  Unfortunately, &lt;a target=&#034;_blank&#034; href=&#034;http://www.microsoft.com/windowsxp/downloads/updates/moviemaker2.mspx&#034;&gt;Windows Movie Maker&lt;/a&gt; (free) doesn&#039;t read that file format. If you want to edit the files (to &lt;a href=&#034;http://www.qicboy.com/2007/06/08/1181345460000.html&#034;&gt;add a watermark&lt;/a&gt; for example) then you&#039;re going to have to convert the files first before you can edit them.  Here&#039;s what you have to do.&lt;/p&gt;

&lt;!--&lt;p&gt;
You&#039;re going to need a program called &lt;a target=&#034;_blank&#034;
 href=&#034;http://mp4cam2avi.sourceforge.net/&#034;&gt;MP4Cam2AVI&lt;/a&gt;.  You can &lt;a target=&#034;_blank&#034; href=&#034;http://downloads.sourceforge.net/mp4cam2avi/MP4Cam2AVI_v2.71.zip?modtime=1181205878&amp;big_mirror=0&#034;&gt;download&lt;/a&gt;  it for free. It doesn&#039;t use an installer.  Unzip the files and run it from the extracted folder.
&lt;/p&gt;--&gt;

&lt;p&gt;
You&#039;re going to need a program called MPlayer.  You can download it for free. It doesn&#039;t use an installer.  Unzip the files and run it from the extracted folder.
&lt;/p&gt;

&lt;ol&gt;

&lt;li&gt;Download &lt;a href=&#034;http://www.mplayerhq.hu/design7/dload.html&#034;&gt;
MPlayer&lt;/a&gt; and extract the files.&lt;/li&gt;

&lt;li&gt;Download &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/15/mov2avi.bat&#034;&gt;mov2avi.bat&lt;/a&gt; and &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/15/wmv2mp4.bat&#034;&gt;wmv2mp4.bat&lt;/a&gt; into the MPlayer directory.&lt;/li&gt;

&lt;li&gt;Drop the mov files (it can be located anywhere) one at a time onto mov2avi.bat&lt;/li&gt;

&lt;/ol&gt;


&lt;!--&lt;li&gt;Run Mp4Cam2AVI.exe&lt;/li&gt;
&lt;li&gt;Use the left pane to navigate to the source mov file, select the drive, folder and then the file all in the left pane&lt;/li&gt;
&lt;li&gt;Press the start button in the right pane.&lt;/li&gt;
&lt;li&gt;The program will create a file called VideoOut.avi in the same folder. You can you that file in Windows Movie Maker.&lt;/li&gt;
&lt;/ol&gt;--&gt;

&lt;p&gt;See also: &lt;a href=./2007/06/15/1181916000000.html&#034;&gt;Podcast primer&lt;/a&gt;, &lt;a href=&#034;http://www.qicboy.com:80/2007/06/08/1181345460000.html&#034;&gt;Movie watermark&lt;/a&gt;, &lt;a href=&#034;http://www.qicboy.com:80/2007/09/17/1190037600001.html&#034;&gt;MPlayer invocations&lt;/a&gt;
        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com:80/2007/06/10/1181492400000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com:80/2007/06/10/1181492400000.html</guid>
    <pubDate>Sun, 10 Jun 2007 16:20:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Movie watermark</title>
    <link>http://www.qicboy.com:80/2007/06/08/1181345460000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com:80/files/2007/06/08/watermark.jpg&#034;/&gt;
Did you know that you can add watermarks to your movies using Windows Movie Maker?  Oh yes, it&#039;s true (&lt;a href=&#034;http://www.qicboy.com:80/2007/06/08/1181349840000.html&#034;&gt;see for yourself&lt;/a&gt;).  You just need a minor hack to the program.  All you have to do is add an xml file and an image file to your installation. The two files need to go into &#034;C:\Program Files\Movie Maker\Shared\AddOnTFX&#034;. You&#039;ll find them in the &lt;a href=&#034;http://www.qicboy.com:80/files/2007/06/08/AddOnTFX.zip&#034;&gt;AddOnTFX.zip&lt;/a&gt; file.  You&#039;ll need to restart Windows Movie Maker for any changes to take effect. To add the watermark to your movie, follow these steps.
&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Start Windows Movie Maker.&lt;/li&gt;
&lt;li&gt;Under the &#034;Movie Tasks&#034; pane, select &#034;Make titles or credits&#034;. The pane is on the left hand side.  If you don&#039;t see it, select &#034;View | Task Pane&#034;.&lt;/li&gt;
&lt;li&gt;Select &#034;Add title on the selected clip in the timeline.&#034;  This should be the third option in the list.&lt;/li&gt;
&lt;li&gt;Enter a single space in one of the text boxes and select &#034;Change the title animation&#034;.&lt;/li&gt;
&lt;li&gt;Select &#034;Watermark&#034; from the list. This option is only in there if you&#039;ve properly installed the AddOnTFX.zip files.&lt;/li&gt;
&lt;li&gt;Select &#034;Done, add title to movie&#034;.&lt;/li&gt;
&lt;li&gt;In your storyboard you should now see a track in the &#034;title Overlay&#034; section.  You will stretch this track for the length of your film.  If the storyboard isn&#039;t visible, select &#034;View | Storyboard&#034;.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;
To customize your watermark simply replace watermark.png.  If something breaks when you&#039;re customizing your own watermark, replace the files with the ones from AddOnTFX.zip and try again.
&lt;/p&gt;

&lt;p&gt;
If you&#039;re feeling truly bold and you want to resize the watermark, you&#039;ll need to change the value of LogoRec in the xml file.  Here&#039;s a little program to calculate that value for you.
&lt;/p&gt;

&lt;script&gt;
function round (x) {
  return Math.round(x*10000)/10000;
}
function calc() {
  imagew = document.logorect.imagew.value;
  imageh = document.logorect.imageh.value;
  moview = document.logorect.moview.value;
  movieh = document.logorect.movieh.value;
  x = round( (moview - imagew) / moview );
  y = round( (movieh - imageh) / movieh );
  width = round( imagew / moview );
  height = round( imageh / movieh );
  
  document.logorect.result.value = x + &#034; &#034; + y + &#034; &#034; + width + &#034; &#034; + height;
}
&lt;/script&gt;

&lt;form name=&#034;logorect&#034;&gt;
&lt;p&gt;
&lt;input type=&#034;text&#034; name=&#034;imagew&#034; size=&#034;3&#034;  value=&#034;89&#034;&gt;ImageWidth&lt;br/&gt;
&lt;input type=&#034;text&#034; name=&#034;imageh&#034; size=&#034;3&#034;  value=&#034;42&#034;&gt;ImageHeight&lt;br/&gt;
&lt;input type=&#034;text&#034; name=&#034;moview&#034; size=&#034;3&#034; value=&#034;320&#034;&gt;MovieWidth&lt;br/&gt;
&lt;input type=&#034;text&#034; name=&#034;movieh&#034; size=&#034;3&#034; value=&#034;240&#034;&gt;MovieHeight&lt;br/&gt;
&lt;input type=&#034;button&#034; value=&#034;calc&#034; onclick=&#034;calc();&#034;&gt;&lt;br/&gt;
&lt;input type=&#034;text&#034; name=&#034;result&#034; size=&#034;25&#034; readonly=&#034;readonly&#034;&gt;LogoRect
&lt;/p&gt;
&lt;/form&gt;

&lt;p&gt;See also: 
&lt;a href=&#034;http://www.qicboy.com/2007/06/15/1181916000000.html&#034;&gt;Podcast primer&lt;/a&gt;, 
&lt;a href=&#034;http://www.qicboy.com/2007/06/10/1181492400000.html&#034;&gt;Editing mov files with Windows Movie Maker&lt;/a&gt;
        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com:80/2007/06/08/1181345460000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com:80/2007/06/08/1181345460000.html</guid>
    <pubDate>Fri, 08 Jun 2007 23:31:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Podcasting 101</title>
    <link>http://www.qicboy.com:80/2006/12/11/1165849800000.html</link>
    
      
        <description>
          &lt;p&gt;&lt;img src=&#034;http://www.qicboy.com:80/files/2006/12/11/podcast.jpg&#034;/&gt;
Podcasting is pretty straight forward.  All you need is a web server to store your files, an mp3 files and a RSS file.
&lt;/p&gt;

&lt;p&gt;
We have an &lt;a target=&#034;_blank&#034; href=&#034;http://www.lensvisions.com/&#034;&gt;instructor&lt;/a&gt; at Chabot who records his classes so he can publish them online. When I heard this I nearly fell over backwards. How cools is that! The mp3&#039;s are all available on his web site but he doesnt have any way of automatically notifying his students when a new mp3 is available.  Podcasting is the perfect solution to this.  I&#039;ve written a simple RSS file to solve this problem.  Now you can actually &lt;a href=&#034;pcast://www.qicboy.com/files/2006/12/11/20061211-1-1.xml&#034;&gt;SUBSCRIBE&lt;/a&gt;
to his podcast.
&lt;/p&gt;

&lt;p&gt;
I&#039;m not actually hosting the mp3s on my site, the 
&lt;a target=&#034;_blank&#034; href=&#034;http://www.qicboy.com/files/2006/12/11/20061211-1-1.xml&#034;&gt;RSS&lt;/a&gt; file I created points to the mp3s on his site. You can use this as a template and search online for additional tags to add to your own RSS file. I&#039;ve added minimal information, just enough to be a valid file and populate iTunes with a little information on the podcast.
The file breaks down something like this.  The top of the file includes a description of the podcast, a link to more information about the podcast and a title for the podcast.  Then there are a series of &#034;items&#034;.  Each item includes a title, a guid (to uniquely identify the item), a link to the mp3 file, and a description of that item.
&lt;/p&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&lt;?xml version=&#034;1.0&#034; encoding=&#034;UTF-8&#034;?&gt;
&amp;lt;rss version=&#034;2.0&#034;&gt;
  
  &amp;lt;channel&gt;
    &amp;lt;description&gt;Podcast for Chabot College&#039;s Photo 50&amp;lt;/description&gt;
    &amp;lt;link&gt;http://lensvisions.glamorfun.com&amp;lt;/link&gt;
    &amp;lt;title&gt;Photo 50 at Chabot&amp;lt;/title&gt;

    &amp;lt;item&gt;
      &amp;lt;title&gt;Class 1 lecture&amp;lt;/title&gt;
      &amp;lt;guid&gt;http://lensvisions.glamorfun.com/Photo50_1/Archive/Photo50_Aug_29_2006.mp3&amp;lt;/guid&gt;
      &amp;lt;enclosure url=&#034;http://lensvisions.glamorfun.com/Photo50_1/Archive/Photo50_Aug_29_2006.mp3&#034; length=&#034;10411569&#034; type=&#034;audio/mpeg&#034;/&gt;
      &amp;lt;description&gt; This is the class lecture for the first day of class.&amp;lt;/description&gt;
    &amp;lt;/item&gt;
    ...

  &amp;lt;/channel&gt;

&amp;lt;/rss&gt;
&lt;/pre&gt;


&lt;p&gt;
To create a link directly to itunes, use the pcast protocol.
&lt;/p&gt;

&lt;pre class=&#034;codeSample&#034;&gt;
&amp;lt;a href=&#034;pcast://www.qicboy.com/files/2006/12/11/20061211-1-1.xml&#034;&gt;SUBSCRIBE&amp;lt;/a&gt;

&lt;/pre&gt;


&lt;p&gt;
You can use the online RSS &lt;a target=&#034;_blank&#034; href=&#034;http://feedvalidator.org/&#034;&gt;validator&lt;/a&gt; to make sure your RSS file is well formed.
&lt;/p&gt;


        </description>
      
      
    
    
    
    <category>HOW2</category>
    
    <comments>http://www.qicboy.com:80/2006/12/11/1165849800000.html#comments</comments>
    <guid isPermaLink="true">http://www.qicboy.com:80/2006/12/11/1165849800000.html</guid>
    <pubDate>Mon, 11 Dec 2006 15:10:00 GMT</pubDate>
  </item>
  
  </channel>
</rss>

