Removing specific XML tags

Posted by iTayb on Stack Overflow See other posts from Stack Overflow or by iTayb
Published on 2010-05-09T12:58:23Z Indexed on 2010/05/09 13:08 UTC
Read the original article Hit count: 312

Filed under:
|
|

I'd like to make an application that removes duplicates from my wpl (Windows PlayList) files.

The wpl struct is something like this:

<?wpl version="1.0"?>
<smil>
    <head>
        <meta name="Generator" content="Microsoft Windows Media Player -- 11.0.5721.5145"/>
        <meta name="AverageRating" content="55"/>
        <meta name="TotalDuration" content="229844"/>
        <meta name="ItemCount" content="978"/>
        <author/>
        <title>english</title>
    </head>
    <body>
        <seq>
            <media src="D:\Anime con 2006\Shits\30 Seconds to Mars - 30 Seconds to Mars\30 Seconds to Mars - Capricorn.mp3" tid="{BCC6E6B9-D0F3-449C-91A9-C6EEBD92FFAE}" cid="{D38701EF-1764-4331-A332-50B5CA690104}"/>
            <media src="E:\emule.incoming\Ke$ha - Coming Unglued.mp3" tid="{E2DB18E5-0449-4FE3-BA09-9DDE18B523B1}"/>
            <media src="E:\emule.incoming\Lady Gaga - Bad Romance.mp3" tid="{274BD12B-5E79-4165-9314-00DB045D4CD8}"/>
            <media src="E:\emule.incoming\David Guetta -Sexy Bitch Feat. Akon.mp3" tid="{46DA1363-3DFB-4030-A7A9-88E13DF30677}"/>
        </seq>
    </body>
</smil>

This looks like standard XML file. How can I load the file and get the src value of each media tag? How can I remove specific media, in case of duplicates?

Thank you very much.

© Stack Overflow or respective owner

Related posts about Xml

Related posts about WPL

  • Removing specific XML tags

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I'd like to make an application that removes duplicates from my wpl (Windows PlayList) files. The wpl struct is something like this: <?wpl version="1.0"?> <smil> <head> <meta name="Generator" content="Microsoft Windows Media Player -- 11.0.5721.5145"/> … >>> More

  • .bat file overriding answer

    as seen on Super User - Search for 'Super User'
    When I made this batch file, when typing y and n for the first time it works fine, but as soon as I choose n, every single time I try inputting something, it opens up the 7000 songs wpl list then closes it and replaces it with Rick Astley... HELP! @echo off :Ask echo Would you like to listen to… >>> More