Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to do radio site so first create playlist folder inside project so all mp3 file will be inside playlist folder.

Secondly I want to find flash mp3 player start and stop autoplay loop properties will be.I found it.

http://www.alsacreations.fr/dewplayer-en[^]

but here this player run with xml file for playlist.
XML
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
    <trackList>
        <track><location>file:///playlist/song_1.mp3</location></track>
        <track><location>file:///playlist/song_2.mp3</location></track>
        <track><location>file:///playlist/song_3.mp3</location></track>
    </trackList>
</playlist>


how to give paths for mp3s inside playlist folder in project?
or how can I do ???

may be I can setup a windows media server create playlist all mp3s can send there.So path like that http://192.xxx.xxx.xx/Playlist I dont know can I do like that or can I play mp3s with this player...
Posted

1 solution

use this where you want to play file..

C#
Server.MapPath("~/your file path");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900