Questions tagged [android-video-player]

Related to playing videos in Android API

541 questions
3
votes
1 answer

Play a mp4 file in android videoview

I am trying to play a mp4 videoin my simple android VideoView. Here is my code VideoView videoView; videoView = (VideoView) findViewById(R.id.videoViewa); MediaController mediaController = new…
ramesh
  • 4,008
  • 13
  • 72
  • 117
3
votes
2 answers

AndroidFFMPEG Appunite library issue

I am facing some with androidFfmpeg library on video seek. Can anyone help me out on this reported issue. jni_player_seek problem
Steve
  • 385
  • 1
  • 16
3
votes
1 answer

What Android video player libraries allow for slow motion playback?

I am trying to find a video player library that I can add to my Android App source that will allow the user to play the video at a slower speed, ideally adjustable by the user. Also, I need the player to allow for two videos to be on screen at once,…
Steve
  • 31
  • 1
  • 5
3
votes
0 answers

How to change video size on android Media Recorder

I need to capture a video 480 * 480 in my android app, but it seems that the MediaRecorder can only support limited build-in sizes such as 1980*1080, 960*720, etc, almost all in 4:3 or 16:9. Is there any method that I can capture that size of video…
3
votes
0 answers

Samsung S3: 'Cannot play Video' on stock Video player

I am unable to play a mp4 video(H.264 Baseline, AAC) on Samsung S3, Android Version: 4.1.1, stock video player but plays on VLC. The same video plays on Galaxy Beam, Android Version: 2.3.6, stock Video Player. I want to figure out why it does not…
d33pika
  • 1,997
  • 14
  • 24
3
votes
3 answers

Recorded Video Plays Sideways in Android Samsung Device

I am doing an Android Video App in which I record few Videos and manage videos in the list. Videos are taken properly but they were shown in sideways (what i mean is I can see video in portrait mode if my device is actually in Landscape mode). Can…
TNR
  • 5,839
  • 3
  • 33
  • 62
3
votes
0 answers

Android - Animate VideoView or MediaController

I want to animate the displaying and hiding of a VideoView. My View is wrapped in a MediaController. My code: VideoView videoView = (VideoView) findViewById(R.id.myvideoview); mediaController = new…
Ron
  • 22,128
  • 31
  • 108
  • 206
3
votes
0 answers

How to add text over video when playing a video stream from local source?

I want to develop an android app that can control custom(user) text added over a streaming video. say when the user plays a 3 min video, suppose he pauses exactly at 1 min to add or include his text(subtitle or some info), then saves it. Now the…
Pankaj Kumar
  • 93
  • 1
  • 1
  • 5
3
votes
0 answers

Adding Seek bar to android video player

import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; import android.app.Activity; import android.os.Bundle; import…
Tinasm
  • 82
  • 1
  • 1
  • 6
3
votes
0 answers

How to upload video file into wowza media server in android?

Hi i m very new to wowza media server. Can any body tell me how to upload video file or live streaming in android using wowza? Thanks in advance.
asha
  • 53
  • 1
  • 4
2
votes
1 answer

Video Player Does not Play the Video Every time

I am working on an application in which I have to use Android Video Player. I am giving this Player a URI, that sometime runs and some time does not. URI is generated at run time according to a defined procedure. I get the following error in logcat…
Usama Sarwar
  • 8,922
  • 7
  • 54
  • 80
2
votes
0 answers

Android It is possible to change the MediaController graphics?

I want to create a custom video player, so i want to change the mediacontroller ? I looked over the following posts, but i haven't seen an answer: Extending MediaController for android Change style of android MediaController
2
votes
1 answer

Android: playing a youtube video INSIDE of my application

I'm hoping someone can set the record straight for me. I know there are several posts about this issue, but I'm still unclear about this. I want my application to show an image of a page out of a book, and inside that image I want to play a…
2
votes
2 answers

Create a simple exoplayer to stream video from url

I am a complete beginner at android studio. and I am working on a simple application in which I have to stream a video from a URL. Just a simple Exoplayer I tried the below code but it doesn't work. If anybody knows please…
2
votes
1 answer

Video buffering when trying to play it flutter dart

I am trying to create a dog photo/video generator app using Flutter and Dart. It basically sends a get request to a website called random.Dog to get a url to show on my app. Sometimes the url is a video and sometimes it is a img. When it is a video…