Tagged Questions

1
vote
2answers
18 views

Silverlight - Determine if a wma is protected by DRM

Is there a way to determine if a wma file is DRM'd? I'd like to be able to do this in a trusted, out of browser Silverlight 4 application so pinvoke isn't an option. I supposed I could just try to …
0
votes
0answers
37 views

Can a native Blackberry application (not MIDlet) use MIDP Push Registry?

If I am writing a MIDlet, and if the device supports SMS push registration (i.e. supports WMA 1.1 spec), I will be able to send push messages to the application that is installed on the phone and is …
0
votes
1answer
55 views

How to predeliver WMA DRM licenses ?

I'm trying to install WMA DRM licenses files silently so that users would not have to play each song and acknowledge for each license. I figured out that I need to do something like this : HRESULT …
2
votes
2answers
343 views

Convert a wma to wav programatically with Windows Media Encoder

Has anyone converted a WMA to a WAV using Windows Media Encoder? If so, do you have a short code snippet of how you did it? All samples I've seen have been for WAV to WMA, not the other way around.
1
vote
2answers
87 views

Is it possible to progressive play DRMed tracks

Is it possible to legally progressive play Windows Media DRM tracks as they are downloaded from a HTTP link? I've managed to do this without DRM but someone here told me it wasn't possible with DRM. …
0
votes
1answer
308 views

Decode WMA with FFMpeg to PCM

Hello, I want to decode a WMA stream to 16 Bit PCM. Now i have a Question concerning FFMpeg- what is the output format of .. len = avcodec_decode_audio2(c, (int16_t *)outbuf, &outbuf_used, …
2
votes
1answer
228 views

Best .Net library to edit WMA tags?

I have found a few libraries to edit MP3 tags (UltraID3Lib is great) but none that will edit tags for WMA files. Can anyone recommend a .net library for editing WMA tags / metadata ? Thanks MATT
2
votes
4answers
971 views

Convert WAV to WMA using .NET

What is the best solution for converting WAV files to WMA (and vice versa) in C#? I have actually implemented this once already using the Windows Media Encoder SDK, but having to distribute Windows …