Tagged Questions
0
votes
0answers
6 views
J2me how to use amr sound files?
I created player for amr sound but i have problem while running it on samsung device.
once i stop the sound and again if i play sound is not playing .
code to create player is :
InputStream ...
0
votes
0answers
52 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
145 views
YouTube videos in java me
I want to open youtube videos in j2me. Like for example when i pass it a certain youtube link for example if i try to open the link "youtube.com/v/Q3dpUTJeFXA" It should start it in the device media ...
1
vote
0answers
1k views
JaveME/J2ME video player - buffered streaming for large files over http
I'm trying to play videos on JavaME by streaming over http. I'm able to play 3gp/mp4 video files that are less than 800kb in size, using a HTTPConnection and a InputStream. Any larger video throws up ...
2
votes
1answer
914 views
java J2me Player, Play Mp3 Files One After The Other
i am unable to play an mp3 file one after the other, when 1 file finishes playing the other file needs to start. i am only able to start playing 1 file, when i put code to start the next file it just ...
0
votes
0answers
980 views
play video on blackberry player
Hi i get the video url http://a1408.g.akamai.net/5/1408/1388/2005110405/1a1a1ad948be278cff2d96046ad90768d848b41947aa1986/sample_mpeg4.mp4 .
I pass the url to browser. its playing fine.
But i ...
0
votes
1answer
627 views
unable to play mp3 in j2me
I am trying to play file from direct web link(http) but it throws exception Can not create player for: Unsupported contect type
code is simple as
Player player = ...
1
vote
1answer
876 views
How to play .mp3 songs from files in memory card in J2ME
I am trying to create a Music Player App in J2ME. I want to know how can we play the mp3 files stored in memory card and phone memory. below is the code i am trying to execute(in else part). It ...
0
votes
2answers
142 views
Unknown NullPointerException when creating simple player
I am trying to write a simple player but on running this code, it throws a NullPointerException.
try {
player = Manager.createPlayer("C:\\Users\\Admin\\Desktop\\Movie_0001.3gp");
...
0
votes
2answers
831 views
j2me problem with playing multiple sound files
I have a problem with playing more than 2 sound files in a game I'm developing now in j2me MIDP2 in eclipse.
Please advice me the best way for playing multiple "wav" sound files.
I created the ...
3
votes
1answer
456 views
Blackberry reduce audio player buffer
I am implementing audio streaming app which handles the streaming process manually by implementing custom Datasource and Sourcestream.
From all my tests I found that the blackberry audio player has ...
0
votes
1answer
404 views
Sound Recorder in j2me
I am developing a midlet application for recording in .wav format.
I use nokia sdk 6th edition.
I tried with Player using following code.
p = Manager.createPlayer("capture://audio?enc=audio/wav");
...
7
votes
1answer
955 views
Does J2ME Media Player on Nokia E65 work?
I'm trying to write a simple media playback application in J2ME. Currently I'm starting with the most simple thing, I just want to play wav file from resource included in the jar file.
I'm using this ...
6
votes
3answers
2k views
Alternatives to rotating buffers into Players in J2ME?
Due to (quite annoying) limitations on many J2ME phones, audio files cannot be played until they are fully downloaded. So, in order to play live streams, I'm forced to download chunks at a time, and ...