Questions tagged [video-player]

Plays the video of different formats

Video player is a term typically used to describe computer software for playing back multimedia video files. While all video players can play both audio and video, others focus only on one media type or the other. Such players are known as either audio players or video players and often have a user interface tailored for the specific media type.

742 questions
6
votes
4 answers

Mediaelement.js malfunction in IE, no flashback works

I used the mediaelement.js in my site, I used for the example a .mp4 file with H.264 codec, works well in all browsers, but it doesn't works in any version of Internet Explorer when I publish the site. On my localhost, it doesn't have any problems…
6
votes
1 answer

Implementing a netflix like media player, Preventing screenshots and video captures

Is there a way to prevent user from taking screenshots or capturing screen of your videos file? Something similar to how Netflix implements it. It returns a black screen whenever we try to click a screen. I just need some starting points in the…
Harman Kamboj
  • 429
  • 7
  • 20
6
votes
2 answers

Appcelerator Studio - Android app crashes on Marshmallow when I load a URL in video player

I download a video from my remote server and saving it in application data directory. Once it is completed I pass its URL to video player (UI element on my window). Then my app crashes. This is only happening on Marshmallow (Android version 6.0).…
5
votes
1 answer

Flutter : Playback error E/ExoPlayerImplInternal( 8813): com.google.android.exoplayer2.ExoPlaybackException: Source error

I am getting this error in Samsung g610 (Android v6.0 Marshmallow) when I am trying to play video file using video_player 2.2.10 Unexpected exception loading stream E/LoadTask( 8813): java.lang.IllegalStateException: Top bit not zero:…
Nibha Jain
  • 7,742
  • 11
  • 47
  • 71
5
votes
1 answer

How can I hide the buttons on the Video Player with SwiftUI on macOS?

VideoPlayer(player: AVPlayer(url: URL(fileURLWithPath: Bundle.main.path(forResource: "*****", ofType: "mp4")!))) How can I hide the buttons on the VideoPlayer. I want the video to be repeated constantly. You can access the VideoPlayer object by…
Ufuk Köşker
  • 1,288
  • 8
  • 29
5
votes
2 answers

How to check whether the current PageView totally disappears and the next one totally appears

I am developing an APP using Fluter. In the APP a have a list of PageViews and each PageView will load and play a video when it appears. Any PageView will stop playing the video when it disappears. Now I have a question. When I slowly slide between…
Nature.Li
  • 345
  • 1
  • 3
  • 11
5
votes
4 answers

Flutter video_player restart video from start on tap

I am using the flutter video_player package to play a short video file using in my application. I inspired from the flutter cookbook: Play and pause a video. I would like to allow the user to tap on the video to restart it from beginning. So I…
skuallpa
  • 1,147
  • 3
  • 13
  • 28
5
votes
1 answer

iOS How to replicate Youtube App player rotation?

Any idea about how the feature I show in this video is done? It looks like the touch on the "expand" button force an orientation change for the device (infact when I swipe I'm pulling the control centre out). Anyway only the video player seems to…
luca
  • 36,606
  • 27
  • 86
  • 125
5
votes
1 answer

FLVPlayback/VideoPlayer: How to access VideoPlayer.load() method that accepts 5 parameters?

I want to use the following load() method that accepts five parameters so that I can load a small "excerpt" from a larger video: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/video/VideoPlayer.html#load() In particular, the…
anon
  • 4,578
  • 3
  • 35
  • 54
4
votes
1 answer

Odd Safari Video "Load" Behavior

I wrote a simple video player for one page of my site that works by clicking buttons to change the src attribute of the source tags, then calling a load on the player element. The video element looks like this:
4
votes
0 answers

How to properly change video player quality source at runtime after ending loaded buffer?

i'm building video app base on video_player . i'd to change video quality like YouTube without any loading and screen blinking (after finish loaded buffer new selected quality source will play ) i create sample code but when i change video…
4
votes
0 answers

How to add a forward circular icon on the ProgressIndicator of the video_player in Flutter

I have implemented a Video Player in flutter using the official video_player plugin. This is my code for ProgressIndicator : VideoProgressIndicator( _videoPlayerController, allowScrubbing:…
Sahil Singh
  • 113
  • 4
  • 11
4
votes
1 answer

How to seek to a video position before playing with JavaFx

I would need to be able to seek to a position before playback of a video is started with JavaFx 16 When MediaPlayers seek() or setStartTime() is called before play() it is breaking video output and no frames are updated anymore (sound is still…
4
votes
1 answer

Embedding the new, black YouTube player

How can I embed the new, black YouTube player into my website (the one that was just launched)? I've asked this before, but it was closed since nobody bothered to actually read the question before voting down and closing. No, I did not ask how to…
Ben
  • 15,938
  • 19
  • 92
  • 138
4
votes
3 answers

Flutter video player retrieve width and height of the video

I am a beginner, not professional developper and I have a little project with a list of videos in a list view. I use the Chewie package to display the videos. I use the code hereunder for chewie : import 'package:chewie/chewie.dart'; import…
Bernard
  • 173
  • 3
  • 14
1
2
3
49 50