Tagged Questions
The mediaplayer tag has no wiki summary.
21
votes
5answers
36k views
Streaming Audio from A URL in Android using MediaPlayer?
I've been trying to stream mp3's over http using Android's built in MediaPlayer class. The documentation would suggest to me that this should be as easy as :
MediaPlayer mp = new MediaPlayer();
...
12
votes
5answers
23k views
iPhone SDK:How do you play video inside a view? Rather than fullscreen
I am trying to play video inside a UIView, so my first step was to add a class for that view and start playing a movie in it using this code:
- (IBAction)movie:(id)sender{
NSBundle *bundle = ...
11
votes
6answers
11k views
Streaming Youtube Videos
I am writing an application to play youtube videos using streaming.
First method:
I am getting the RTSP URL to the video using GData APIs.
Here is the code to play the RTSP url.
VideoView ...
10
votes
2answers
11k views
Android - play sound on button click - Null pointer exception
I am trying to play a sound file on the click of a button. The sound is just 1 sec long. It plays well the first few times I click the button, but after a while it gives a NullPointerException. Here's ...
9
votes
1answer
253 views
Control iPod from another app?
I took a look at Apple's AddMusic sample code, but that's not quite what I want. I'm trying to find a way to start/stop music playing in the iPod app, not controlling what's contained in my app's ...
9
votes
1answer
454 views
Buffering problems with android.media.MediaPlayer
I'm trying to implement a MediaPlayer on an Android app, but now I have two problems, which are not THE BIG SHOWSTOPPER but they are more then annoying and i have to fix it, just for me.
I ...
9
votes
2answers
3k views
MediaPlayer stutters at start of mp3 playback
I've been having a problem playing an mp3 file stored in a raw resource: when the file first starts playing, it generates perhaps a quarter of a second of sound and then restarts. (I know that this is ...
9
votes
6answers
1k views
Dealing with video (DVDs, .avi .mkv) in Java
After looking around for a decent library for playing videos in Java, I've come unstuck. Everyone around is screaming not to use JMF because it's outdated, old and requires the user to install it, ...
9
votes
3answers
11k views
Android MediaPlayer error codes?
I am struggling with getting a live radio stream to work on android. I am using the MediaPlayer class and just setting the URL and playing it. It works great for the most part, but after 5-30 ...
9
votes
2answers
753 views
How to stream authenticated content with MediaPlayer on Android
I've seen quite a few posts asking this question on SO but there doesn't seem to be a definitive answer (or at least an answer I like!)
I've got content protected behind basic auth ...
8
votes
1answer
1k views
Application threads vs Service threads
What are the advantages/disadvantages in placing a lengthy network access code in a thread in an activity or a thread in a service? How would it affect the application? I am writing a streaming ...
7
votes
1answer
459 views
MediaElement disrupting Audio Podcast (MediaPlayer) in WP7
I've had an app fail in the Marketplace due to my audio MediaElement not accounting for background music. Okay. So I've gone about scouring everything and figuring out how account for this:
Don't ...
7
votes
3answers
1k views
How do I create a custom media player to play a custom codec in Android?
n00b here (first Android project). I have been given a custom video codec that has been integrated with an Android firmware build. It's an .so file containing a class that inherits from ...
7
votes
2answers
7k views
Android Mediaplayer: setDataSource issue for downloaded media file
I have an application that will record and play audio files. Some of the audio files are downloaded using simple standard http downloads using httpclient. It worked like a charm for a long time. Now ...
7
votes
3answers
3k views
How play the video using “HTTP Live Streaming” in iphone?
I am new to iphone development,I am parsing a XML URL and display its content in the table, when i click a row , its corresponding parsed tube URL is played using the movie player.I am using media ...
6
votes
5answers
180 views
Video not playing in android
Video not working properly in the below mentioned code,what could be the problem for this?
MediaController mediaController = new MediaController(getBaseContext());
...
6
votes
3answers
461 views
Android MediaPlayer - Sometimes No Video is Played Even Though Audio Plays
I am using Android's MediaPlayer to play some videos in my app. Sometimes the video does not play but the audio does. It's not a simple coding error because most of the time the video plays perfectly. ...
6
votes
4answers
2k views
Live Video Stream between two Android Phones
I am currently working on video streaming between two Android Phone.
I wrote an application which is able to record the video to the sd file (Using MediaRecorder); and I wrote another application ...
6
votes
2answers
1k views
How to get Sampling rate and frequency of music file (MP3) in android?
I am developing audio player in android. So i want to add the details of the playing song i.e. Artist Name, Duration, Bit rate and sampling frequency.
I can get Artist Name and duration of a music ...
6
votes
2answers
1k views
Android MediaPlayer bug when using reset() and release() calls
The bug I'm seeing is on the calls to reset() and release() never returning thus leaving my application in an indefinitely stopping state. It doesn't matter if I call stop() before reset() or ...
6
votes
4answers
6k views
Determine opencore or stagefright framework for mediaplayer?
I need to determine if a mediaplayer is using the opencore media framework, so that I can disable seeking for my streams. The opencore framework appears to fail silently with seeking, which I am ...
6
votes
2answers
3k views
What are the difference between MediaPlayer and VideoView for Android
I just wonder what are the different between two of them for streaming video?
I know VideoView can be used for streaming and what is for Mediaplayer? so far as I know is MediaPlayer can do the same ...
6
votes
5answers
5k views
How do I stream video and play it?
How can I stream video data from the network and play it on an iPhone?
5
votes
1answer
477 views
Android - MediaPlayer + PowerManager.PARTIAL_WAKE_LOCK
I'm creating application for listening radio streams via WiFi & 3G network.
I am using native MediaPlayer. Unfortunately when screen goes black and phone goes into standby mode mediaplayer starts ...
5
votes
3answers
821 views
load a MediaPlayer from a Uri in a context assets
I have an audio file in my assets directory. assets/audio/dance.mp3.
If I run context.getAssets().list("audio"); it shows up.
But when I try to use MediaPlayer.create(context,uri) it always fails ...
5
votes
1answer
452 views
Playing song one after another causes MP3Extractor error
@Override
public void onCreate(Bundle savedInstanceState) {
...
mMediaPlayer = new MediaPlayer();
mMediaPlayer.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
...
5
votes
3answers
1k views
Android: MediaPlayer, How to get properties of an audio stream?
I can successfully listen to an audio stream with the MediaPlayer interface, but how can I get properties of the stream like the current bit rate, or the stream text (lots of streams like on line ...
5
votes
2answers
1k views
AVPlayerLayer - ReProgramming the Wheel?
I'm currently using an AVPlayer, along with an AVPlayerLayer to play back some video. While playing back the video, I've registered for time updates every 30th of a second during the video. This is ...
5
votes
3answers
3k views
Streaming with Android MediaPlayer in SDK 8
SDK level 8 (Froyo) has introduced the native capability for the MediaPlayer to connect to a streaming source, like Shoutcast. Previous SDK versions were able to do workarounds, such as run a local ...
5
votes
2answers
8k views
How to Play Streaming Audio/Video from a url?
I am new in Android. I am using android os 2.2. I am trying to play streaming audio and video from url. I don't know what to do for that. after 3 days og googling i come to know that I have to use ...
5
votes
3answers
6k views
Android MediaPlayer throwing “Prepare failed.: status=0x1” on 2.1, works on 2.2
I've been really banging my head against the table trying to get the MediaPlayer class to try to play h.264-encoded videos on Android 2.1. My code is rather simple:
AssetFileDescriptor ...
5
votes
4answers
4k views
Problems with MediaPlayer, raw resources, stop and start
I'm new in Android development and I have the next question/problem.
I'm playing around with the MediaPlayer class to reproduce some sounds/music. I am playing raw resources (res/raw) and it looks ...
5
votes
1answer
715 views
How to resume video playback after the surface was destroyed?
I'm working with the media player on a streaming application (RTSP):
Video and sound are played great but when an incoming call pauses the Activity, the Surface is destroyed (I know this because of ...
5
votes
1answer
2k views
C# Com Interop with Windows Media Player Visualisation (With Sample Code)
I am attempting to create a Windows Media Player (WMP) Visualization plugin in C#. I am quite new to exposing C# to COM and may have missed something basic. I have persisted with this for 3 days ...
4
votes
5answers
124 views
Set Notification Sound from Assets folder
I am attaching the sound files in the assets folder for play sound in the notification but I am not able to play sound from the assets folder.
I have setting page from which user can set the sound ...
4
votes
1answer
88 views
MPMoviePlayerController reconnecting multiple times
I have a simple HTTP server running that pretty much just serves an MP3 file in chunks of equal size. I'm writing an iOS app (for testing purposes), that basically takes a URL and streams the file ...
4
votes
3answers
273 views
get current playing song list windows phone 7
I want to display the list of songs in current playing lists, If users play music in my app, I could know what playlist is playing but if they were playing in zune app then switch to my app, my song ...
4
votes
1answer
2k views
Android Streaming Wav Audio Error: MediaPlayer Prepare failed: status=0x1
We are streaming audio via http from ffserver/ffmpeg on Angstrom Linux. The ffmpeg audio codec is PCM signed 16-bit little endian "pcm_s16le". The ffmpeg stream format is "wav". Both of these are ...
4
votes
2answers
2k views
Playing many different videos on iphone using AVPlayer
I'm working on a custom video player for iOS using AVFoundation. The idea is to be able to switch to a different video with a gesture (tap, swipe, whatever). Right now the player is working flawlessly ...
4
votes
1answer
2k views
RTP on Android MediaPlayer
I've implemented RTSP on Android MediaPlayer using VLC as rtsp
server with this code:
# vlc -vvv /home/marco/Videos/pippo.mp4 --sout
...
4
votes
1answer
547 views
What is the best way to get an audio file duration in Android?
I'm using a SoundPool to play audio clips in my app. All is fine but I need to know when the clip playback has finished.
At the moment I track it in my app by obtaining the duration of each clip ...
4
votes
3answers
3k views
Audio stream buffering
I need to play live audio stream, actually it is radio. The problem is that I also need to manage 20 minute buffer for stream. As far as I understand it's not easy to implement with adnroid.
First I ...
4
votes
0answers
487 views
How do I turn the system volume overlay back on after using MPVolumeView?
I'm building an audio player for a non-native sound format. The application's hierarchy is based on the iPod.app. It has a number of UITableView's and one UIView (TrackView) that uses an MPVolumeView ...
4
votes
2answers
804 views
MediaRecorder and UDP (DatagramSocket) in Android
I am currently writing a program that is a sort of VoIP client. I am trying to establish a connection between 2 clients and send and receive data, that is recorded from microphone.
I am currently ...
4
votes
0answers
140 views
The media player ActiveX object in Internet Explorer plays only one video
I have Java as the back-end. For videos I'm using the media player ActiveX object in Internet Explorer. When I open it the first time it plays OK. The file extention is ".ogg". But when it is ...
4
votes
1answer
196 views
Marking an MPMediaItem (podcast) as listened to
Is there a way to update the 'listened to' status of an MPMediaItem from the iPod library?
I've tried using MPMusicPlayerController in iPodMusicPlayer mode and it does not mark the podcast as ...
4
votes
1answer
1k views
Android Media Player Threading
I have written a Music player app and it works great but when a flip action happens or when I return the the player view I have to stop the player and restart it at the postion that it was at when the ...
4
votes
4answers
7k views
Playing Audio with J2ME
What is the best way to play audio utilzing the J2ME Media libary?
For example, should I make use of the MMAPI or should I just use the Midlet's platformRequest(String s) method?
3
votes
2answers
105 views
Can Android MediaPlayer play audio in a zipped file?
CODE EDITED:
I am developing a dictionary app for Android. I have been succeeding in making the app pronounce each word being looked up. Here is the code:
btnPronounce.setOnClickListener(new ...
3
votes
2answers
51 views
How to fix Media Exception in Nokia device(J2me)
I am developing a game in J2ME and I am using 4 different sound(midi) files in game. When I run this game on nokia device, it's showing too many players prefetched exception. It's working fine in ...