Bonjour,

Je voudrais cacher l'adresse de mon serveur RTMP (l'attribut streamer dans la balise object) dans le code suivant :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
	<object id="myPlayer" style="z-index:214748099;" classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width=<?php echo $_GET['width']; ?> height=<?php echo $_GET['height']; ?> name='single1'>
					<param name='movie' value='player.swf'>
					<param name='allowfullscreen' value='true'>
					<param name='allowscriptaccess' value='always'>
					<param name='wmode' value='opaque'>
					<param name='flashvars' value='file=<?php echo $_GET['file']; ?>&streamer=<?php echo $streamer; ?>&rtmp.subscribe=true&autoplay=true&autostart=true&allowscriptaccess=always&logo.file=images/logo_min.png&logo.position=top-right&logo.hide=false&repeat=always&stretching=exactfit'>
					<embed
					tplayername="SWF" 
					splayername="SWF"
					id='single2'
					name='single2'
					src='player.swf'
					width='<?php echo $_GET['width']; ?>'
					height='<?php echo $_GET['height']; ?>'
					bgcolor='#000000'
					wmode='opaque'
					duration='2100'
					bufferlength= '0.5'
					allowscriptaccess="always" 
					allowfullscreen='true';
					enablejsurls="true" enablehref="false"
					mediawrapchecked="true" 
					plugins='qualitymonitor'
					pluginspage="http://www.macromedia.com/go/getflashplayer" 
					flashvars='file=<?php echo $_GET['file']; ?>&streamer=<?php echo $streamer; ?>&rtmp.subscribe=true&autoplay=true&autostart=true&allowscriptaccess=always&logo.file=images/logo_min.png&autostart=true&repeat=always&stretching=exactfit'
					/>
 
 
				</object>
streamer="rtmp://109.103.66.30/live" par exemple , je voudrais bien qu'il soit illisible dans ma page php ...


Merci