Questions tagged [wma]

May refer to Windows Media Audio format. Also may refer to Java ME Wireless Messaging API - 1.0 (JSR 120) and 2.0 (JSR 205)

108 questions
1
vote
1 answer

How to convert from wma to mp3 using NAudio

Please note This is NOT a duplicate of the other question linked. That uses classes I couldn't find, as detailed in my question below. I'm trying to convert wma files to mp3. I need a solution that I can integrate into my code base, not rely on an…
Avrohom Yisroel
  • 8,555
  • 8
  • 50
  • 106
1
vote
1 answer

Is there a universal application ID for sending MMS in J2ME?

I'm having problems with this. The thing is that when I send an MMS with J2ME to another devices with JSR 205 (two tested: SonyEriccson w610i and Nokia 5300), a receiving icon flashes, but the message is not in the inbox folder. I think this happens…
rockberto
  • 31
  • 1
  • 5
1
vote
2 answers

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 play the file in a MediaElement but that doesn't…
James Cadd
  • 12,136
  • 30
  • 85
  • 134
1
vote
2 answers

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 listening to SMS messages at the assigned port.…
Kiran Kuppa
  • 1,457
  • 10
  • 18
1
vote
2 answers

Possible to get the length of a WMA file without using Windows Media Player?

I need to find a way to get the length of a WMA file without using any of the Windows Media Player(WMP) dlls. I found way to do it using WMP dlls, which you can see here, but due to another issue, I'd rather find a way where I don't have to use…
Abe Miessler
  • 82,532
  • 99
  • 305
  • 486
1
vote
0 answers

Windows Phone 7.8 and wma audio streaming problems

Our application streams wma audio content using AudioPlayerAgent (background player). Everything worked perfectly on WP 7.5 until the update to WP 7.8 has been released. Than it stopped streaming. To exclude errors in our code we downloaded the…
STeN
  • 6,262
  • 22
  • 80
  • 125
1
vote
1 answer

J2ME Sms Send Permissions for n85 to suppress security warnings

The code below works: import javax.microedition.io.*; import javax.microedition.lcdui.*; import javax.microedition.midlet.MIDlet; import javax.wireless.messaging.*; /** * @author Panda */ public class Midlet extends MIDlet implements…
1
vote
2 answers

Playing part of a sound (WMA) file in C#

I have a single WMA file which contains lots of different pieces of audio. Is there any way I can play part of a sound stream? Something like: public static void Play(Stream soundStream, long start, long end);
Ozzah
  • 10,631
  • 16
  • 77
  • 116
1
vote
1 answer

deploying j2me application on old handsets

I was to develop a simple j2me application for microworks. The application is to send sms. But I found that most of the mobile phone they carry are very simple and even some of them don't have Bluetooth, infrared, browser. How to make it work…
user98239820
  • 1,411
  • 2
  • 16
  • 30
1
vote
1 answer

Audio compression in Windows Store apps?

I'm looking for a way to compress wav files to some other format - mp3, wma or ogg. Is there any library I could use? Lame would not work in a WinStore app, or would it?
Filip Skakun
  • 31,624
  • 6
  • 74
  • 100
1
vote
0 answers

j2me: send sms(message) error

I am developing an app with j2me polish and for sending sms. I used javax.wireless.messaging. but in some phones such as sony erricson and some emulators, it faces some errors related to this class, Is there any other ways to send sms that is…
1
vote
1 answer

SecurityException in j2me WMA application for sending/receiving SMS

I am developing an Application in j2me that works with Wireless Messaging API (WMA). The application mission is sending and receiving SMS between 2 mobile phone.When i run the app in NetBeans emulator it works fine but when i run it on Nokia 5200…
CoderInNetwork
  • 2,923
  • 4
  • 22
  • 39
1
vote
0 answers

how to giving the telephone number of a sms sender in j2me (WMA)

I tried to give the sms number from Textmessage getAdress method but it return null. I use netbeans IDE. receiver: ms=(MessageConnection)Connector.open("sms://:"+5000); ms.setMessageListener(new MessageListener() { …
CoderInNetwork
  • 2,923
  • 4
  • 22
  • 39
1
vote
3 answers

why I get "not supported yet" exception in j2me in send receive sms?

I try to send and receive sms in j2me but when Netbeans suggest method for me it also adds an exception in it: ms.setMessageListener(new MessageListener() { public void notifyIncomingMessage(MessageConnection mc) { throw new…
CoderInNetwork
  • 2,923
  • 4
  • 22
  • 39
1
vote
2 answers

WMA support in Java

Actually, we need to convert a WMA audio file into FLAC. But there's a lack of ways to convert WMA into more convenient formats. Can you recommend us a library, that can help us, or something like that?