m3u streams

Discussion in 'PHP' started by cool4cools, Oct 8, 2006.

  1. #1
    <?php
    header("Content-Type: Application/m3u");
    header("Content-Disposition: inline; filename=\"playlist.m3u\"");

    echo "#EXTM3U\n
    #EXTINF:317,BassHunter - Boten Anna\n
    http://www.example.com/liedje1.mp3\n
    #EXTINF:226,BassHunter - Du gamla du fria\n
    http://www.example.com/liedje1.mp3\n";
    break;
    ?>

    or

    <?php
    header("Content-Type: Application/m3u");
    header("Content-Disposition: inline; filename=\"naampje.m3u\"");

    echo "http://www.example.com/liedje1.mp3\n"; echo "http://www.example.com/liedje2.mp3\n";
    break;
    ?>
     
    cool4cools, Oct 8, 2006 IP