Using Moodle, can play .flv file but can't paly quick time video foarm and force downlaod.
I want to direct play in website.pls,suggestion me
You can use JW player plugin to upload quick time video. Even you can use media plugin which is in Moodle plugin site to upload videos.
Related
Is there anyway we can combine cached_video_player 1.0.3 & chewie 0.12.0 ?
I am using chewie to play my video, but I want to cache them so that user need not download the video again and again.
You can try using this package pub.dev/packages/better_player which already uses chewie and manages cache or try following up this https://www.gitmemory.com/issue/flutter/flutter/28094/612075565
Here it uses your video player and cache manager to achieve the result
One solution could be to just store the video as a file in the file system when first downloaded. Then you just load the video from the file system and play it if it's already downloaded the next time you want to play the video.
I'm using BigBlueButton in my website,
the problem is:
we can't stream our videos online in BigBlueButton and all of our visitors can stop/play/... our uploaded external video for themselves.
so we are looking for a solution to display a video as a live stream.
our video is in .mp4 format.
what we are thinking to remove play/stop/... buttons from video so our clients can't stop the video and play it for them.
In the latest version of bigbluebutton that nearly would have a final release (v2.4), visitors (viewers) can't pause, stop, ... the playing video.
I want to download video with flutter (maybe use dio package), and play it in the screen automatic. There is a way to do that?
I have searched it but feel like it only can play a video have added to asset.
check this one Flutter Video Player
The VideoPlayerController offers several different constructors to play videos from assets, files, or the internet.
You can use https://flutter.dev/docs/cookbook/plugins/play-video and can download that to app directory and get the path from there and then play using a video player.don't need to play it from assets.
In one Application i use YouTube Video for display i want first that video download from YouTube then it play from locally from downloaded source.
This is Possible.....If yes then provide suggestion...
You can use PSYouTubeExtractor.h class
It can get youtube mp4 video url and than downloading and viewing is not a problem
Here is my example
https://github.com/comonitos/youtube_video
You have to download your video through file location url using NSURLConnection .After that you can MPMovieplayerContoller to run that video.you can google to get example for NSURLConnection and MPMovieplayerController.
I have a video in .avi format which needs to be rendered in a UI developed using GWT.The video does not play in Windows Media Player but opens up smoothly in VLC media player.Is there some way to use VLC media player to render the video in the GUI without changing video format(or any other processing on the video).
Thanks,
In pure GWT it's not possible. Imagine that GWT is environment of HTML and JavaScript language so you are limited by them and your app is encapsulated what browser serve to you. However you could put Java applet that could force to run VLC.
Another way of playing movie in the browser is to use flv player or use HTML5 (like youtube), but in this solution you must convert your video file.