|
Hi All, after trying and reading two days i find out that i can not handle the problem myself. I need different playlists for different pages on a website with different videos. I am an amateur regarding programming, this is what you need to know.
My playlist.xml works, but the problem is, that when i put the playlist path into config.xml, all players open this playlist. When i take the playlist path out and put "false" into the config.xml, than no player finds the playlist. I dont know hot to tell the player in the website code which playlist should be used.
Simply making different playlists like playlist1.xml and playlist2.xml and interting the path into the code is not working. When i use it over config.xml, than it works, but i am not able to tell the play which playlist should be used.
THIS DOES NOT WORK IN CODE <param value="playlistXML= http://www.breconcherry.de/hdflvplayer/xml/playlist2.xml"
THIS ALSO NOT flashvars=" playlistXML=http://www.breconcherry.de/xml/playlist2.xml"
So, how to tell the player to use a different playlist? Please help me, and sorry for not correct english.
Please look at my files: (CODE ON WEBSITE)
<object height="360" width="640" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <param value=" hdflvplayer/hdplayer.swf" name="src" /> <param name="wmode" value="transparent"> <param value="playlistXML= http://www.breconcherry.de/hdflvplayer/xml/playlist2.xml" name="flashvars" /> <param value="sample" name="name" /> <embed height="360" width="640" name="sample" wmode="transparent" flashvars=" playlistXML=http://www.breconcherry.de/xml/playlist2.xml" src="hdflvplayer/hdplayer.swf" type="application/x-shockwave-flash"></embed></object>
(CODE IN CONFIG.XML)
<?xml version="1.0" encoding="utf-8"?> <config license="" stagecolor="0x000000" autoplay="true" buffer="3" Volume="50" fullscreenscale="0" normalscale="0" logopath="hdflvplayer/images/platoon.png" logoalpha="50" logoalign="TR" Download="false" logo_target="http://www.hdflvplayer.net/" skin="hdflvplayer/skin/skin_black.swf" skin_autohide="false" languageXML="hdflvplayer/xml/language.xml" playlist="true" playlist_open="true" showPlaylist ="true" HD_default="false" vast="false" vast_partnerid="" streamer="" adXML="hdflvplayer/xml/ads.xml" preroll_ads="false" postroll_ads="false" midrollXML="hdflvplayer/xml/midroll.xml" midroll_ads="false" cssURL="hdflvplayer/css/midrollformat.css" shareURL="hdflvplayer/email.php" embed_visible="true" UseYouTubeApi="flash" videoshareURL="hdflvplayer/videourl.php" debug="true"> <timer>true</timer> <zoom>true</zoom> <email>true</email> <fullscreen>true</fullscreen> </config>
|