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
3
votes
1 answer

Rails serving large files

I'm developing an application serving large videos only to logged users. To keep these videos private i put them in a private folder inside Rails project and let Rails serve them, instead of using the public folder and excluding requests from…
sissy
  • 2,908
  • 2
  • 28
  • 54
3
votes
1 answer

Android streaming video latency

I am trying to run Example One from https://github.com/fyhertz/libstreaming-examples It uses libstreaming-4.0. I have forced it to use encodeWithMediaCodecMethod2(). This method uses the createInputSurface() method introduced in Android 4.3. This…
dewijones92
  • 1,319
  • 2
  • 24
  • 45
3
votes
1 answer

_itemFailedToPlayToEnd error when playing video in MPMoviePlayerController

I am trying to play video using MPMoviePlayerController, and am having following error, _itemFailedToPlayToEnd: { kind = 1; new = 2; old = 0; } Below is my code, NSURL *fileURL = [NSURL URLWithString:_videoUrl]; NSLog(@" fileURL:…
3
votes
2 answers

Stsd box could not be found when using libstreaming on Google Glass

I am trying to stream live camera video from android device to a webpage. Currently I used libstreaming library to stream camera video to VLC player. When I deployed the project on Nexus 5 device it is working fine and I can see camera video…
Minion
  • 565
  • 1
  • 7
  • 23
3
votes
3 answers

VideoJs with live stream

I am trying to get videoJs to work with a live stream I have a this link which contains an rtmp live…
Dennington-bear
  • 1,732
  • 4
  • 18
  • 44
3
votes
1 answer

Android HLS - Where is the Source code?

I need to locate Google's HTTP Live Streaming (HLS) source code for Android.
Behnam
  • 6,510
  • 6
  • 35
  • 65
3
votes
1 answer

Play a Live video Stream using Qt

Given below is the code for playing a video file using Qt. Instead of playing the video I want to play a live video stream from an IP Camera. Another approach is to embed the VLC Player in Qt and a link for the project is provided here. The problem…
praxmon
  • 5,009
  • 22
  • 74
  • 121
3
votes
0 answers

Reproduce streaming vlc on android and iphone

I have a web page that plays rtsp links. I am using vlc embedded plugin to play the streams.
NoelML
  • 31
  • 2
3
votes
1 answer

Google Glass stream video to server

I'm trying to build an app for Google Glass that can stream to a server and have a client view the stream via a web browser. So far it seems I need to do this via RTSP to a media server such as Wowza and then have a web server hosting some video…
egfconnor
  • 2,637
  • 1
  • 26
  • 44
3
votes
2 answers

MediaCodec Video Streaming From Camera wrong orientation & color

I'm trying to stream video capturing directly from camera for android devices. So far I have been able to capture each frame from android camera's onPreviewFrame(byte[] data, Camera camera) function, encode the data & then successfully decode the…
3
votes
0 answers

Requesting mp4 byte ranges based on time

I have a partial mp4 file, containing the fytp and moov atoms and an incomplete mdat atom. Is it possible to use the information in the stbl atom to determine the byte offset of a frame calculated from an arbitrary time? With this byte offset…
Dave
  • 479
  • 3
  • 13
3
votes
0 answers

HTTP Live Streaming on Android from a Dynamically Generated Playlist

I am creating an Android app that streams videos using the Http Live Streaming protocol from a web application. Currently I am streaming the video playlist and segments, which were created by Amazon Elastic Transcoder, from an Amazon S3 bucket. This…
3
votes
1 answer

Using Gstreamer in Windows

I usually use Gstreamer in Linux and there I install it simply using the command yum install gstreamer... and then I can play an RTP stream by the command gst-launch-0.01 playbin2 ... Now I need to do the same in Windows and I tried to download the…
user573014
  • 715
  • 3
  • 15
  • 30
3
votes
0 answers

FlowPlayer Commercial Does Not Load

Since FlowPlayer does not offer support unless you pay for it, even on the commercial version, I'm asking this question here for I have to fork out money to fix this. We're currently using the commercial version FlowPlayer Flash. I've downloaded the…
David Fairbanks
  • 638
  • 7
  • 17
3
votes
0 answers

Encode video for streaming in Android using FFmpeg

UPD: I guess I found the problem. For some reason, 1800x1080 video aren't playing while same vid resized to 800x480 with same set of encoding settings is working just fine. So the question is: why I couldn't play video with res. bigger than the…
Timofey
  • 490
  • 1
  • 4
  • 18