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
28
votes
4 answers

VideoView onPrepared is not called if the VideoView is invisible

I am hiding the VideoView initially and when the video is loaded I am showing the VideoView. But onPrepared is never called if the VideoView is invisible initially. However onPrepared is called properly if VideoView is visible. Is there any way to…
Abhishek V
  • 12,488
  • 6
  • 51
  • 63
28
votes
5 answers

RTSP stream and OpenCV (Python)

I have an IP camera streaming on Linux through rtsp protocol and h264 linux driver. I am able to see the video in VLC with the following address and port: rtsp://192.168.1.2:8080/out.h264 However if I try to get the same video for OpenCV processing…
Guadancil11
  • 625
  • 3
  • 8
  • 16
27
votes
1 answer

Video Streaming and Android

Today for one of my app (Android 2.1), I wanted to stream a video from an URL. As far as I explored Android SDK it's quite good and I loved almost every piece of it. But now that it comes to video stream I am kind of lost. For any information you…
Spredzy
  • 4,982
  • 13
  • 53
  • 69
27
votes
1 answer

streaming getUserMedia to server

I'm new to binary data and getUserMedia, what would be the recommended way to stream getUserMedia (video/audio) to a server and then prepare the stream (video/audio) for other connections? My initial thought was to send the data over websockets and…
8eecf0d2
  • 1,569
  • 1
  • 13
  • 23
27
votes
5 answers

Detecting that the peer's browser was closed in a webrtc videochat

I've been implementing a webrtc videochat. Everything is working smoothly except for the case when the peer closes the browser. I've been trying to handle this event by implementing an onended callback on the remote mediastream. Though, this…
Pedro Rolo
  • 28,273
  • 12
  • 60
  • 94
26
votes
4 answers

GsaIOException Buffer overflow, no available space

I have a MediaPlayer app with a live streaming function. When I test the app with a physically device(API 22 Lollipop and API 23 Marshmallow) there are no problems with starting of the stream. Today I want to test the application with a Emulator…
TYL
  • 493
  • 2
  • 6
  • 19
26
votes
2 answers

Video buffering in IE/Edge using Media Source Extensions

We are trying to use MSE (Media Source Extensions) to show real time video on a website. We are sending frames over websocket and trying our hardest to keep latency down. Our current prototype is streaming very well in IE, Edge, Chrome, Safari etc.…
26
votes
4 answers

Which web browsers support the MPEG-DASH streaming protocol?

I have found something bellow: According to: This Link DASH is supported by any browser any browser that supports the W3C Media Source Extensions (MSE), today that is Chrome and IE11 And here Firefox 21 includes an implementation of DASH for…
hoangmeo325
  • 450
  • 2
  • 10
  • 18
26
votes
7 answers

Read Frames from RTSP Stream in Python

I have recently set up a Raspberry Pi camera and am streaming the frames over RTSP. While it may not be completely necessary, here is the command I am using the broadcast the video: raspivid -o - -t 0 -w 1280 -h 800 |cvlc -vvv stream:///dev/stdin…
fmorstatter
  • 361
  • 1
  • 3
  • 3
26
votes
6 answers

Live video streaming using Java?

Are there any good libraries for streaming live video using Java? Ideally both ends of the pipe should be written in Java but I am mostly concerned about the video player. What software would you recommend? UPDATE: It seems that VLC introduces a 1-2…
Gili
  • 86,244
  • 97
  • 390
  • 689
25
votes
4 answers

Open video stream on VLC Player through the browser

Is it possible to add a type of link on a webpage that will open up VLC Player and start playing a stream video? Like this one: Alternatively, is it possible to embed VLC Player in the browser?
user516242
25
votes
1 answer

Low latency (< 2s) live video streaming HTML5 solutions?

With Chrome disabling Flash by default very soon I need to start looking into flash/rtmp html5 replacement solutions. Currently with Flash + RTMP I have a live video stream with < 1-2 second delay. I've experimented with MPEG-DASH which seems to be…
Titan
  • 5,567
  • 9
  • 55
  • 90
25
votes
5 answers

Access to the iOS' video decoder?

The iPad/iOS has video streaming support for e.g. H.264 using MPMoviePlayerController etc., but i receive H.264 data through a custom, proprietary, stream and need to decode it in a soft real-time scenario. Can the iPads/iOS' video decoder be…
Georg Fritzsche
  • 97,545
  • 26
  • 194
  • 236
25
votes
3 answers

HTML5 capture and save video

I am building a site for sing-alongs where the user can capture a video of themselves singing along with an mp3. I have gotten to the point that I can access the camera and display the live stream, but how can i save the video so the user can…
scalen121
  • 905
  • 3
  • 10
  • 22
24
votes
6 answers

How to make a loading image when loading HTML5 video?

As it takes time for the video player to load the mp4 video, does HTML5 support playing a "loading" logo when loading the video ? Since my asp.net apps is a mobile page, it needs the user to click on the video to play the video (android, iphone…
Joe Yan
  • 2,025
  • 8
  • 43
  • 62