mehrere dateien mittels object in eine wiedergabeliste stellen
joachim dippold
- html
hallo Leute,
ich würde gerne mehr als nur ein file mittels object einbetten.....den param filename habe ich schon versucht folgendermassen zu ändern:
eine 2. zeile mit dem 2. file:
<PARAM NAME="FileName" VALUE="sounds/pranyama.mp3">
<PARAM NAME="FileName" VALUE="filename2.mp3">...kein erfolg
die zeile ändern in:
<PARAM NAME="FileName" VALUE="sounds/pranyama.mp3;filename2.mp3">...kein erfolg
auch habe ich online kein tutorial gefunden, welches ein abspielen von 2 files nacheinander dokumentiert
hier der gesammte code des objektes:
<OBJECT ID="MediaPlayer" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
CODEBASE="http://activex.microsoft.com/activex
/controls/mplayer/en
/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..."
TYPE="application/x-oleobject" WIDTH=70 HEIGHT=24>
<PARAM NAME="FileName" VALUE="sounds/pranyama.mp3">
<PARAM NAME="TransparentAtStart" VALUE="True">
<PARAM NAME="ShowControls" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="0">
<PARAM NAME="AutoSize" VALUE="1">
<embed TYPE="application/x-mplayer2"
pluginspage="http://www.microsoft.com/windows95/downloads/
contents/wurecommended/s_wufeatured/mediaplayer/default.asp" SRC="sounds/pranyama.mp3"
Name=MediaPlayer
ShowControls=0
ShowDisplay=0
ShowStatusBar=0
width=70 height=24>
</embed>
</OBJECT>
wie kann ich das 2. file hinzufügen, um eine art playlist zu erhalten...?...es soll einfach nur bei druck auf "Vorwärts springen" der nächste titel abgespielt werden und umgekehrt....mehr nicht
gruss,
joe
PS: von der änderung im embed-tag für den navigator wage ich gar nicht erst zu fragen...*lol*....wer´s trotzdem weiss...:...antwort willkommen...*grin*
nachtrag !!!
auch das versetzten der anführungszeichen hilft nix:
<PARAM NAME="FileName" VALUE="sounds/pranyama.mp3";"sounds/theexoticjungle.mp3">...kein erfolg
gruss,
joe
auch damit geht´s nicht:
<PARAM NAME="FileName" VALUE="slow.asx">
die asx sieht so aus:
<asx version = "3.0">
<title>slow, relaxing music</title>
<entry>
<ref href= "http://www.joachimdippold.com/sounds/pranyama.mp3" />
<ref href= "http://www.joachimdippold.com/sounds/theexoticjungle.mp3" />
</entry>
</asx>
es muss doch möglich sein 2 dateien zu streamen, oder...?
gruss,
joe
so...........bis auf "vorlauf" und "rücklauf" funkt jetzt alles.....wer weiss darüber bescheid, wie ich die 2 buttons in der mitte auch noch ktivieren kann...?
ach ja....hier die URL zum ausprobieren:
http://www.joachimdippold.com/index1024.html
hier die ASX:
<ASX Version = "3.0">
<title>slow, relaxing music</title>
<author>joachim dippold</author>
<abstract>
Pranyama by Harvey Summers
The Exotic Jungle by Klaus Back & Tini Beier
Trois Gymnopedies by Eric Satie
</abstract>
<entry>
<title>Pranyama</title>
<author>Harvey Summers</author>
<copyright>Harvey Summers</copyright>
<Ref href = "http://www.joachimdippold.com/sounds/pranyama.wma" />
</entry>
<entry>
<title>The Exotic Jungle</title>
<author>Klaus Back & Tini Beier</author>
<copyright>Klaus Back & Tini Beier</copyright>
<Ref href = "http://www.joachimdippold.com/sounds/theexoticjungle.wma" />
</entry>
<entry>
<title>Trois Gymnopedies</title>
<author>Eric Satie</author>
<copyright>Eric Satie</copyright>
<Ref href = "http://www.joachimdippold.com/sounds/troisgymnopedies.wma" />
</entry>
</asx>