Na een tijdje eruit te zijn geweest zijn we weer begonnen.
Dus wat voorbereidingen treffen.
Ik zoek n.l een oplossing voor bovenstaande probleem.
We hebben een kopie vd windows 7 waarin sam geïnstalleerd is , gemaakt voor Locatie B.
Deze de naam Loc_B gegeven.
Dus de instellingen van Sam van Loc A zitten nu ook op de PC van Loc B.
Hoe kunnen we vanaf Loc B de uitzending (Sam) stoppen op Locatie A zodat het uitzenden (Sam) gestart wordt vanaf Loc B.
En hoe kunnen we vanaf Locatie B , Sam Automatisch starten op Loc A (muziek laten afspelen) als we klaar zijn op Locatie B? (Dus Sam op Loc B is gestopt)
Iemand een goede Palscript voor, waarvoor dank.
Groetjes J
EDIT:
Heb een Search gedaan en vond dit: maar denk niet dat hij autostart doet vanaf Loc A?
Code: Selecteer alles
{ About:
This script will disconnect any source connected
to a Shoutcast server and then connects this
SAM Broadcaster as the new source.
Usage:
a) Create two MP3 encoders,to connect to the shoutcast server.
b) Supply your shoutcast server details in the configuration section below.
{-----------------------------------------------------------------------------}
{ CONFIGURATION }
{ Kick Source PAL script for 2 Streams, starting One after the Other with a 2 sec.delay time}
{==================================================}
const shoutcast_password1 = 'insert PassWord';
const shoutcast_host1 = 'insert URL';
const shoutcast_port1 = 'Insert Port';
{==================================================}
var URL1 : String;
URL1 := 'http://admin:'+shoutcast_password1+'@'+shoutcast_host1+':'+shoutcast_port1+'/admin.cgi?mode=kicksrc';
WebToFile('c:\dummy.txt',URL1);
Encoders[0].Start;
QueuedPlayer.Play;
{=================================================}
PAL.WaitForTime('+00:00:02');
{=================================================}
const shoutcast_password2 = 'insert PasWord';
const shoutcast_host2 = 'insert URL';
const shoutcast_port2 = 'insert Port';
{=================================================}
var URL2 : String;
URL2 := 'http://admin:'+shoutcast_password2+'@'+shoutcast_host2+':'+shoutcast_port2+'/admin.cgi?mode=kicksrc';
WebToFile('c:\dummy.txt',URL2);
Encoders.StartAll;
{=================================================}