Software or hardware device designed to play audio/video files.
0
votes
2answers
13 views
MediaPlayer won't stop playing on back press, Audio from soundcloud
I've made a MediaPlayer play some audio from soundcloud and the play and pause are working but the issue is that when I press back button on phone it continues to play? Any advice would be great. ...
1
vote
1answer
19 views
MediaPlayer OnCompletionListener causes error
In my app I created a class to handle playing sound, it's called SoundPlayer and extends AsyncTask to load sound files seperately from main thread. It looks like this:
public class SoundPlayer ...
-1
votes
0answers
9 views
Samsung Galaxy Video Player Skin [closed]
Is there any way to get native player skin of Samsung Galaxy S3 or S4 ?
Here is galaxy s3's video player controller skin
...
1
vote
1answer
12 views
Not able to get proper URL for streaming video in android
I am developing an app in android which will stream video from url....but m not able to get proper url ....my app only says video can't be played....will u plzz suggest some good url path for ...
0
votes
0answers
7 views
brightcove player, manually choose what rendition to play
I want to determine what rendition to play from brightcove, i know that brightcove choose it automatically by bandwidth or frame loss, i want to choose what rendition to play. I need to implement this ...
2
votes
0answers
26 views
javaFX MediaPlayer getCurrentTime() unreliable
To play a mp3 file, I am using the javafx.scene.media.MediaPlayer class.
But I noticed that the currentTimeProperty is not reliable after using the seek() method.
The method initMediaPlayer() in the ...
0
votes
3answers
24 views
Play two sound with onClick
I want to play two different sound file when the user clicks the button
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
playSound(this,R.raw.s1);
...
0
votes
0answers
15 views
Some videos causing android media player to crash
While testing an app that I was making to play videos in a loop from a playlist using the MediaPlayer, I found that one video caused my app to freeze. It didn't force close or anything just froze. ...
0
votes
0answers
18 views
Prioritizing Android service for playing background music
I have a an Android service that streams background music and occasionally the hosting process seems to die playing the music while under certain loads like opening a dozen or tabs of heavy sites in ...
0
votes
1answer
38 views
java MediaPlayer doesn't release resource
I use javax.media.Player to player video in java Swing and it works just right. But when I need to delete a video just played, it prompts that the video is occupied by some program, surely the ...
0
votes
0answers
27 views
Jlayer Mp3 player
I use JLayer to play mp3 files.
I have array of files and I can play the song, go to the next one but I don't know how to go to the next song when first stops.
I have five methods
When song stops ...
-1
votes
1answer
29 views
Fully featured web media player to handle online media library (focus on music) [closed]
The concept is to consolidate my friends' and my MP3 collections, providing backup and remote access to media.
I will give them ftp access to upload their libraries.
A password protected site ...
0
votes
1answer
12 views
How can I get MediaPlayer's onBufferingUpdate from a Service to a Fragment?
I'm binding an audio stream service to a Fragment.
How can I get the value percent from the MediaPlayer's onBufferingUpdate from the service into the Fragment?
I was thinking about sending a ...
-3
votes
1answer
24 views
Need a javascript for online audio play in non HTML5 sites [closed]
I want to implement a html5 and non html5 mobile website with online music player. Suggest me for a perfect java script player should play in non html5 browsers also. Thanks in Advance..
0
votes
1answer
23 views
Why android mediaPlayer “onBufferingUpdate” is not work well
mPlayer.setOnPreparedListener(new OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
hideBgAndLoadProcess();
if (mPlayer.isPlaying()) {
mPlayer.stop();
}
...
0
votes
0answers
29 views
sending/receiving images from android over 3G/4G
I am trying to get a video streaming component to work for my android app. The idea is to be able to stream videos between two android phones. I know there are multiple open source projects available ...
0
votes
2answers
50 views
Where to place MediaPlayer in a fragment?
I would like to make my sound file play automatically when I arrive at a new fragment (by swiping). Right now, the sound doesn't play. Is there perhaps a fundamental difference between
public void ...
0
votes
1answer
12 views
Android - Notification Activity Audio Closing on App Launch
I am having a small problem with my app. When there is a notification, I play a custom sound. The problem is that while the notification sound is playing and you open the app, it stops audio. Is there ...
0
votes
1answer
8 views
How to enable VideoView TouchListener Android?
I am implementing video player within that i want to play/pause video onTouch of VideoView.
Is it possible using video View only if yes then tell me the way . I don't want this using surfaceview so ...
-2
votes
0answers
10 views
how to play custom media file in custom media player in html? [closed]
i want to play .mp video files in our custom media player. when user will click the hyperlink text the control should go to the custom media player. I have searched in stackoverflow but the solution i ...
0
votes
0answers
17 views
MediaPlayer setVolume not working
I have three mp3 files.
bgm_main : 955KB
bgm_event : 977KB
bgm_end : 467KB
sample rate is 48,000.
And I want to play the song quietly.
MediaPlayer kPlayer = MediaPlayer.create(this, ...
-1
votes
1answer
32 views
Android Media player - play from the data device
I bulid an application with comment that play one song from folder in the application data..
but I want that the application turn the music on from the data device (like when you connect samsumg ...
0
votes
1answer
30 views
Playing audio sound using mediaplayer taking delay
I have a listview having audio voice in each row.I need to play the voice on click of seekbar & display progress in seekbar and pause the voice on click of seekbar again.Need to implement ...
-1
votes
2answers
20 views
Can we zoom the image to full size of device as media player in iOS?
We can zoom media player to full size in iOS by pitch action.How to implement this type of zooming in the case of ImageView in iOS?
0
votes
3answers
53 views
Select a music file to play with MediaPlayer
I'm new in android programming and now i get a problem with my app. I intend to code a MediaPlayer application with feature: select a file from storage using intent then start playing that file. I use ...
0
votes
0answers
5 views
Getting AVErrorOutOfMemory using MPMoviePlayerViewController
I'm using a subclass of MPMoviePlayerViewController in order to stream a video on a local network. When I try to resume the playback, setting the initialPlaybackTime of moviePlayer property on ...
0
votes
0answers
17 views
Android Media Player Picks Up Where Left Off
I am making an app which streams a live audio (An internet radio). My play and pause works and streams the music..A problem is that when i click pause (it pauses/stops) but when i go to click play ...
1
vote
2answers
24 views
Why doesn't this code work streaming a song using MPMoviePlayerController
I'm having a hard time trying to figure this out, any suggestion is welcome:
NSURL *songUrl = [NSURL ...
0
votes
1answer
32 views
Stopping playback of mp3
I'm making an application that uses mp3's and I have a very simple question that I have been unable to find the answer for. I have a grid of buttons and each click plays an mp3:
final MediaPlayer ...
0
votes
1answer
26 views
how can i pause the previous sound clip on click on other sound clip?
in my code I have 2 sounds. I would like to know how do i pause the sounds if click on other sounds.
I am very new to android programming,and I really appreciate your help.
{
final ...
0
votes
0answers
55 views
Streaming RTSP/M3U8 using Player Framwork
I'm trying to stream either an RTSP or M3U8 audio stream to a Windows 8 C# app but am having difficulty in doing so.
Currently, I have the app set up to use the Player Framework and Smooth ...
0
votes
0answers
12 views
What does the “struct AVCodec *codec” in “struct AVCodecContext” represent?
I am using FFMpeg libraries in C/C++ to develop a media player .
This source uses the following code to find the decoder of a video stream in a file :
...
0
votes
0answers
9 views
Possible media player in html?
I was wondering is it possible to make a media player in html? I made a demo that plays it via JS using the input and file reader. I tried another way where I know the local uri and can play it when ...
0
votes
1answer
10 views
Unexpected behavior: immediate completion of media player
I am trying to restore audio to the position it was and the file it was when the user left the fragment. To do this I save the location of the audio file, and the seek position using personal prefs, ...
1
vote
1answer
54 views
Android Media Player send a myterious request
I test an Android application which plays videos.
The problem is the video play fail with an unknown error:
MediaPlayer(20533): Error (1,-2147483648)
The application code :
// Place the video ...
0
votes
0answers
14 views
Alternative Media library solution to XBMC
Sins I started using Beamer I have used XBMC less and less. But sins beamer is starteed via finder when you click a media file there is no log of what files has been played. So i am looking for a ...
0
votes
0answers
48 views
Playing AES encrypted streams in Android MediaPlayer?
I am trying to stream AES encrypted HLS content in the Android MediaPlayer, however the content never loads.
The path to the .m3u8 file (hosted on akamai) includes extra parameters in the url (for ...
0
votes
0answers
24 views
Is it possible to get an android media player to display an image
I want to use an android media player to display both pictures and videos, I have it displaying videos but can't find a way to get it to display pictures, is it even possible?
I tried putting in an ...
1
vote
1answer
49 views
Android MediaPlayer error (1, 9100) - Lg L7
I have a weird problem:
I have a VideoView on an activity, i get a xml file from my server, parse it and get the path of the video (i don't post the url video, because are adult content), i set the ...
0
votes
0answers
17 views
Android what exactly does mediaplayer error 1, -107 mean
Today I got much this error message from MediaPlayer :
06-03 17:44:02.707: E/MediaPlayer(20140): error (1, -107)
Only I can found is "-1007"'s error code describe, but that's not what I want.
And ...
-4
votes
0answers
19 views
Play Stream with MediaPlay from internet [closed]
06-02 21:56:17.030: I/MediaPlayer(3116): Info (703,0)
06-02 21:56:17.030: I/MediaPlayer(3116): Info (701,0)
06-02 21:56:19.030: W/MediaPlayer(3116): info/warning (702, 0)
06-02 21:56:19.030: ...
1
vote
0answers
16 views
Shoutcast Player doesn't work in two windows
First of all, Sorry about my English.
Ok, My problem is:
I have a shoutcast player, the player is:
http://activeden.net/item/customizable-mp3-and-shoutcast-player/1393839
this is regullary flash ...
0
votes
1answer
38 views
Android MediaPlayer Error 1, -1002
I am creating an app that plays mp4 video files, but when I try to play an specific file I get this error:
D/MediaPlayer(12605): Couldn't open file on client side, trying server side
...
0
votes
0answers
26 views
Issue setdatasource with Url in mediaplayer android
In my app , i play a video like this:
mCurrentMediaPlayer.setDisplay(surfaceHolder);
mCurrentMediaPlayer.setWakeMode(context,
PowerManager.PARTIAL_WAKE_LOCK);
...
0
votes
1answer
32 views
MediaPlayer takes to long on prepareAsync, how to minimize time
My issue is that the app stays about 3-4 seconds in the prepareAsync:
This takes to long, so i need to change something, to minimize the time it stays there.
This is my code:
if (path_to_play == ...
0
votes
0answers
238 views
Playing H264 video stream (from raspberri pi) in Qt
I have a working streaming device (raspberry pi with camera module - it has a tool called "raspivid"), from which I am streaming live video using netcat
raspivid -t 999999 -w 300 -h 300 -hf -fps 20 ...
0
votes
0answers
48 views
Which one is good for connect and live stream video webcam/digital camera in my web application in java libraries?
I have a new requirement in my project to connect live camera(webcam/digital) into web application to play and upload live stream video using any of the Java APIs.
Which one is good and make my ...
0
votes
1answer
27 views
How to stop MediaPlayer Framework then FlipView changed?
I have mmppf:MediaPlayer inside DataTemplate in FlipView on ItemDetailPage.xaml.
When i start video on current item and go to next or prev flip, video of prev item continue playing. How to stop video ...
0
votes
0answers
27 views
Ubuntu 12.04 QT Creator Could not copy file
I'm working with Ubuntu 12.04 and QT Creator 4.8.0, and I'm a kind of a newbie, so I've been working or analyzing some Demos and Examples. Projects like "calculator", "hello world" and "puzzle" works ...
0
votes
1answer
16 views
Null pointer exception in MediaRouter.dispatchRouteVolumeChanged
On Jelly Bean 4.2.2, I'm getting a crash in the MediaRouter class when changing the volume on the device.
The logcat looks like this:
E/AndroidRuntime(15239): at ...







