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

In H264, what does the field_pic_flag mean and does it have a relation to encoding intervals?

I am looking at a H264 stream which has all true field_pic_flags in every slice header. The standard says the following about it: field_pic_flag equal to 1 specifies that the slice is a slice of a coded field. field_pic_flag equal to 0 specifies…
user3335040
  • 649
  • 1
  • 7
  • 17
3
votes
0 answers

AAC bitstream not in ADTS format and extradata missing

With FFMPEG, I'm sending a stream from Computer A over to Computer B, via UDP. This is done over a MPEGTS stream, encoded with libx264 and aac. Computer B takes this stream with FFMPEG and puts it into an m3u8 playlist. After a random time (2-35…
Boehmi
  • 951
  • 3
  • 9
  • 20
3
votes
3 answers

P2P video streaming on Android using WebRTC

I'm looking for a WebRTC platform/API/SDK for P2P video streaming from an Android camera to another Android device running my app http://www.gotyapp.com. I've looked at Twilio, they don't support it. So far only Weemo and Tokbox potentially. Any…
user3889167
  • 31
  • 1
  • 3
3
votes
0 answers

Android progressive video streaming

I just want to stream video in android app, I tried following approachs: 1) Using VideoView and setting setVideoURI(vidUri):Problem: Works fine for small videos but starts stuttering for large videos and request for range headers multiple times. 2)…
3
votes
2 answers

AVSynchronizedLayer animation works fine with local file but not while streaming

I have an animation that works fine with a local video file using an AVSynchronizedLayer. Now, when I replace the local file like with a streaming link(of the same file) the animation totally stops working. I have no clue whats causing this, have…
Faraz Hassan
  • 663
  • 1
  • 6
  • 24
3
votes
1 answer

Embed youtube video in Kivy

I want to embed videos in a widget in Kivy using youtube URLs. Is that possible ? The documentation gives example for VideoPlayer - http://kivy.org/docs/api-kivy.uix.videoplayer.html but its only for playing local files.
Lyman Zerga
  • 1,415
  • 3
  • 19
  • 40
3
votes
1 answer

Are there RTMFP tutorial for P2P video streaming?

Are there RTMFP tutorial for P2P video streaming ?
xRobot
  • 25,579
  • 69
  • 184
  • 304
3
votes
1 answer

Wifi Direct - streaming video from one device to other

Please help me getting started how do i achieve live streaming of video on one device on another using Wifi Direct. I have already established connection between the two devices.What is the next step to follow
madcolonel10
  • 735
  • 2
  • 9
  • 22
3
votes
2 answers

HTML5 video - ashx handler - seek

I'm trying to use an ashx handler as an HTML5 video source. I can achieve this, but I can not move forward further on the video that what has already buffered. I can see on the network tab using a standard MP4 source that seeking forward creates…
BenG
  • 14,826
  • 5
  • 45
  • 60
3
votes
0 answers

how to create a stream from images and then sharing it via a network in objective-c?

I am working on an application that continuously takes still images and then streams those images as an MPEG video stream to an HTML client via some network. I have been watching the 2014 WWDC video "Direct Access to Video Encoding and…
m3o
  • 3,881
  • 3
  • 35
  • 56
3
votes
2 answers

Nodejs stream video from CouchDB and display in video tag

I am trying to stream video attachment from CouchDB using nano middleware in NodeJS. Video is received on the browser. I do not know how I should stream it on client and how to display it in HTML Tag. Here is my NodeJS code to read attachment from…
Bhoomi
  • 781
  • 6
  • 22
3
votes
2 answers

How to create RTSP player in iPhone

Is it possible to view video stream (H.264 live feed) over RTP/RTSP in native iPhone ? If not,is it possible to write an application and then I have rtsp url how to get streaming video in iPhone. "rtsp://192.168.2.148:1935/live/test.stream" I got…
Pavan Alapati
  • 317
  • 1
  • 5
  • 17
3
votes
0 answers

How to stream video to and from Google Glass

I really need help. I have spent days on stack overflow trying to find answers to my questions without any luck. Here is what I am trying to accomplish... I am trying to capture video from the google glass camera, and stream it to a WebRTC server…
JudithO
  • 69
  • 4
3
votes
0 answers

Convert Google Video URL

When i download a video from YouTube(Google docs or Google plus) with a download manager this what i get referer: http://www.youtube.com/watch?v=71zlOWbEoe8 address: …
user3716328
  • 39
  • 1
  • 4
3
votes
2 answers

Video Streaming VLC To Android App

I want to stream a video from vlc to android app.I tired number of times.I referred http://www.howtogeek.com/118075/how-to-stream-videos-and-music-over-the-network-using-vlc/ tutorial.And this is my Java(Android) code block @Override protected…
Tharanga
  • 377
  • 3
  • 8
  • 18