#include <windows.h>
int APIENTRY WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow
)
{
WinExec(lpCmdLine,0);
return 0;
}
window.onload = init;
// === private
function init() {
var audio = $('#myplayer').get(0);
audio.src = 'http://radio.at.aknet.kg:8008/radio_record.aac';
$('#playpause').click(function() {
if (audio.paused) {
this.textContent = 'Остановить';
audio.play();
return;
}
this.textContent = 'Воспроизвести';
audio.pause();
});
$('#volume').change(function() {
audio.volume = this.value / 100;
});
setInterval(updateTrack, 5000);
}
function updateTrack() {
var url = 'http://www.radiorecord.ru/xml/record_online_v3.txt';
$.getJSON(url, function(json) {
var key = json.ARTIST + ' - ' + json.NAME;
$('#track').text('Сейчас играет: ' + key);
$('#sg').attr('href', 'https://www.google.ru/search?q=' + key);
$('#sn').attr('href', 'http://namba.kg/#!/search/mp3/' + key)
});
}