Questions tagged [android-video-player]

Related to playing videos in Android API

541 questions
0
votes
3 answers

Play video after the buffering was completed in background

I'm trying play a video stream with MediaPlayer in a new Activity after the buffering was completed in background. Why another Activity? It's a part of a video playback library, and the video has to overlay the user's app, no matter what layout is…
artkoenig
  • 7,117
  • 2
  • 40
  • 61
0
votes
1 answer

Media Player Error in Android error(1, -2147483648)

I am using MediaPlayer to play my video from a URL that I have parsed from a Youtube json-c feed. The feed I retrieved…
Pranav Sharma
  • 692
  • 2
  • 9
  • 22
0
votes
2 answers

Android: Play RTSP video from URL

I'm trying to play an RTSP url in my android app, using the following code: String url = "rtsp://mobilestr1.livestream.com/livestreamiphone/nyc"; Uri uri = Uri.parse(url); System.out.println("URL="+url); …
user1417302
  • 411
  • 3
  • 9
  • 22
0
votes
1 answer

Video file not running on browser

In android i have created .mp4 video file and stored it in sdcard. From sdcard i have copied it into computer and try to run it on browser using video tag. My html code is:-
0
votes
1 answer

Developing a video player app

I want to build a video player on android platform which is actually for E-learning purpose and thus here protection and piracy of videos is major concern. The video player will be connected to a server which has all the videos and only on…
Gini
  • 1
0
votes
1 answer

Online mp4 video is not playing

what's the problem there, I have uploaded this video to server, but now its not playing, but its playing if i put this video on sdcard which is commented public class VideoPlayerActivity extends Activity { /** Called when the activity is first…
Furqan Khyraj
  • 15
  • 1
  • 2
  • 6
0
votes
1 answer

VideoPlayer Shows Error (1, -1)

I am working on playing a video in my application, and I am observing some strange results in doing so. Videos that I am trying to play are on server and I have to get them to run android's native videoplayer. I have tested the results on several…
Usama Sarwar
  • 8,922
  • 7
  • 54
  • 80
0
votes
1 answer

Video streaming on android phone

What is the best API for video streaming on Android? The Video is basically MPEG 2, kept on server, I want to stream to my Android phone which is having the decoder and our own player. (decoding is happening on the phone itself). The requirement…
gpuguy
  • 4,607
  • 17
  • 67
  • 125
0
votes
1 answer

How to access Android Phone DRAM and other memory instead of sd

My Android Video application takes a media file, extract a frame, decodes it, and then plays at some specified rate. I have two choices for media file storage: 1- MicroSD Card. But I guess this would be slow. The processor will fetch frames from a…
gpuguy
  • 4,607
  • 17
  • 67
  • 125
0
votes
1 answer

how can i play two video on one screen?

i have to make an application where i need to play two video simultaniously,on screen. here is my code.but the video dose not play.am i doing wrong anywhere? :( public void onCreate(Bundle savedInstanceState) { …
Android Girl
  • 2,074
  • 3
  • 22
  • 29
-1
votes
1 answer

Vimeo's couch mode ported to jQuery?

Is there any attempt to re-make something like Vimeo's couch mode http://vimeo.com/couchmode in jQuery? I mean a video player which you feed with video links (either from vimeo or youtube) and acts like vimeos couch mode or youtube 's lean back.
numediaweb
  • 16,362
  • 12
  • 74
  • 110
-1
votes
1 answer

Android VideoView stream playing is a mess

I am attempting to play a video from an http stream. I know the video is in the wrong format and encoded with an incomaptible codec, and also the resolution is too big, 640x380 I think.. but : If I save the video on the SDCard and play it from…
-1
votes
1 answer

Disable internal and external speakers and allow only earphones to watch video or listen Audio

I have some videos of which audios sound should be available only through earphone, not from inbuilt speaker or external speakers. NOTE: It should not allow External Speakers with 3.5mm jack. What is the possibility to solve it? It will be great if…
-1
votes
2 answers

In android, i was successful to play a video but media controller is not showing. Further given below

Reference: https://google-developer-training.gitbooks.io/android-developer-advanced-course-practicals/unit-5-advanced-graphics-and-views/lesson-13-media/13-1-p-playing-video-with-videoview/13-1-p-playing-video-with-videoview.html I was trying to…
-1
votes
2 answers

Back Button and Black Screen Video

I have a problem in my application . My problem is that Main Class has a VideoView and when I went to other class and return the main class , I see a black screen instead of video . How can I solve it ? public class MainActivity extends Activity { …