Stream Test + Prompt

by blowsie

HTML

Hello

JavaScript

$.ajax({
    url:'http://pendaz.ftpaccess.cc:8000/bassfm.mp3',
    //type:'HEAD',
    error: function()
    { alert('normal is off')
        //file not exists
    },
    success: function()
    {
         alert('normal is on')
        //file exists
    }
});

$.ajax({
    url:'http://pendaz.ftpaccess.cc:8000/bassfmlive.mp3',
  //  type:'HEAD',
    error: function()
    { alert('live is off')
        //file not exists
    },
    success: function()
    {
         alert('live is on')
        //file exists
    }
});