Neil Smith [MVP Digital M
Guest
|
Posted:
Thu Oct 27, 2005 8:30 pm Post subject:
Re: Video over hand held device? |
|
|
On Thu, 27 Oct 2005 08:14:04 -0700, Chris Davoli
<ChrisDavoli@discussions.microsoft.com> wrote:
| Quote: | For viewing mpeg video files I'm using ASP.Net web pages and this works fine
for a desktop IE browser. BUT, what I want to do is do the same thing using a
hand held device in the CE browser. I've tried using the OBJECT tag below,
but nothing shows up on the hand held device. Is there an equivalent OCX for
the Hand Held devices?
|
1) Yes, that one should work fine for WM2003 2nd edition devices and
later, where the WMP10 object control is loaded.
For devices earlier than WM2003 2nd edition, or where WMP10 isn't on
the device, the earlier desktop WMP6.4 classID and object model is
applicable. However, the 6.4OCX isn't installed on the devices by
default and must be added manually.
Even then, it doesn't work too well. You can get it in this package :
http://www.pocketpcdn.com/libraries/wmp.html (click the .exe link, not
on the WM Licence homepage link, which is broken)
2) WMP (any version) on the PDAs doesn't support MPEG playback. This
will probably make point (1) useless to you. You need to supply a link
in the browser instead, and hope the user has Betaplayer/TCPMP
installed, which can playback most types of MPEG files.
Cheers - Neil
| Quote: |
OBJECT ID="Player"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
VIEWASTEXT
PARAM name="autoStart" value="True"
PARAM name="URL" value="SomeMediaFile.mpg"
PARAM name="rate" value="1"
PARAM name="balance" value="0"
PARAM name="enabled" value="true"
PARAM name="enabledContextMenu" value="true"
PARAM name="fullScreen" value="false"
PARAM name="playCount" value="1"
PARAM name="volume" value="100"
/OBJECT
--
Chris Davoli |
|
|