Order Now AdSolution Sign Up | Login » Bits on the Run Sign Up | Login »

Forums

/

How to hide my XML playlist adress

3 replies [Last post]

Hello,

I'm using JW Player with a xml playlist.

I would like to hide the playlist adress so that people don't know it.

I know we can hide the file adress but what about a xml playlist.? is it the same?

How can ido it?

Thank you very much

i want too

I'm looking for this as well...

How can I hide the playlist, I'm here in a test environment once described. (Version 3.16)

Wie man die Playlist verstecken kann, hab ich hier in einer Testumgebung mal beschrieben. (Version 3.16)

http://www.mrw-online.com/index.php?option=mod_test&aktion=jwplayer&MLID=82

The variables can be created in the file mediaplayer.fla.

// you can hardcode all flashvars here, for example:
// var prefix = 'http://www.myserver.com/';

_root.site == undefined ? site = "www.domain.de" : site=_root.site;
_root.id == undefined ? id = "11347" : id=_root.id;
_root.DLID == undefined ? DLID = "11347" : DLID=_root.DLID;

var file="http://"+site+"/ORDNER/mp_playlist.php?DLID="+DLID;
var callback="http://"+site+"/ORDNER/mp_statistics.php?DLID="+DLID+";
// Start the player
com.jeroenwijering.players.MediaPlayer.main();

...

From version 4.0 (AS3) I have the following in the changed file player.as:

Ab Version 4.0 (AS3) hab ich folgendes in der datei player.as verändert:

public class Player extends MovieClip {

var website:String = stage.loaderInfo.parameters.website;
var DLID:String = stage.loaderInfo.parameters.DLID;

/** All configuration values. Change them to hard-code your preferences. **/
public var config:Object = {
author:undefined,
date:undefined,
description:undefined,
duration:undefined,
file:"http://"+website+"/index.php?option=mediaplayer45_dl-php_mysql_playlist&DLID="+DLID,

...