Questions tagged [streaming]

Streaming is the process of delivering digital multimedia content from a provider to a consumer over a network. The provider may have the data stored or may be relaying it from a live source.

In computer science, streaming is the process of sending or receiving a sequence (stream) of data elements made available over time. A stream can be thought of as a conveyor belt that allows items to be processed one at a time rather than in large batches which must be completed in whole before subsequent data transfer occurs.

Streams are processed differently from batch data – normal functions cannot operate on streams as a whole, as they have potentially unlimited data, streams are codata (potentially unlimited), not data (which is finite).

More details in Wikipedia page on streaming media

Streaming Libraries

7307 questions
3
votes
1 answer

AR Drone 2 and ffserver + ffmpeg streaming

I want to be able to restream the video feed of the AR Drone 2 from a Debian Server to Flash. I am aware that the AR Drone uses the codec p264. I'm totally green when it comes to video codecs, so I don't know what will be suitable for the goal I…
3
votes
1 answer

ffmpeg unrecognized option 'segment_list_flags'

this is my first time ever posting a question on here, so bear with me. I'm using Ubuntu 12.04 and ffmpeg version 0.11.2, and I'm trying to capture a video from /dev/video0, segment the videos, and then create an m3u8 list file that lists all the…
user1704620
  • 101
  • 2
  • 6
3
votes
1 answer

MP4 slow start for large file

I have a server that stream mp4(h264). I use MP4Box to put the moov atom at the beginning of a file and interleave default 500 ms. However, I noticed that at peak times when the server is busy, the files start streaming slower, but not same slower,…
Cristian Rusu
  • 144
  • 1
  • 9
3
votes
1 answer

Save video stream from Socket to File

I use my Android application for streaming video from phone camera to my PC Server and need to save them into file on HDD. So, file created and stream successfully saved, but the resulting file can not play with any video player (GOM, KMP, Windows…
Alex
  • 571
  • 1
  • 8
  • 26
3
votes
0 answers

Wcf streaming deserialization exception

I have a very strange problem when using streaming mode in wcf. Here are my server and client configurations. Server config:
Giorgi Nakeuri
  • 35,155
  • 8
  • 47
  • 75
3
votes
5 answers

Finding server internet bandwidth thru java for streaming

Following this thread. Streaming large files in a java servlet. Is it possible to find the total internet bandwidth available in current machine thru java? what i am trying to do is while streaming large files thru servlet, based on the number of…
Madhu
  • 5,686
  • 9
  • 37
  • 53
3
votes
1 answer

wowza / red5 performance

I need to build infrastructure for video streaming service, that will be able to handle >100 live streams with average of 50 viewers, where top stream can have up to 5000 viewers. All streams will be served as multicast, not extra transcoding will…
3
votes
2 answers

Simultaneous AJAX calls during HTTP streaming

I have an Apache server running a web application. In this webapplication I show a video using JWPlayer. JWPlayer uses http pseudostreaming to fetch the video from a PHP script which serves up this video. All this works well and the video is…
CptEO
  • 33
  • 2
3
votes
0 answers

Video streaming on windows phone gives "3100 An error has occurred"

Initial data: windows phone 7.1 application; video streaming (video: MPEG‐4 AVC (part 10) (H.264); audio: MPEG AAC Audio (mp4a)); not a smooth streaming; opened in VLC with any problems; all capabilities are included (ID_CAP_MEDIALIB,…
sashaeve
  • 9,387
  • 10
  • 48
  • 61
3
votes
2 answers

importing updated files into a database

I have files that are updated every 2 hours. I have to detect the files automatically and insert the extracted information from them into a database. Our DBMS is Postgresql and programming language is Python. How would you suggest I do that? I want…
f.ashouri
  • 5,409
  • 13
  • 44
  • 52
3
votes
1 answer

Stream a couchdb attachment with web2py

I have some sound files in a couchdb database (not related to web2py). My web2py application has access to this database, and I want to stream the sound files so that they can be listened with the HTML audio tag, like this:
blueFast
  • 41,341
  • 63
  • 198
  • 344
3
votes
0 answers

Web cam streaming in web application to java server

I'm implementing a face based network authentication system and I'm looking for a good solution of how to stream video over the network. I'd like to get audio&video from user's webcam, display webcam output in user's browser and stream media…
Piotr Sobecki
  • 113
  • 1
  • 2
  • 8
3
votes
0 answers

java rest streaming upload

Using Rest webservices (WS) to upload file whose size is between 10 and 50 MB At the moment, we use Java, Jax-RS and CXF for doing it. The behavior of this stack is to buffer the uploaded file by writing them into a temporary file (because we have…
Sylvain
  • 876
  • 8
  • 11
3
votes
1 answer

ONVIF compatible open source streaming server for Linux based systems

I am currently working on an ip-camera project. Initially we decided to use live 555 as a streaming server, but later on we had a requirement to make the camera ONVIF compliant. I'm not sure about this, but live 555 is not an ONVIF compliant yet.…
uyaseen
  • 1,189
  • 3
  • 16
  • 34
3
votes
3 answers

Copying NetworkStream to MemoryStream takes infitity ∞ days

I've following code: _clientRequestStream = _tcpClient.GetStream(); var memoryStream = new MemoryStream(); _clientRequestStream.CopyTo(memoryStream); CopyTo takes long long long time to copy a Stream into another Stream. It seems application stops…
Saber Amani
  • 6,409
  • 12
  • 53
  • 88
1 2 3
99
100