Werbung: SecurityConsole.de verwaltet Ihre Computer mit Security Essentails aus der Cloud!
30 Tage kostenfrei testen und 20% Rabatt für Ihre Bestellung mit Promocode: WBF2685582
(Promocode gültig bis 31.12.2011)

Group:  English: Entertainment » microsoft.public.windowsmedia.player.web
Thread: How do I create a Play List

HTVi
TV Discussion Newsgroups

How do I create a Play List
Jason 10/10/2008 12:03:05 AM
Does anyone know the code for creating a playlist, or allowing me to load
multiple training videos into one media player. I maintain my companies web
site and have to load a few training videos. i would rather not have to have
code for a player for each video if there is a way to have multiple videos on
one player. Here is the code I am working with to get one working:

<object height="425" width="500"
classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param value="Peds ETT Taping_WMV V9.wmv" name="FileName" />
<param value="false" name="AutoStart" />
<param value="true" name="ShowGotoBar" />
<param value="true" name="VideoBorderWidth" />
<param value="true" name="VideoBorder3D" />
<param value="0" name="Volume" />
<param value="True" name="ShowStatusBar" /></object>
Re: How do I create a Play List
"zachd [MSFT]" <zachd[ at ]nomailplz.online.microsoft.com> 10/14/2008 6:14:26 AM

Why are you using the 22d CLSID as opposed to the newer 6bf CLSID? Have you
looked at how to use the OCX on MSDN.microsoft.com ? Have you tried using
an ASX file for your playlists?

--
Speaking for myself only.
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--
"Jason" <Jason[ at ]discussions.microsoft.com> wrote in message
news:AF506F92-2F50-4370-8EA3-4B36072EF552[ at ]microsoft.com...
[Quoted Text]
> Does anyone know the code for creating a playlist, or allowing me to load
> multiple training videos into one media player. I maintain my companies
> web
> site and have to load a few training videos. i would rather not have to
> have
> code for a player for each video if there is a way to have multiple videos
> on
> one player. Here is the code I am working with to get one working:
>
> <object height="425" width="500"
> classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
> <param value="Peds ETT Taping_WMV V9.wmv" name="FileName" />
> <param value="false" name="AutoStart" />
> <param value="true" name="ShowGotoBar" />
> <param value="true" name="VideoBorderWidth" />
> <param value="true" name="VideoBorder3D" />
> <param value="0" name="Volume" />
> <param value="True" name="ShowStatusBar" /></object>

Re: How do I create a Play List
Jason 10/15/2008 4:03:02 PM
Zach I figured it out and a few other things in the process, I actually asked
the question incorrectly. I was using the 22dCLSID because the 6bf wasnt
showing me any videos, then I learned that I have to call the file URL, not
FileName, which changed everything. The other thing I learned was that I can
and did create a playlist, but thats not what I really wanted. A play list
just plays all the videos in the ASX file in succession which isnt what I
wanted, I want the end user to be able to actually see what videos there are
and pick the one they want to view much like a library. This I still havent
learned how to do and and dont know if it can be done, so if you know the
answer to this question I would like to know what it is. This is something I
can do with flash, but I really wanted to use the Media Player not a flash
player.

"zachd [MSFT]" wrote:

[Quoted Text]
>
> Why are you using the 22d CLSID as opposed to the newer 6bf CLSID? Have you
> looked at how to use the OCX on MSDN.microsoft.com ? Have you tried using
> an ASX file for your playlists?
>
> --
> Speaking for myself only.
> See http://zachd.com/pss/pss.html for some helpful WMP info.
> This posting is provided "AS IS" with no warranties, and confers no rights.
> --
> "Jason" <Jason[ at ]discussions.microsoft.com> wrote in message
> news:AF506F92-2F50-4370-8EA3-4B36072EF552[ at ]microsoft.com...
> > Does anyone know the code for creating a playlist, or allowing me to load
> > multiple training videos into one media player. I maintain my companies
> > web
> > site and have to load a few training videos. i would rather not have to
> > have
> > code for a player for each video if there is a way to have multiple videos
> > on
> > one player. Here is the code I am working with to get one working:
> >
> > <object height="425" width="500"
> > classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
> > <param value="Peds ETT Taping_WMV V9.wmv" name="FileName" />
> > <param value="false" name="AutoStart" />
> > <param value="true" name="ShowGotoBar" />
> > <param value="true" name="VideoBorderWidth" />
> > <param value="true" name="VideoBorder3D" />
> > <param value="0" name="Volume" />
> > <param value="True" name="ShowStatusBar" /></object>
>
Re: How do I create a Play List
"zachd [MSFT]" <zachd[ at ]nomailplz.online.microsoft.com> 10/17/2008 1:36:03 AM

For that kind of thing you would need to script against the OCX -
msdn.microsoft.com has the WMP SDK that would cover that kind of thing.
You'd have your HTML list of content and pipe selections to the OCX via
Javascript.

--
Speaking for myself only.
See http://zachd.com/pss/pss.html for some helpful WMP info.
This posting is provided "AS IS" with no warranties, and confers no rights.
--
"Jason" <Jason[ at ]discussions.microsoft.com> wrote in message
news:E7E56FE0-7D93-4994-97BD-559D01AA4B08[ at ]microsoft.com...
[Quoted Text]
> Zach I figured it out and a few other things in the process, I actually
> asked
> the question incorrectly. I was using the 22dCLSID because the 6bf wasnt
> showing me any videos, then I learned that I have to call the file URL,
> not
> FileName, which changed everything. The other thing I learned was that I
> can
> and did create a playlist, but thats not what I really wanted. A play
> list
> just plays all the videos in the ASX file in succession which isnt what I
> wanted, I want the end user to be able to actually see what videos there
> are
> and pick the one they want to view much like a library. This I still
> havent
> learned how to do and and dont know if it can be done, so if you know the
> answer to this question I would like to know what it is. This is
> something I
> can do with flash, but I really wanted to use the Media Player not a flash
> player.
>
> "zachd [MSFT]" wrote:
>
>>
>> Why are you using the 22d CLSID as opposed to the newer 6bf CLSID? Have
>> you
>> looked at how to use the OCX on MSDN.microsoft.com ? Have you tried
>> using
>> an ASX file for your playlists?
>>
>> --
>> Speaking for myself only.
>> See http://zachd.com/pss/pss.html for some helpful WMP info.
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>> --
>> "Jason" <Jason[ at ]discussions.microsoft.com> wrote in message
>> news:AF506F92-2F50-4370-8EA3-4B36072EF552[ at ]microsoft.com...
>> > Does anyone know the code for creating a playlist, or allowing me to
>> > load
>> > multiple training videos into one media player. I maintain my
>> > companies
>> > web
>> > site and have to load a few training videos. i would rather not have
>> > to
>> > have
>> > code for a player for each video if there is a way to have multiple
>> > videos
>> > on
>> > one player. Here is the code I am working with to get one working:
>> >
>> > <object height="425" width="500"
>> > classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
>> > <param value="Peds ETT Taping_WMV V9.wmv" name="FileName" />
>> > <param value="false" name="AutoStart" />
>> > <param value="true" name="ShowGotoBar" />
>> > <param value="true" name="VideoBorderWidth" />
>> > <param value="true" name="VideoBorder3D" />
>> > <param value="0" name="Volume" />
>> > <param value="True" name="ShowStatusBar" /></object>
>>


Home | Search | Terms | Imprint Contact
Newsgroups Reader - provided by WiredBox.Net
Suche nach Orten, Städten, Postleitzahlen, Vorwahlen, Kfz-Kennzeichen