Hi there,

is it possible to use any version of mediaplayer
(wmp.dll) to give ce 4.2 devices the ability to not
only play .wav files (through p/invoke coredll.dll)
but also .mp3 files?

Are there third-party components/dll's which can
be used from within managed (c#) code?

Kind regards,
Sascha

Re: Playing mp3 files on ce 4.2 devices by ctacke/>

ctacke/>
Sat May 20 07:49:47 CDT 2006

WMP doesn't have MP3 support. There are plenty of open source MP3 libraries
that could be ported to CE, but I'm not aware of anything that easily
interops with C#.

-Chris


"Sascha" <Sascha@discussions.microsoft.com> wrote in message
news:AF5B354B-8D89-46F3-BEDB-50C3D79C0C01@microsoft.com...
> Hi there,
>
> is it possible to use any version of mediaplayer
> (wmp.dll) to give ce 4.2 devices the ability to not
> only play .wav files (through p/invoke coredll.dll)
> but also .mp3 files?
>
> Are there third-party components/dll's which can
> be used from within managed (c#) code?
>
> Kind regards,
> Sascha



Re: Playing mp3 files on ce 4.2 devices by Sascha

Sascha
Sat May 20 08:29:01 CDT 2006

Hello Chris,

i might be wrong, but i am using wmp.dll as a reference in one of
my mobile 5 projects and it plays .mp3 files like a charm. Maybe the
wmp instance uses certain codecs preinstalled on the device?

Kind Regards,
Sascha



"<ctacke/>" wrote:

> WMP doesn't have MP3 support. There are plenty of open source MP3 libraries
> that could be ported to CE, but I'm not aware of anything that easily
> interops with C#.
>
> -Chris
>
>
> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
> news:AF5B354B-8D89-46F3-BEDB-50C3D79C0C01@microsoft.com...
> > Hi there,
> >
> > is it possible to use any version of mediaplayer
> > (wmp.dll) to give ce 4.2 devices the ability to not
> > only play .wav files (through p/invoke coredll.dll)
> > but also .mp3 files?
> >
> > Are there third-party components/dll's which can
> > be used from within managed (c#) code?
> >
> > Kind regards,
> > Sascha
>
>
>

Re: Playing mp3 files on ce 4.2 devices by ctacke/>

ctacke/>
Sat May 20 09:08:26 CDT 2006

I was wrong - it supports MP3. You can host the WMP COM control in your app
to play the MP3. Alex Feinman has awebcast on MSDN that covers this

-Chris



"Sascha" <Sascha@discussions.microsoft.com> wrote in message
news:3DB9AAF2-BEF1-4E71-ACD7-22CF26C95874@microsoft.com...
> Hello Chris,
>
> i might be wrong, but i am using wmp.dll as a reference in one of
> my mobile 5 projects and it plays .mp3 files like a charm. Maybe the
> wmp instance uses certain codecs preinstalled on the device?
>
> Kind Regards,
> Sascha
>
>
>
> "<ctacke/>" wrote:
>
>> WMP doesn't have MP3 support. There are plenty of open source MP3
>> libraries
>> that could be ported to CE, but I'm not aware of anything that easily
>> interops with C#.
>>
>> -Chris
>>
>>
>> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
>> news:AF5B354B-8D89-46F3-BEDB-50C3D79C0C01@microsoft.com...
>> > Hi there,
>> >
>> > is it possible to use any version of mediaplayer
>> > (wmp.dll) to give ce 4.2 devices the ability to not
>> > only play .wav files (through p/invoke coredll.dll)
>> > but also .mp3 files?
>> >
>> > Are there third-party components/dll's which can
>> > be used from within managed (c#) code?
>> >
>> > Kind regards,
>> > Sascha
>>
>>
>>



Re: Playing mp3 files on ce 4.2 devices by Sascha

Sascha
Sat May 20 09:19:02 CDT 2006

Hello Chris,

thanks for verifying this - do you know if it will work on
CE 4.2 devices aswell (no built in wmp) ?

Kind Regards,
Sascha

"<ctacke/>" wrote:

> I was wrong - it supports MP3. You can host the WMP COM control in your app
> to play the MP3. Alex Feinman has awebcast on MSDN that covers this
>
> -Chris
>
>
>
> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
> news:3DB9AAF2-BEF1-4E71-ACD7-22CF26C95874@microsoft.com...
> > Hello Chris,
> >
> > i might be wrong, but i am using wmp.dll as a reference in one of
> > my mobile 5 projects and it plays .mp3 files like a charm. Maybe the
> > wmp instance uses certain codecs preinstalled on the device?
> >
> > Kind Regards,
> > Sascha
> >
> >
> >
> > "<ctacke/>" wrote:
> >
> >> WMP doesn't have MP3 support. There are plenty of open source MP3
> >> libraries
> >> that could be ported to CE, but I'm not aware of anything that easily
> >> interops with C#.
> >>
> >> -Chris
> >>
> >>
> >> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
> >> news:AF5B354B-8D89-46F3-BEDB-50C3D79C0C01@microsoft.com...
> >> > Hi there,
> >> >
> >> > is it possible to use any version of mediaplayer
> >> > (wmp.dll) to give ce 4.2 devices the ability to not
> >> > only play .wav files (through p/invoke coredll.dll)
> >> > but also .mp3 files?
> >> >
> >> > Are there third-party components/dll's which can
> >> > be used from within managed (c#) code?
> >> >
> >> > Kind regards,
> >> > Sascha
> >>
> >>
> >>
>
>
>

Re: Playing mp3 files on ce 4.2 devices by ctacke/>

ctacke/>
Sat May 20 15:23:19 CDT 2006

It requires WMP 10, so no, it won't be supported on CE 4.2

-Chris


"Sascha" <Sascha@discussions.microsoft.com> wrote in message
news:74402F98-AD6E-41A4-99E4-B594A67CD220@microsoft.com...
> Hello Chris,
>
> thanks for verifying this - do you know if it will work on
> CE 4.2 devices aswell (no built in wmp) ?
>
> Kind Regards,
> Sascha
>
> "<ctacke/>" wrote:
>
>> I was wrong - it supports MP3. You can host the WMP COM control in your
>> app
>> to play the MP3. Alex Feinman has awebcast on MSDN that covers this
>>
>> -Chris
>>
>>
>>
>> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
>> news:3DB9AAF2-BEF1-4E71-ACD7-22CF26C95874@microsoft.com...
>> > Hello Chris,
>> >
>> > i might be wrong, but i am using wmp.dll as a reference in one of
>> > my mobile 5 projects and it plays .mp3 files like a charm. Maybe the
>> > wmp instance uses certain codecs preinstalled on the device?
>> >
>> > Kind Regards,
>> > Sascha
>> >
>> >
>> >
>> > "<ctacke/>" wrote:
>> >
>> >> WMP doesn't have MP3 support. There are plenty of open source MP3
>> >> libraries
>> >> that could be ported to CE, but I'm not aware of anything that easily
>> >> interops with C#.
>> >>
>> >> -Chris
>> >>
>> >>
>> >> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
>> >> news:AF5B354B-8D89-46F3-BEDB-50C3D79C0C01@microsoft.com...
>> >> > Hi there,
>> >> >
>> >> > is it possible to use any version of mediaplayer
>> >> > (wmp.dll) to give ce 4.2 devices the ability to not
>> >> > only play .wav files (through p/invoke coredll.dll)
>> >> > but also .mp3 files?
>> >> >
>> >> > Are there third-party components/dll's which can
>> >> > be used from within managed (c#) code?
>> >> >
>> >> > Kind regards,
>> >> > Sascha
>> >>
>> >>
>> >>
>>
>>
>>



Re: Playing mp3 files on ce 4.2 devices by Alex

Alex
Sun May 21 01:35:45 CDT 2006

To clarify a bit:
On a CE platform (not Windows Mobile) there is a player version 6.4 that
does not have an ocx control. On WM 2003 SE *some devices* have WMP10, which
does have OCX. On a bulk of WM2003 device including many 2003SE there is
WMP9 that does not have OCX. On these you can only launch WMP to play your
file or in some cases you can build a directshow graph (if the appropriate
components are present)

"Sascha" <Sascha@discussions.microsoft.com> wrote in message
news:74402F98-AD6E-41A4-99E4-B594A67CD220@microsoft.com...
> Hello Chris,
>
> thanks for verifying this - do you know if it will work on
> CE 4.2 devices aswell (no built in wmp) ?
>
> Kind Regards,
> Sascha
>
> "<ctacke/>" wrote:
>
>> I was wrong - it supports MP3. You can host the WMP COM control in your
>> app
>> to play the MP3. Alex Feinman has awebcast on MSDN that covers this
>>
>> -Chris
>>
>>
>>
>> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
>> news:3DB9AAF2-BEF1-4E71-ACD7-22CF26C95874@microsoft.com...
>> > Hello Chris,
>> >
>> > i might be wrong, but i am using wmp.dll as a reference in one of
>> > my mobile 5 projects and it plays .mp3 files like a charm. Maybe the
>> > wmp instance uses certain codecs preinstalled on the device?
>> >
>> > Kind Regards,
>> > Sascha
>> >
>> >
>> >
>> > "<ctacke/>" wrote:
>> >
>> >> WMP doesn't have MP3 support. There are plenty of open source MP3
>> >> libraries
>> >> that could be ported to CE, but I'm not aware of anything that easily
>> >> interops with C#.
>> >>
>> >> -Chris
>> >>
>> >>
>> >> "Sascha" <Sascha@discussions.microsoft.com> wrote in message
>> >> news:AF5B354B-8D89-46F3-BEDB-50C3D79C0C01@microsoft.com...
>> >> > Hi there,
>> >> >
>> >> > is it possible to use any version of mediaplayer
>> >> > (wmp.dll) to give ce 4.2 devices the ability to not
>> >> > only play .wav files (through p/invoke coredll.dll)
>> >> > but also .mp3 files?
>> >> >
>> >> > Are there third-party components/dll's which can
>> >> > be used from within managed (c#) code?
>> >> >
>> >> > Kind regards,
>> >> > Sascha
>> >>
>> >>
>> >>
>>
>>
>>