The iTunes Block tag is specifically designed to tell iTunes to ignore a particular post in your podcast feed. This might be particularly useful if your feed combines text only posts and posts containing audio enclosures, because the text only posts are useless in the context of iTunes RSS support. Another potential use for this tag is to exclude an episode that is intended for a select audience (say subscribers using iPodderX, for instance). The Block tag is entirely optional and should only be used in those cases where you don't want a post to show up in the iTunes Music Store.
To implement the Block tag in your RSS 2.0 feed, include the following in the <item> for your post:
<itunes:block />
Duration is the iTunes tag associated with the 'Time' component of each episode of your podcast. This tag is implemented at the item level, displaying a time value for each episode in the format HH:MM:SS. Since people have few details about your show when they encounter it for the first time, this tag provides information that may help a listener decide whether they have time to tune in for one of your episodes. While it won't hurt anything to leave this tag out, as Apple indicates duration is for informational purposes only, not having it listed displays a Not Available notice in the Time description in iTunes Music Store. After a subscriber downloads any episode from your podcast, the Time is based on the actual audio file header information.
Display the Duration of your individual episode file like this:
<itunes:duration>HH:MM:SS</itunes:duration>
The Author tag is either the name of your podcast or your name, depending on the type of theme for your show. If you are the sole host of the podcast or the star of the show, using your name makes sense. If you have a group effort, sticking with the name of the podcast keeps all the egos satisfied, while also branding the show as being a collective effort. The author tag is used both at the RSS channel level and at the item level. At the channel level, this is an all encompassing tag for the podcast as a whole. At the item level, author could be the same as the channel level author or it may designate a specific collaborator.
Based on these criteria, the Author tag will look like this:
<itunes:author>Your Name</itunes:author>
Or this:
<itunes:author>Name of Podcast</itunes:author>