I just kreatued meh own progarum

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

TridenT

Lifer
Sep 4, 2006
16,810
45
91

Do people really use that... ? :thumbsdown:

I need to find some WPL playlists to download then. I don't want to fire up WMP.

Fired it up. Made a WPL. It uses a weird format....

Code:
<?wpl version="1.0"?>
<smil>
    <head>
        <meta name="Generator" content="Microsoft Windows Media Player -- 12.0.7601.17514"/>
        <meta name="IsNetworkFeed" content="0"/>
        <meta name="ItemCount" content="10"/>
        <meta name="IsFavorite"/>
        <meta name="ContentPartnerListID"/>
        <meta name="ContentPartnerNameType"/>
        <meta name="ContentPartnerName"/>
        <meta name="Subtitle"/>
        <author/>
        <title>Magical Playlist</title>
    </head>
    <body>
        <seq>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\08 - Born On A Train.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\09 - Naive Melody (Live).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\09 - Naive Melody (Studio).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\10 - Freeway.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\11 - Winter For A Year.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\12 - Accidents.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\13 - Goodnight, Boy (The Troops Rush In).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\14 - Intervention (Live).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\14 - Intervention (Studio).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\15 - In the Backseat (Alternate).mp3"/>
        </seq>
    </body>
</smil>
I can't use that format then... It looks at the info inside the files inside of holding it inside the playlist.

EDIT: I can't do FPL either. They use a format that ties into the bindings of foobar2000 and other thingies...
 
Last edited:

Ichinisan

Lifer
Oct 9, 2002
28,298
1,234
136
Do people really use that... ? :thumbsdown:

I need to find some WPL playlists to download then. I don't want to fire up WMP.

Fired it up. Made a WPL. It uses a weird format....

Code:
<?wpl version="1.0"?>
<smil>
    <head>
        <meta name="Generator" content="Microsoft Windows Media Player -- 12.0.7601.17514"/>
        <meta name="IsNetworkFeed" content="0"/>
        <meta name="ItemCount" content="10"/>
        <meta name="IsFavorite"/>
        <meta name="ContentPartnerListID"/>
        <meta name="ContentPartnerNameType"/>
        <meta name="ContentPartnerName"/>
        <meta name="Subtitle"/>
        <author/>
        <title>Magical Playlist</title>
    </head>
    <body>
        <seq>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\08 - Born On A Train.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\09 - Naive Melody (Live).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\09 - Naive Melody (Studio).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\10 - Freeway.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\11 - Winter For A Year.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\12 - Accidents.mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\13 - Goodnight, Boy (The Troops Rush In).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\14 - Intervention (Live).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\14 - Intervention (Studio).mp3"/>
            <media src="..\THE ARCADE FIRE - DISCOGRAPHY [CHANNEL NEO]\[B-sides &amp; 18 Rarities]\15 - In the Backseat (Alternate).mp3"/>
        </seq>
    </body>
</smil>
I can't use that format then... It looks at the info inside the files inside of holding it inside the playlist.

EDIT: I can't do FPL either. They use a format that ties into the bindings of foobar2000 and other thingies...

What does your program do? That playlist has a list of files that you can easily add and remove items from.

If the "..\" confuses you, that's just a relative path to the parent folder. You can substitute a full, literal path (ie: "C:\Users\Trident\Music\...") if you want.

If the playlist is in:
Code:
C:\Trident's Music\Playlists\playlist.wpl

Then the music is in:
Code:
C:\Trident's Music\Celine Dion\Shitty Album Name\01.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\02.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\03.mp3

Then the WPL can reference the files either way.

Relative paths from C:\Trident's Music\Playlists\:

Code:
..\Celine Dion\Shitty Album Name\01.mp3
..\Celine Dion\Shitty Album Name\02.mp3
..\Celine Dion\Shitty Album Name\03.mp3

Full paths:

Code:
C:\Trident's Music\Celine Dion\Shitty Album Name\01.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\02.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\03.mp3
 
Last edited:

TridenT

Lifer
Sep 4, 2006
16,810
45
91
What does your program do? That playlist has a list of files that you can easily add and remove items from.

If the "..\" confuses you, that's just a relative path to the parent folder. You can substitute a full, literal path (ie: "C:\Users\Trident\Music\...") if you want.

If the playlist is in:
Code:
C:\Trident's Music\Playlists\playlist.wpl
Then the music is in:
Code:
C:\Trident's Music\Celine Dion\Shitty Album Name\01.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\02.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\03.mp3
Then the WPL can reference the files either way.

Relative paths from C:\Trident's Music\Playlists\:

Code:
..\Celine Dion\Shitty Album Name\01.mp3
..\Celine Dion\Shitty Album Name\02.mp3
..\Celine Dion\Shitty Album Name\03.mp3
Full paths:

Code:
C:\Trident's Music\Celine Dion\Shitty Album Name\01.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\02.mp3
C:\Trident's Music\Celine Dion\Shitty Album Name\03.mp3

The program I made takes playlist files and turns the information inside (Artist and name of song) into a HTML table.

Check the programming forum.
 

Ichinisan

Lifer
Oct 9, 2002
28,298
1,234
136
The program I made takes playlist files and turns the information inside (Artist and name of song) into a HTML table.

Check the programming forum.

What's missing in a WPL playlist that the other playlist formats have?
 

TridenT

Lifer
Sep 4, 2006
16,810
45
91
herp... need to find more things to program.

Also found out Java Applets are not going to work for me. I can't access local information from the client/user. So, if I wanted to read the information from some playlist file on their computer: No worky. So now I have to find a way to have them upload it to the server and then have the server tell the applet the location of the file then spit out the code and give the option of saving maybe?
 

brianmanahan

Lifer
Sep 2, 2006
24,300
5,730
136
herp... need to find more things to program.

Also found out Java Applets are not going to work for me. I can't access local information from the client/user. So, if I wanted to read the information from some playlist file on their computer: No worky. So now I have to find a way to have them upload it to the server and then have the server tell the applet the location of the file then spit out the code and give the option of saving maybe?

that, or just have a client that runs on their system? jnlp perhaps
 

MovingTarget

Diamond Member
Jun 22, 2003
9,001
113
106
READY
10 PRINT " LOL FAIL!"
20 GOTO 10
RUN

/damn you caps filter!
 
Last edited:

zokudu

Diamond Member
Nov 11, 2009
4,364
1
81
Couldn't you check the tags on the actual files for artist and song title with the WPL and FPL?
 

TridenT

Lifer
Sep 4, 2006
16,810
45
91
Couldn't you check the tags on the actual files for artist and song title with the WPL and FPL?

Look at what this could be used for: Playlists and turning them into HTML. What if I have playlists from someone elses computer? I don't have access to their data. Similarly, using this on the cloud would run that impossible too. That would require immense access to their data, which is a huge security risk and not really doable.
 
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |