Questions tagged [video-streaming]

Video streaming is the process of delivering a video from a server to a client. This is different from simply downloading the entire video file, as the client is able to watch the video while it's being downloaded.

Video streaming is the process of delivering a video from a server to a client. This is different from simply downloading the entire video file, as the client is able to watch the video while it's being downloaded.

8577 questions
44
votes
6 answers

How can I export an Adobe Connect recording as a video?

I have links to recorded conferences, how can I export video from them?
michael nesterenko
  • 14,222
  • 25
  • 114
  • 182
44
votes
3 answers

How to pause ExoPlayer 2 playback and resume (PlayerControl was removed)

In ExoPlayer < 2.x there was a class PlayerControl with pause() and resume() functions but it was removed. I can't find a way to do this on ExoPlayer 2. How can I pause and resume a playback?
Daniel Gomez Rico
  • 15,026
  • 20
  • 92
  • 162
43
votes
8 answers

How to use android exoplayer

I am looking to implement Google's ExoPlayer in my app. Their documentation seems pretty vague to me, and all I am looking for is to play a video from an URL, no complicated custom settings or anything like that. Haven't found any tutorials on how…
kimv
  • 1,569
  • 4
  • 16
  • 26
43
votes
9 answers

how to play video from url

I am beginner in android development and try to play video from link. But it's giving error "sorry,we can't play this video". I tried so many links but for all links its show same error. My code is the following public class VideoDemo extends…
priyanka
  • 431
  • 1
  • 4
  • 3
43
votes
8 answers

VideoJS centered play button

I thought I'd share a piece of code that might come in handy to someone. This is a function that center's the play button inside the video-js player, it works for me. You just need to call it on the pause event and when the player is initialized and…
user1592579
41
votes
7 answers

How to Implement HTTP byte-range requests in Spring MVC

I have the problem with video rewind on my site. I figure out that problem with http headers. My current controller method which returns video: @RequestMapping(method = RequestMethod.GET, value = "/testVideo") @ResponseBody public FileSystemResource…
gstackoverflow
  • 36,709
  • 117
  • 359
  • 710
41
votes
7 answers

HTML5 Video Autoplay not working correctly

I'm using this code:
40
votes
1 answer

How to use VLC live streams with HTML5 video?

I tried HTTP Ogg/Theora and works alright with Chrome but not with Firefox 7. VLC Configuration: For testing, I've been streaming the desktop using the following vlc command line configuration: vlc.exe screen:// :screen-fps=30 :screen-caching=100 …
Bruno Santos
  • 1,530
  • 1
  • 15
  • 22
39
votes
4 answers

Amazon S3 Hosting Streaming Video

If I make an Amazon s3 MP4 resource publically availible and then throw the Html5 Video tag around the resource's URL will it stream? Is it really that simple. There are a lot of "encoding" api's out there such as pandastream and zencoder and I'm…
user398371
  • 857
  • 2
  • 10
  • 15
38
votes
4 answers

Possible to stream videos using Amazon S3/CloudFront with HTML5 player?

I want to use an HTML5 video player and stream videos. Is this possible with S3/CloudFront? I understand Amazon uses the RTMP streaming protocol and HTML5's video tag does not support RTMP. Is there any way to stream videos with HTML5 players?
at.
  • 50,922
  • 104
  • 292
  • 461
37
votes
3 answers

Post processing in ffmpeg to move 'moov atom' in MP4 files (qt-faststart)

Is it possible to run ffmpeg from the command line which will either place the 'moov atom' metadata in the beginning of the MP4 file or run the qt-faststart as a post processing operation in ffmpeg so the generated file is stream-able through the…
siliconpi
  • 8,105
  • 18
  • 69
  • 107
37
votes
3 answers

OpenCV real time streaming video capture is slow. How to drop frames or get synced with real time?

Goal and problem I'd like to set up an opencv system to process either HLS streams or RMTP streams, however, I am running into a strange issue regarding a reduced frame-rate and an accumulating lag. It's as if the video gets further and further…
Conic
  • 998
  • 1
  • 11
  • 26
37
votes
5 answers

AVPlayer seekToTime does not play at correct position

I have an AVPlayer which is playing a HLS video stream. My user interface provides a row of buttons, one for each "chapter" in the video (the buttons are labeled "1", "2", "3"). The app downloads some meta-data from a server which contains the list…
Jordan Bigel
  • 605
  • 1
  • 8
  • 10
35
votes
4 answers

Best way to stream files in ASP.NET

What's the best way to stream files using ASP.NET? There appear to be various methods for this, and I'm currently using the Response.TransmitFile() method inside an http handler, which sends the file to the browser directly. This is used for…
Mun
  • 14,098
  • 11
  • 59
  • 83
35
votes
4 answers

Is it possible to cache HLS segments with AVPlayer?

Root Problem​ Our video buffers a lot when seeking in iOS. It buffers quite a bit more than our web player which saves copies of the already watched segments in temp storage. ​Desired Solution​ Caching the video segments locally on the device's…