Metadata on iPod from RSS feed (podcast) - ID3 tags or XML-generated?

Hi,
Does the metadata on an iPod come from the ID3 tags or from the XML-generated content in the RSS feed?
Thanks!

Afterthought:
My experience is generally with tweaking tags to get iTunes to merge feeds but if you are downloading podcasts directly to the iPod it may concentrate on the feed information. Short of running tests with deliberately different information in the feed & the tag it is hard to say.
tt2

Similar Messages

  • RSS Feed/Podcast image

    I think I may have goofed when I originally published my website on iWeb. I'm really hoping someone can help. I started a blog, but I think when I first designed the site, I deleted the original media place holder where the RSS feed draws the image for the feed, and also for a podcast. When I submitted to iTunes, it is blank, even though album art is embedded in the file.
    I figured this out by trying a new website to mobile me, and I noticed that the originally image place holder that comes up with a blog template is where the RSS feed draws the image.
    Is there any way to get this back, or to redo my the front page of my blog without losing all my archives when I republish?
    Any help would be greatly appreciated. Thanks
    Jason

    I had the same problem. It was a while ago, but I think I ultimately went into the RSS file and found the tag I needed, which was <itunes:image> and I manually edited it. I've hunted around and apparently this is the correct way to write it:
    <itunes:image href="http://www.yourimageaddress.jpg" />
    You should upload your image, which should be 600 x 600 pixels to a storage place like imageshack.us and copy the direct URL. Or upload it to your own website. Then insert the URL into the RSS code as above. Then you need to republish the RSS feed. It takes a couple of days, but it should show up.
    Here is some info from the Apple website:
    This tag specifies the artwork for your podcast. Put the URL to the image in the href attribute. iTunes prefers square .jpg images that are at least 600 x 600 pixels, which is different than what is specified for the standard RSS image tag.
    iTunes supports images in JPEG and PNG formats. The URL must end in ".jpg" or ".png". If the itunes:image tag is not present, iTunes will use the contents of the RSS image tag.
    If you change your podcast’s image, also change the file’s name. iTunes may not change the image if it checks your feed and the image URL is the same.
    Spend some time developing an attractive, original image that represents your podcast well. Potential subscribers will see it on your podcast’s page and a much smaller version of the image in search results and feature placements. Make sure your design is effective in both sizes.
    The itunes:image tag is not supported at the item level. It is possible to include art within individual episodes, but the art is included within the media file’s metadata, not in the RSS feed. To add artwork to an episode using iTunes, highlight the episode and select "Get Info" from the "File" menu. Click the Artwork tab. Then click "Add," navigate to and select an image file, and click "Choose."
    http://www.apple.com/itunes/podcasts/specs.html#changing

  • Adding dataset from RSS feed

    Hi,
    Could anyone explain me step by step procedure to add dataset from RSS feed? My main concern is how will I create a dedicated RSS feed and sync it with my R/3 to fetch data from it?
    Cordially,
    Danish

    Danish,
    I was wondering if you could share your solution? I am trying to do something similar and haven't been able to successfully get the data imported the way I want.
    I've created a standard RSS feed, but that format really doesn't seem to be conducive to communicating data rows.
    Thanks,
    Nate

  • Add a podcast from rss feed

    Hi. How can I add a podcast, that is not in the iTunes podcast directory, but only is presented as a web-page and an rss-feed?

    Well everyone keeps saying to use:
    http://phobos.apple.com/static/iTunesRSS.html
    But it's not working for me. I keep getting Bad http result code: 404 - error....

  • Computer storage for rss feed / podcast?

    Can you use your computer storage say a external hard drive as your podcast storage? Instead of using a website?
    If so, how do you get a RSS feed to make it all come together?
    Basically you use your computer as the storage & host.

    It is technically posssible to do this by setting your computer up as a web server. However I don't recommend this. Firstly, it's quite a technical process on which I can't advise (and as you have Windows you won't get advice on it in these forums).
    Secondly your computer has to be running all the time. Thirdly you must have a permanent IP number - many ISPs change it from time to time precisely to prevent you from doing this because of bandwidth considerations, or charge extra for it.
    Thirdly most ISPs provide a much lower upload speed than download speed, which could make your episodes very slow to load.
    Fourthly this could consume considerable bandwidth and if you have any sort of cap on it you could hit it quite quicky.
    And finally your ISP may very well not allow this, so you need to check with them as if they don't you are likely to be disconnected in short order.

  • Torss - downloads selected torrents from RSS feeds

    I often have a problem with various private torrent trackers that by the time I add to torrent to my client it has already been active for a long time and I struggle to maintain a good ratio. As such I wanted something which could scrape the tracker's RSS feed, find torrents that match various patterns and download the torrent files to a folder for my torrent client to pick up.
    So I wrote torss. It's quite simple, but it does what I need it to do. The user defines some rules, decides which "getter" to use (each RSS feed has its own getter) and runs torss with those settings (likely from cron).
    Help:
    $ torss -h
    Usage: /usr/bin/torss -g getter [OPTIONS]...
    torss is parser of RSS feeds which downloads files referenced in the RSS if the
    title of the entry matches given rules.
    -g, --getter getter script to use
    -r, --rules rules file to use
    -d, --destination destination path to save torrents to
    -i, --history history file to use
    -h, --help help
    The rules file must contain an array named rules containing at least one entry.
    These entries should be regular expressions (for grep -Ei) for torrent titles
    to be downloaded. See /etc/torss/rules.sample
    The getter script will be looked for in ~/.config/torss/getters/, then
    /etc/torss/getters/ and finally as a file referenced from the CWD. This means
    you can pass either simply the filename or the absolute/relative path.
    The destination path will usually be a folder where your torrent client
    automatically picks up torrent files.
    The history file is used to ensure the same torrent isn't downloaded multiple
    times, as such it should, for normal use, be left as the default value.
    Example Use:
    ~/.config/torss/rules:
    rules[0]="foobar S01E[0-9]{2}(.+)?720(.+)?x264"
    Those rules match what's in a demo getter script that's included in torss.
    $ torss -g demo
    Downloading 'Foobar S01E02 720p x264-Pirate' to /home/sid
    Downloading 'Foobar S01E01 720p x264-Pirate' to /home/sid
    There is also a history file to avoid downloading the same torrents a second time.
    I've created the following PKGBUILD, but not yet put it in the AUR as I'd like some feedback first.
    PKGBUILD:
    # Maintainer: Sid Karunaratne <sakaru at gmail dot com>
    pkgname=torss
    pkgver=0.2.3
    pkgrel=1
    pkgdesc="scrapes RSS feeds to find torrents that match user defined rules, then downloads them"
    license=('LGPL2')
    arch=('any')
    depends=('xmlstarlet')
    source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sakaru/${pkgname}/tarball/${pkgver})
    md5sums=('992f825a649b83e592c31c43eb256c53')
    backup=('etc/torss/getters/hd-torrents.org' 'etc/torss/getters/thebox.bz' 'etc/torss/getters/thepiratebay.org')
    install=install
    build() {
    # We need to rename githubs folder as its name isn't easy to predict
    cd $srcdir
    folder=$(tar -tf ${pkgname}-${pkgver}.tar.gz | head -n1)
    mv $folder ${pkgname}-${pkgver}
    package() {
    install -Dm755 ${srcdir}/${pkgname}-${pkgver}/torss $pkgdir/usr/bin/torss
    install -Dm644 ${srcdir}/${pkgname}-${pkgver}/rules.sample $pkgdir/etc/torss/rules.sample
    install -Dm644 ${srcdir}/${pkgname}-${pkgver}/getters/demo $pkgdir/etc/torss/getters/demo
    install -Dm644 ${srcdir}/${pkgname}-${pkgver}/getters/thepiratebay.org $pkgdir/etc/torss/getters/thepiratebay.org
    install -Dm644 ${srcdir}/${pkgname}-${pkgver}/getters/hd-torrents.org $pkgdir/etc/torss/getters/hd-torrents.org
    install -Dm644 ${srcdir}/${pkgname}-${pkgver}/getters/thebox.bz $pkgdir/etc/torss/getters/thebox.bz
    install:
    post_install() {
    cat <<EOF
    ==> Various getter scripts have been installed to /etc/torss/getters.
    ==> If you intend to use the getters for private trackers you will need
    ==> to edit the appropriate scripts to use your credentials. Copy them to
    ==> ~/.config/torss/getters if you wish them to be private.
    EOF
    Since it's on github I know I could use git to clone the repo for the latest code, but I prefer using tags to state releases. This way things like aurcheck/yaourt/packer/etc know there has been an update.
    Some private trackers (the ones I made for myself) are already included, though you'll need to edit them, setting the cookiejar values to those of your own cookies.
    I would greatly appreciate feedback, this is the first non-trivial bash script I've written.

    Yes - and the same here all of a sudden. Very annoying indeed. I really don't want to have to have another app. just to read my RSS feeds but is that going to be the solution? I'm sure this trouble started after I'd inadvertently erased messages instead of marking them all read. And it's only with two VersionTracker feeds too, not the others I get. VT have yet to respond to my request for ideas but if the y do, I'll post here again.

  • Dynamic Menu From RSS Feed?

    Hello,
    I have a client who would like a drop-down menu dynamically
    created to show links to the most recent posts on a WordPress blog.
    Has anyone seen anything like this? The menu would *not* be on a
    page that's part of the WP installation -- it would most likely
    pull items from the WP RSS feed.
    Any ideas or resources anyone can point to on this?
    Many thanks,
    Matt

    Hi,
    Of course. You can create your menuVO and then use an iterator inside your menu component so you create a menuItem for each row in your DB.
    Hope this gives you an idea.

  • N97 Browsing from Rss feed

    Hi all, first post on here. I decided (for some mad reason) last month to get a N97 rather than a iphone...I think I was going to miss a good camera, and I thought it was too much. Anyway I have a good few issues with the thing, one being If I click on a link from a RSS feed that opens the (slow) browser, If I then want to contining browsing...a: The bookmarks are disable in Options and b: links don't work within webpages. If I close the browser and close the RSS then open the browser seperatly all is fine.
    Has anyone else got he same problem? 
    Thanks Darren
    woooops Firmware v 11.0.021
    Message Edited by Mekon101 on 16-Oct-2009 10:06 AM

    Danish,
    I was wondering if you could share your solution? I am trying to do something similar and haven't been able to successfully get the data imported the way I want.
    I've created a standard RSS feed, but that format really doesn't seem to be conducive to communicating data rows.
    Thanks,
    Nate

  • NSXMLParserError Domain error 26 from RSS feeder

    The RSS feeder I got from the App store stopped working today. It has been working perfectly for the last 6 months but now is not refreshing and throwing the above noted error. I am on Mavericks 10.9.5 (with all updates applied). Any ideas as to where I should be looking to resolve this? I have Googled the error but nothing points towards my specific application.
    Thank you for any help offered.

    Never mind - the problem was one of the feed sources.

  • OmniPortlet only showing excerpts from rss feed

    I have an Omniportlet set up with our internal staff news Wordpress rss feed. The feed is only showing excerpts but I require full text. I know the feed is capable of full text as it works correctly in IE8 and a pdf generator I'm running.
    Below is XSL filter I'm using:
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- This XSL is provided as example to show how to consume RSS and RDF using OmniPortlet -->
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:rss="http://purl.org/rss/1.0/"
    xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.0"
    xmlns:rdf090="http://my.netscape.com/rdf/simple/0.9/">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/rss/channel">
    <rowset>
    <xsl:for-each select="item">
    <row>
    <link><xsl:value-of select="./link"/></link>
    <title><xsl:value-of select="./title"/></title>
    <description><xsl:value-of select="./description"/></description>
    <pubDate><xsl:value-of select="./pubDate"/></pubDate>
    </row>
    </xsl:for-each>
    </rowset>
    </xsl:template>
    <xsl:template match="/rdf:RDF">
    <rowset>
    <xsl:if test="rdf090:item">
    <xsl:for-each select="rdf090:item">
    <row>
    <link><xsl:value-of select="./rdf090:link"/></link>
    <title><xsl:value-of select="./rdf090:title" /></title>
    <description><xsl:value-of select="./rdf090:description" /></description>
    <pubDate><xsl:value-of select="./pubdate"/></pubDate>
    </row>
    </xsl:for-each>
    </xsl:if>
    <xsl:if test="rss:item">
    <xsl:for-each select="rss:item">
    <row>
    <link><xsl:value-of select="./rss:link"/></link>
    <title><xsl:value-of select="./rss:title" /></title>
    <description><xsl:value-of select="./rss:description" /></description>
    <pubDate><xsl:value-of select="./pubDate"/></pubDate>
    </row>
    </xsl:for-each>
    </xsl:if>
    </rowset>
    </xsl:template>
    </xsl:stylesheet>
    Can anyone tell me how to get the full text to show for each item?
    Thanks

    If the feed is capable of displaying full text, then you need to modify your filter to read the fulltext and add this cloumn to your layout to display. Can you provide sample xml file (datasource) if you want me to investigate further. Please enclose the xml inside { code } xml { code }
    note no space before and after the braces for the 'code'
    regards,
    ~Krithika

  • Generating RSS Feeds using files with extension .xml

    Bonjour!
    Apologies if this is not the correct forum - please redirect me if necessary.
    I am trying to create an .xml file to upload to my server allowing me to generate rss feeds on my web site. If i understand correctly (I am a beginner webmaster) for my RSS feed to be valid, the first line must read for example '<?xml version="1.0" ?>
    <rss version="0.91"> which is the case in my document until I save it! When I try to save the text file as .xml MAC OSX treats it as a Word File. I have tried saving as .txt with the same result. Trying to change the extension once the file has been uploaded to my server doesn't work either - the RSS feed validators still pick the document up as a Word file.
    http://www.immobilier.rimcka.com/rss.xml
    Could you advise, please?
    Merci

    What APP are you using to save it?
    Might drop it on FileWiz and see if it has a Type/Creator code.
    Might give BBEdit a look/try...
    http://www.barebones.com/products/bbedit/
    http://www.barebones.com/products/bbedit/featuresweb.shtml
    "Syntax coloring and function navigation support for HTML, JavaScript, Perl, PHP, Ruby, SQL, XHTML, XML, and YAML Improved!"
    Or any of these...
    http://www.versiontracker.com/php/qs.php?mode=basic&action=search&str=xml+edit&s rchArea=macosx&submit=Go

  • How can I prevent firefox from autodetecting RSS feed,podcasts,etc.?

    Whenever I visit the forum at www.vlexoforums.com, and click on a topic, firefox asks me to choose the way I would like to receive updates to the forum. It asks me to choose from google reader, microsoft outlook, preview in firefox, add live bookmarks in firefox, etc. This did not use to happen earlier. Recently I updated firefox and after that this started happening.
    == I updated firefox to 3.5.10.

    "Add-ons" is a mis-leading term, regarding what appears in the Add-ons Manager tab. "Addons" includes Extensions, Search Engines, Themes (Appearance), User Scripts, Styles, and Services - all of which the "Updates" can be controlled by Firefox preferences. "Plugins" are shown in the AOM too, but unlike the others, Firefox has no control over updates for Plugins. As James mentioned, Plugins aren't installed within Firefox as the other categories of "Add-Ons" are - and updates are controlled by the application that installed the Plugin that Firefox uses from each application's own set of folders or wherever in Windows files the Plugin is placed by the installer.
    IMO, the biggest problem with Flash is that it is set by default to only look for an update once a month. So when Adobe updates Flash multiple times a month (3 "updates" in January alone) the Flash updater can'r catch each update as it occurs, or even within an acceptable "window of time". A user might "fall behind" as many as 3 new version releases quite easily.
    As far as clicking to "Allow" each video when you're behind a version or two with Flash, at least Mozilla does a "soft block" and permits you to "Allow" - a "hard block" would make it impossible to use Flash at all. And "yes". Mozilla ''can do" a "hard block" when necessary.
    In conclusion, Flash is a dying technology, which deserves to be buried. It is too "exploitable" by the "bad guys". All the recent "updates" are for security patches for fixing "holes" in Flash and stability fixes to an old application that "has seen better days" (like 10 years ago).
    HTML5 Video looks like the future. Use it where you can, like at YouTube which gives you a choice for many videos they host - but you you need to enable that feature in Google preferences or all you're liable got get is Flash videos. With other websites, their users need to tell them that they want HTML5 videos only.

  • Password protected RSS feed / podcast on N95 N ser...

    I have a feed subscription that I pay for and it is password protected.  The N95 podcast player doesn't seem to be able to access it.
    I've tried http://[email protected]
    This works on a computer, but not the N95.
    Can anyone help?

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/71aec136-928a-45d2-b4df-8582c9f3b402/the-rss-webpart-does-not-support-authenticated-feeds?forum=sharepointadminlegacy
    For you developers out there - an option for you is to download my
    RSS Reader web part for free and edit the code. You can set the credentials of the WebRequest to something other than default credentials.
    Search for this line of code: xmlReq.Credentials = CredentialCache.DefaultCredentials;
    I wrote this web part as an alternative to the RSS Viewer Web Part because not everbody has MOSS. Plus, it is open source so you can customize the look and feel, and it's behavior.
    http://blogs.msdn.com/b/markarend/archive/2006/10/03/rss-viewer-web-part-and-authenticated-feeds.aspx
    http://rssreaderwebpart.codeplex.com/sourcecontrol/list/changesets?ProjectName=rssreaderwebpart
    http://chayadigital.wordpress.com/2012/02/02/if-you-encounter-the-error-rss-web-part-does-not-support-authenticated-feeds-in-sharepoint/
    If this helped you resolve your issue, please mark it Answered

  • Google and Yahoo option missing from RSS feeds

    When i click on the RSS icon in firefox to subscribe to a feed, Yahoo and Google are both missing.
    http://img13.imageshack.us/img13/4135/rssbx.jpg
    How can i restore both of these and other readers.

    thanks, but how do you add yahoo and google to the "podcast" and "video podcast" feed in the Tools>Options>Applications?
    I only have browser.videoFeeds.handler and browser.audioFeeds.handler properties in my about:config.
    these are missing
    browser.audioFeeds.handlers.application
    browser.audioFeeds.handlers.webservice
    browser.videoFeeds.handler.default
    browser.videoFeeds.handlers.application
    browser.videoFeeds.handlers.webservice

  • Flashes White Screen After Opening Link in Tabs from RSS  Feed

    Hi.
    This is a weird glitch/bug that I'm trying to get to the bottom of. It happens very often, that when I open all of my feeds (they are all collected in one folder so I can view them at once) and choose to open a link from one of the feeds in a separate tab, the entire screen becomes white for a second or two before opening the link. I've been searching around and can't find anyone that has a similar problem or has documented it. I would greatly appreciate if I could fix this.
    Powerbook G4   Mac OS X (10.4.5)  

    My website is on DotMac.
    So that people don't have to remember hompage.mac.com/blablabla,.etc.,
    I purchasd a domain name from Goddady here;
    http://www.godaddy.com/gdshop/default.asp
    My new name is, www.tommurrayartist.com When this is typed in, it is redirected to my DotMac address. It was also masked so the tommurrayartist address shows in the address bar.
    Apparently Safari can't handle this the way Camino can.
    So I unchecked masking in my Godaddy account.
    No more flashing with Safari.

Maybe you are looking for