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)
Questions tagged [wma]
108 questions
0
votes
0 answers
How do I get WMA if index size is greater than window size?
Is there a way to find the average of numbers if the window size is less than the index?
numbers = [1, 2, 3]
window_size = 4
i = 0
moving_averages = []
while i < len(numbers) - window_size + 1:
this_window = numbers[i : i + window_size]
…

Ghostinshell
- 27
- 6
0
votes
2 answers
Detect if mobile device supports J2ME WMA
Is it possible to detect if the mobile device supports J2ME WMA?

Diogo Cardoso
- 21,637
- 26
- 100
- 138
0
votes
1 answer
detect audio feed wmv/wma stream
I am trying to find an application or code to monitor an audio stream for silence or black video frames and send an email alert when no audio is detected or

user566029
- 45
- 1
- 4
0
votes
1 answer
How to merge wma files to mp3 (with header editing)?
I have some .wma file which I am trying to merge into a single one...
I started with python reading files in bytes and writing them into a new one, just as I tried the cmd command copy /b file1.wma + file2.wma + else.wma total.wma
all came up with…

mohammad farhady
- 53
- 7
0
votes
2 answers
"ASFUnicodeAttribute" problem when printing wma song titles with mutagen
Hey guys I recently started working with mutagen and I'm facing a very annoying problem.
Let´s say I´m trying to print the title of a wma file with mutagen:
from mutagen.asf import ASF
song=r"C:\Users\j2the\Music\The One and Only\Rammstein\Made…

Reinhart Steckin
- 67
- 1
- 8
0
votes
0 answers
Naudio fails to fully read WMA, OGG, and AC3 audio files
I am unable to fully read the audio contents (all bytes) of a WMA file using NAUDIO.
Here are 2 example WMA audio files that…

Elkland Technologies
- 55
- 5
0
votes
0 answers
How to convert WMA (audio) to an array of frequencies and durations
I am recording sounds for a game on my computer, but I am only able to use the audio context to play sounds. I cannot download audio from a server, so how do I convert WMA to a playable array with audio context.
It is easy to record audio on my…

John Porter
- 33
- 7
0
votes
1 answer
SMS goes to the inbox when the mobile is disconnected
I'm using J2ME WMA to send/receive SMS into a specific port, which in my case is port 50000. When one of the mobile devices is not running the application the message goes to the inbox, which by default is port 0.
Is there any way to prevent this…

Diogo Cardoso
- 21,637
- 26
- 100
- 138
0
votes
0 answers
How do I get the bitrate from a WMA file in C#?
I've searched using Google for any information that could help me accurately get bitrate data from a wma file. As far as I can tell, there isn't any documentation on either obtaining the bitrate or on the layout of a wma file. Does anyone have…

Gregor J
- 31
- 7
0
votes
1 answer
J2ME WMA Delivery Report
What's the best way to implement delivery report in J2ME WMA?

Diogo Cardoso
- 21,637
- 26
- 100
- 138
0
votes
1 answer
How to play a wma audio file using Qt or any other cpp framework on linux?
To make the code below work:
#include
#include
#include
#include
int main(int argc, char **argv) {
QApplication application(argc, argv);
QPushButton button("Click Me");
…

BaiJiFeiLong
- 3,716
- 1
- 30
- 28
0
votes
1 answer
Problem using J2ME WMA to send/receive SMS
I'm using WMADemo of the JavaME SDK 3.0 and it's working fine in simulator.
When I install the application in a mobile device it doesn't work. I tried both port 0 (default SMS) and 50000 (listener) with no success. No exception was thrown.

Diogo Cardoso
- 21,637
- 26
- 100
- 138
0
votes
1 answer
iPhone: Anyway of streaming WMA?
Does anyone have a solution or a possible open library that can be used to stream WMA radio station streams on iPhone?
I know for a fact that there are Apps out which are able to do this.
Any pointers on where to start?

dpigera
- 3,339
- 5
- 39
- 60
0
votes
1 answer
RTSP Audio Clicks/Pops/Peaks/glitches and ticks. (iPhone Streaming) Any advice?
I'm using some code related to RTSP, RTP to listen to various RTSP Streams Using FFMPEG, it works!
BUT
The noise is being decoded in such a way that every 10 seconds a glitch in the ASF decoding of the stream occurs, where the Volume Peaks and makes…

David van Dugteren
- 3,879
- 9
- 33
- 48
0
votes
1 answer
Name of the property that specifies the desired bit rate in CBR audio encoding
I'm trying to configure a "Windows Media Audio Standard" DMO codec to compress in single-pass, constant bit-rate mode (CBR). Unfortunately I can not find on the MSDN documentation how can I pass the desired bit-rate to the encoder object.
In other…

BlueStrat
- 2,202
- 17
- 27