Related to playing videos in Android API
Questions tagged [android-video-player]
541 questions
0
votes
1 answer
How to set full screen video on button click in fragment
I am using TextureView in Fragment and I am playing video in TextureView. I have a button in Fragment and want to play video in full screen the button is clicked. It is possible in Fragment because I am using Fragment in an Activity.
How can I…

rohit sharma
- 27
- 10
0
votes
1 answer
Android Streaming HTML URL to Player
I'm trying to make a link that's works like this mobile website:
http://m.tn.com.ar/
When I click the link En Vivo, it redirects me to http://m.tn.com.ar/envivo/24hs.
In PC, however, nothing happens. Instead, in Android it opens a live streaming…

lucasgabmoreno
- 1,001
- 1
- 10
- 18
0
votes
1 answer
How to allow VideoView to continue playing when using Share? Android
I have a video playing full screen in the Android application. I've added a button to allow the user to bring up the "Share" dialog to share to social media, texting, or e-mail. However, when the user selects, for example Facebook, the video will…

code
- 5,294
- 16
- 62
- 113
0
votes
1 answer
Native video players for Android that can support HLS, DRM
I'm researching options for native android players available today that can support features such as HLS and DRM.
I've come across Google's ExoPlayer and NexStreaming's NexPlayer. Could anyone provide some more alternatives? Preferably open source…

orcaman
- 6,263
- 8
- 54
- 69
0
votes
1 answer
Video not played well after update to lollipop android
I have collection of videos in my server it play well in all other android device except the device which updated to the lollipop
Issue as follows
It start play and no issue up to 10% or 15 % . After that it stuck there for a while and say's it…

Rakki s
- 1,426
- 1
- 18
- 42
0
votes
0 answers
Making file world-readable in Unity android
I am making an app in Unity for android which plays a whole bunch of videos.
Since the apk would be too big if all videos were added at build time, I download the videos at runtime and store them using: Application.persistentDataPath +…

kUr4m4
- 659
- 2
- 10
- 24
0
votes
1 answer
How to capture screenshot of VideoView when streaming video in Android
I was able to figure out how to capture a video frame from a VideoView that is playing a video stored locally on the phone. However, when the video is being streamed over IP in the VideoView, it appears very difficult to capture a…

code
- 5,294
- 16
- 62
- 113
0
votes
0 answers
How to know when VideoView UI elements appear/hide in Android App
I am currently using a VideoView in an android app to play a video. When the user presses the screen, a simple playback UI appears on the screen automatically (this is rendered automatically/natively by the VideoView). And, when the user is idle for…

code
- 5,294
- 16
- 62
- 113
0
votes
2 answers
Record Video that can be play in almost all android device powerd by API 8+
I have application for sharing videos. I found an issues in HTC Wild fire device, Video is not showing the content which taken by Nexus 7, But i can hear the voice in that video.
I guess it happen because streams encoded with unsupported codecs or…

Rakki s
- 1,426
- 1
- 18
- 42
0
votes
1 answer
Viewing horizontally scrolled images followed by videos
I'm trying to include a video or two after images in a HorizontalScrollView.
Here's the code I have that works for the images, but I don't know how to include the video as part of the scrolled images.

Hermes
- 11
- 2
0
votes
1 answer
Opening video URLs in my app
I've searched a lot about this, but failed to find anything. My goal is to open all URLs with a video file (chosen from a browser). Normally, if all URLs ended with the file extension of the video I.E: www.example.com/wow.mp4 I could just use this…

Aashir
- 2,621
- 4
- 21
- 37
0
votes
1 answer
How to prevent AsyncTask from running certain code Infinitely
I have a very basic question. In the code below, the purpose is to pass a VideoView with an already initialized URL asset into the AsyncTask below. The Task will start the video and track the progress as it plays. So far, it appears to print the…

code
- 5,294
- 16
- 62
- 113
0
votes
1 answer
Play a video continuation in another Activity
I am working on playing a video task,for this purpose I am using two Activity classes,In my First Activity I am playing a video by VideoView using certain Height and width.Here I am having one full screen icon too.If I tap the icon It will forward…

Jamal
- 976
- 2
- 14
- 39
0
votes
1 answer
Returning to Activity after playing video in external Video Player
Wit this code i start an external video player and play video:
public class MenuActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState)…

Fcoder
- 9,066
- 17
- 63
- 100
0
votes
0 answers
I cant read a video after write it in the SD
I download a video to my SD Card with this code
File SDCardRoot = Environment.getExternalStorageDirectory();
//create a new file, specifying the path, and the filename
//which we want to save the file as.
File…

Javier
- 103
- 11