Mobile Media API is a Java ME specification, JSR 135, that supports multimedia applications on J2ME-enabled devices.
0
votes
1answer
30 views
Playing a generated sound j2me
I have this code for Android, that plays a custom sound, it works fine:
AudioTrack output = new AudioTrack(AudioManager.STREAM_MUSIC, baudRate, AudioFormat.CHANNEL_OUT_MONO, ...
1
vote
0answers
238 views
How to download and Play video in J2ME
How to download and play video in j2me?
My code working for download
In samsung : Download completed as same bytes file writen in same bytes but not supporting file format,
In nokia2690 download ...
2
votes
0answers
99 views
Media cannot start while another media is active
I am developing an application in BlackBerry in which video is to be played from the SDCard. But I am getting Media Exception such as Media cannot start while another media is active.
When I debugged ...
0
votes
1answer
176 views
In J2ME How to find the capability of emulator to check whether it can play certain media file or not
In J2ME, How do I come to know that what is the capability of emulator to play certain media file though it is .mp3 or .wav or any other file
I am using Netbeans with WTK emulators & also nokia ...
2
votes
1answer
430 views
In J2ME After creating a player with one audio file, is that possible to pass an another audio file to same instance of player to play
After creating a player by using method this code:
player = Manager.createPlayer(getClass().getInputStream("/sound.wav"), "audio/x-wav")
Is it possible to pass an audio file to same instance of ...
0
votes
0answers
55 views
Application freezes when trying to close a player after closing the corresponding InputStream
Consider the following code:
iStreamSound = getClass().getResourceAsStream("file.wav");
player = Manager.createPlayer(iStreamSound, "audio/wav");
player.prefetch();
player.play();
...
0
votes
1answer
92 views
Trying to play audio on Nokia C3, results in : Failed to fetch media data
I am currently working on a project that uses Manager.createPlayer(InputStream is, String mimeType) to create an audio player.
The audio player works perfectly on the emulator. On a Nokia C3 it is ...
1
vote
0answers
126 views
RecordControl with platformRequest could they work?
My goal is to produce an application that dial a phone number then record the conservation.
I have tested this code which record voice and then play it on my 5310 correctly.
import java.io.*;
...
0
votes
1answer
98 views
PlayerListener MMAPI
when running the program, music still running but console don't print the messenge. Where is the problem?
I don't use english well. Sorry.
public class MultimediaSound extends MIDlet {
public ...
0
votes
1answer
289 views
Voice or Audio player for .amr file in Java ME
I am working on audio recording in Nokia S40 series mobiles. I am able to record the message, but I am not able to play the recorded audio message.
Can anyone help me how to code for voice player for ...
4
votes
1answer
345 views
Getting an exception when recording audio in J2me
I am getting a exception when I am recording a audio in Nokia C1. Below is the following exception I am getting:
Error2:
javax.microediting.media.MediaException: MUS
Can anyone help me in removing ...
1
vote
0answers
146 views
How to play videos with audio in J2ME
I am trying to play a video (in simulator) by writing an application in J2ME. I am able to play the audio associated with it, but cannot play the video.
Can someone tell me the relative settings ...
0
votes
1answer
593 views
simultaneous record and play audio j2me
I am trying to PLAY and record simultaneously. I play a sine wave from jar and want to record it in another wav file (test.wav).
I have the following source code. I assume that the recording need to ...
0
votes
0answers
103 views
Synchronizing audio in J2ME
When I try to play audio files using Player, there is often a lag before the sound starts playing, regardless of whether I prefetched it or not. This causes some problems, mainly that I cannot create ...
3
votes
1answer
163 views
How to simulate camera midlet in Nokia C6?
I need to simulate the behaviour of the default camera midlet from Nokia.
It's for Nokia C6, and I am writing it in J2ME.
I use MMAPI, the problem is the size of VideoControl item, I made it ...
1
vote
1answer
573 views
Implement video streaming in java me using rtsp
I want to implement video streaming in java me using rtsp url. When tested the code on devices, I get Media Exception stating Prefetch Error-33. Here's my code
private void startStreaming()
{
...
1
vote
1answer
247 views
Flv Decoder in J2ME for playing Youtube videos
I am looking for playing flv files using J2ME. Is there any possibility for doing so? Is there any other way to play youtube videos through J2ME?
1
vote
3answers
597 views
J2me application out of memory exception on multiple time file play
In my j2me application i have to play a small sound file each times user click on an item. But the issues is when i play sound file multiple times like after 10-14 times it gives me
out of memory ...
0
votes
1answer
724 views
play file wav j2me - IllegalArgumentException at Manager.createPlayer()
I got problem about play wav file in my application.
This is my error:
java.lang.IllegalArgumentException
at javax.microedition.media.Manager.createPlayer(), bci=8
at ...
1
vote
0answers
556 views
Voice recording and playing simultaneously
I have been assigned a task to record a audio and playing it simultaneously.
For this I am using multithreading. One thread to record audio and other one is for playing it.
I am trying below code ...
-1
votes
1answer
121 views
How to play audio through the loudspeaker in J2ME
I'm using JSR 135 to play an audio file.
This is the way I'm doing it.
InputStream is = getClass().getResourceAsStream("/tone.mp3");
Player p = Manager.createPlayer(is, "audio/mp3");
...
1
vote
0answers
296 views
Mp3 Streaming Using Player Switching
I am developing a sample application which can play shoutcast mp3 streams (Developing for S40 platforms, CLDC 1.1, MIDP 2.0). I am using two players switching for continues play back.
I used the ...
0
votes
1answer
131 views
How to stop sound/music in J2ME for S60
I am trying to stop sound when user exits the application by pressing Hang up key in Series 60. But the application goes to background and the sound still plays.
I want to stop the sound when user ...
1
vote
0answers
199 views
How to produce the loudest sound possible on a J2ME phone?
I have a midlet that upon discovering something displays some information, vibrates, flashes the screen, and makes a sound - all to get the user's attention. The problem is that the sound is not loud ...
3
votes
2answers
345 views
Notification sound not playing in J2ME
I am working on a J2ME application.
I am using Nokia 6131 NFC phone. I am using NetBeans IDE.
I have 4 forms and I am playing some notification sounds for the user while filling the form.
The problem ...
0
votes
0answers
168 views
how to generate DTMF tones in j2me
I was wondering if anyone has come across a way to generate DTMF tones in J2ME. I am trying to generate DTMF tones in J2ME, and can't seem to find anything substantial out there. If anyone has any ...
0
votes
1answer
469 views
J2ME video capture throws MediaException: Invalid locator: capture://video
I was trying to capture a video in a J2ME application with the following snippet
private void createCamera() throws IOException, MediaException {
videoComponent = ...
0
votes
0answers
155 views
What is the Structure of recorded data in j2me using audio/basic as type?
I am recording audio from microphone in a j2me phone to a ByteArrayOutputStream as follows
p = Manager.createPlayer("capture://audio?encoding=pcm");
p.realize();
RecordControl rc = ...
0
votes
1answer
245 views
J2me Createplayer does not work on samsung phones
I am trying to create J2me application which will capture the image and upload it on the server.
I have used following code for capture image.
player = Manager.createPlayer("capture://video");
...
1
vote
1answer
580 views
Java Me video player realize error with http - MediaException
I'm using the below code (references from, http://www.java-tips.org/java-me-tips/midp/playing-video-on-j2me-devices.html). It fails at 'realize()', with the javax.microedition.media.MediaException, ...
3
votes
1answer
279 views
Unable to open camera on samsung phone in j2me
I have written following piece of code. It is used to create camera player. I tested it on nokia phones. It's working fine and I am able to see camera and use its functionality.
But the issue is that ...
2
votes
2answers
292 views
Not able to capture an image using Nokia Mobile but in Computer application works fine?
I am making an application in which user will be able to use camera, capture and save that image to C drive, and i am also able to perform all these when i use this application with my PC.
But ...
2
votes
0answers
433 views
Image Capturing is not working with Nokia C2-01,02,03
I am able to Capture and save image local C Drive to my PC, but whenever I want to capture an image using Nokia C2-01,01,03 then Camera command is working but Capture command is not working.
What ...
1
vote
1answer
333 views
handle external volume keys in J2me
Can you please give me some idea about why S40 device does not get external volume key events?
I have this phone:
Nokia 5130 XpressMusic - Series 40 5th Edition, Feature Pack 1
Nokia 3110 Classic. ...
0
votes
1answer
314 views
Resume player when incoming call
I want that after incoming call Track continues from point stop
I use this code:
public void playerUpdate(Player player, String event, Object data) {
if(event == ...
1
vote
0answers
229 views
Seekbar and Seek functionality in J2ME
How to design seekbar and its functionality for Video/Audio Player in J2ME?
I've tried with Slider Component in LWUIT but it's not working perfectly.
Used Sample piece of code from WTK samples but ...
2
votes
1answer
184 views
how to get default video control of native video player in lwuit?
Below is the code that I have used to play video in native video player. But I am not getting any default control like stop, pause, play.
What I am missing over here? If my code is wrong then what is ...
0
votes
1answer
309 views
How to seek streaming media in blackberry
I'm using following code to forward streaming media. But it is giving me exception seeking not allowed on media.
Is there any way to seek streaming media in blackberry?
private void forwardPlayer(){
...
-2
votes
1answer
133 views
Media Exception inJ2ME [closed]
In my code to capture a photo using a phone camera and send to the server, I am getting an error Message Media Exception: Timed out while making a camera snapshot.
4
votes
2answers
286 views
Cannot replay sound in J2ME
I have problem restart sound in J2ME. I want to create player in constructor, then call playExplosion() to play it, but it only plays once. I'm using Wireless Toolkit.
Sound class
public class Sound ...
2
votes
2answers
523 views
Camera snapshot in J2ME Null Pointer Exception
I've spent long on this but no success yet. In my application to capture image and send to the server, I get NullPointerException below;
java.lang.NullPointerException: 0
at ...
1
vote
1answer
235 views
How to draw an image over a VideoComponent control using LWUIT framework?
I tried to find variants to draw one image over one VideoComponent and apparently not is possible!. What I do is to display an image on pause video playback and add a back button to a Form.
The ...
0
votes
0answers
83 views
Midlet in Windows Mobile snapshot image size
I have a Midlet that runs on Windows Mobile using javaFx. The problem is that when I get a snapshot the size of the picture is always too small.
No matter what confituration I use the image is ...
0
votes
2answers
654 views
How to pause and play a J2ME audio player streaming with RTP
Here is how I try to play an audio streaming from a server over RTP.
try {
String url = "rtp://...";
Player p = Manager.createPlayer(url);
p.realize();
VideoControl video = ...
0
votes
0answers
293 views
Audio is playing video is not displaying in Samsung Device
Below is code for the Video playback in J2ME application.after executing this code only audio is coming video is not display on the Samsung Champ Duos. Video is inside the memory card that's way we ...
0
votes
0answers
349 views
MediaPlayer.realize() takes too much time in the Samsung Champ Duos
Samsung Champ Duos I faced worried problem. create media player application.
But it takes too much time in player.realize(); and application gets hung.
In Samsung ...
0
votes
1answer
476 views
Unable to capture picture using camera in J2ME Polish?
I am developing a Mobile Application in J2ME. Now I am converting it into J2ME Polish. In my application, I capture a picture using camera in mobile phone. It works fine in J2ME. But it does not work ...
1
vote
1answer
322 views
Playing audio on CDC device j2me
I have a j2me app built for a CDC device. I have used Personal profile to display the UI.
However now I need to play audio. AFAIK in j2me I can play audio only through J2me MMAPI i.e JSR135.
But on my ...
0
votes
2answers
720 views
j2me + javax.microedition.midlet.MediaException:Sounds not allowed
I am trying to Play MP3 and getting unexpected errors.
I have tested my app before 3 days
which was working perfect on my device
but now even that same jar file is giving me following error.
...
0
votes
1answer
184 views
can HTC diamond support MMAPI using j2me
I wanted to let my j2me project have the ability to take picutre using MMAPI(JSR135)
So I check my HTC Diamond with the following code
import javax.microedition.lcdui.Command;
import ...


