Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

embed internet radio

[es] :: Flash :: embed internet radio

[ Pregleda: 2708 | Odgovora: 6 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

pecooou
Petar Jovanovic
Nis

Član broj: 69500
Poruke: 134
*.dynamic.sbb.rs.

Sajt: www.pecooou.com


Profil

icon embed internet radio18.08.2009. u 13:27 - pre 178 meseci
Moze li ovo da se uradi?
Znaci, da postavim neki internet radio da se slusa na mom sajtu?
 
Odgovor na temu

miroslavL

Član broj: 175849
Poruke: 378
79.101.223.*



+5 Profil

icon Re: embed internet radio18.08.2009. u 14:13 - pre 178 meseci
Naravno da može, prelistaj ovaj forum... imaš odgovora na tu temu koliko hoćeš.

Kontaktiraj taj radio... možda ubodeš i koju kintu ako je sajt posećen! :))

pozz
 
Odgovor na temu

pecooou
Petar Jovanovic
Nis

Član broj: 69500
Poruke: 134
*.dynamic.sbb.rs.

Sajt: www.pecooou.com


Profil

icon Re: embed internet radio21.08.2009. u 18:50 - pre 178 meseci
Ja listam i listam ali nisam nasao nista. Aj ako moze link bio bih jako zahvalan.
Pozz.
 
Odgovor na temu

cobragangsta

Član broj: 146928
Poruke: 84
79.101.245.*



+2 Profil

icon Re: embed internet radio07.09.2009. u 17:50 - pre 178 meseci
imas na wikipediji i primer

http://en.wikipedia.org/wiki/PLS_%28file_format%29
 
Odgovor na temu

pecooou
Petar Jovanovic
Nis

Član broj: 69500
Poruke: 134
*.dynamic.sbb.rs.

Sajt: www.pecooou.com


Profil

icon Re: embed internet radio15.09.2009. u 15:28 - pre 177 meseci
Ne znam da li sam bio jasan.
Ja zelim da na svom sajtu postavim npr. Ibiza radio da ide kao background music.
Ne mogu nikako da nadjem neki tutorijal, ako neko zna nesto o ovome, stvarno bi mi bilo od koristi.
Pozz.
 
Odgovor na temu

pecooou
Petar Jovanovic
Nis

Član broj: 69500
Poruke: 134
*.dynamic.sbb.rs.

Sajt: www.pecooou.com


Profil

icon Re: embed internet radio16.09.2009. u 11:43 - pre 177 meseci
Ja se snasao pa ako nekom zatreba...

Code:

/* EXAMPLE-CHANNELS */
var chans = new Array();//[title,ip:port;stream.nsv,description]
chans[0] = ["Radio #1", "http://s2.viastreaming.net:7130;stream.nsv", "Latest hits.\nhttp://www.radio1.com"];
chans[1] = ["Classics", "http://193.112.14.122:8080;stream.nsv", "Classical music 24/7.\nhttp://www.classicradio.com"];
chans[2] = ["FunkRadio", "http://stream.funkradio.com:7130;stream.nsv", "Funk music!.\nVisit http://www.funkradio.com"];
/* END OF CHANNEL-ARRAY */

stream = new Sound();//Create new sound
current = 0;//Current channeø
vol = 75;//Volume

function update() {//Update channel
    if (current<0) {
        current = 0;
    }
    if (current>chans.length-1) {
        current = chans.length-1;
    }
    stream.stop();//Stop stream
    stream.loadSound(chans[current][1], true);//Load new stream
    setvol();//Set new volume
    _root.txtChan = chans[current][0];//Set title-text
    _root.txtDesc = chans[current][2];//Set description-text
}

function setvol() {//Set volume
    if (vol>100) {
        vol = 100;
    }
    if (vol<0) {
        vol = 0;
    }
    stream.setVolume(vol);//Set volume
}

_root.onLoad = function() {//On load
    update();//Update channel
};


_root.volu.onPress = function() {//Volume up
    vol += 5;
    setvol();
};

_root.vold.onPress = function() {//Volume down
    vol -= 5;
    setvol();
};

_root.nextChan.onPress = function() {//Next channel
    current += 1;//Go to next channel
    update();//Update channel
};

_root.prevChan.onPress = function() {//Previous channel
    current -= 1;//Go to previous channel
    update();//Update channel
};

_root.rndbtn.onPress = function() {//Random channel
    current = Math.round(Math.random()*(chans.length-1));//Get random channel
    update();//Update channel
};



Treba postaviti jos dugmad sa instance name: volu, vold, nextChan, prevChan i u chans promeniti "http://s2.viastreaming.net:7130" sa adresom radia koji hocete da slusate.
 
Odgovor na temu

pecooou
Petar Jovanovic
Nis

Član broj: 69500
Poruke: 134
*.dynamic.sbb.rs.

Sajt: www.pecooou.com


Profil

icon Re: embed internet radio16.09.2009. u 13:20 - pre 177 meseci
E sad imam novi problem.
Kad pustim swf sve radi OK, cuje se radio, ali kad ga ubacim u html, izbacuje mi ovo sa slike.
[img]

[/img]
U popup setings sam upisao adresu radia u allow ali opet mi ne pusta radio.
????????
Prikačeni fajlovi
 
Odgovor na temu

[es] :: Flash :: embed internet radio

[ Pregleda: 2708 | Odgovora: 6 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.