I'm trying to open a video in gallery view without playing it. Like the following, how can I do that:
Unfortunately it does not appear as though the stock Gallery app supports opening a video via Intent and not immediately playing the video.
As per the source for the Gallery's MovieActivity and MoviePlayer, the app will immediately start playing videos when the MovieActivity finishes loading the video.
Related
I am trying to play live stream video from Twitch , inside webview but getting issue, when streaming was started after page load then it is not showing in video . i have to load it manually .
I am using this below url to load video in side android webView :
https://player.twitch.tv/?autoplay=true&channel=x2twins&parent=streamernews.example.com
What is the best way to play video in android , so that if streaming starts after page load then , streaming video starts autometically
You should use VideoView instead of WebView
If you want the stream to start playing automatically when the activity opens, call the play method in onCreate
Also save the latest states at onPause in savedInstanceState and read it again in onResume
Is possible to run (on Android/iOS) full screen youtube video on click on a link? I don't want click on a player. For example: clicking on url will open video on full screen.
You can create a new activity with a VideoView in it. VideoView accepts video links (they say it can play rtsp, which is what youtube mobile is using, but I have yet to try)
just do videoView.setVideoUri(rtsp://...);
i am developing an app that has a video gallery in it. The gallery has thumbnail view of recent videos. when user clicks the video must be played. the video is coming from server only.
I am sure you are looking to implement Android CoverFlow same as youtube video gallery.
I am using Video View To stream Video.
I am able to start video successfully But what happens is after playing some video I am getting Dialog Box saying Can not play this video.
When I tried multiple times then I realized that It shows me dialog at random length of video played.
I don't able to find why this is happening.
I have one list and in this list I set the list of videos,
some video playing and some is not working. So I want to have a message(like video is not working) when video is not working or not playing.
How I check video is working or not ?
And I play this video URL in videoview.
If video is not working there are two reasons.
First the video's size is bigger then device and second, video is properly not working.