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
0 answers

Android RTSP streaming buffer size for delayed playback

I can access and view RTSP streams from IP cameras on Android via the VideoView component without problems. Now I need to play the RTSP stream with a delay (i.e. if I specify a 30 second delay, the playback on screen should be 30 seconds behind the…
frijj2k
  • 161
  • 1
  • 6
3
votes
1 answer

Routing video stream traffic through Android phone

I want an Android phone to control a video stream playback on a Samsung Smart TV. I can send a UPnP command to the TV with a URL to the video stream. Unfortunately the Samsung TV don't accept URLs that point outside the local network. To make a…
Juhani
  • 5,076
  • 5
  • 33
  • 35
3
votes
0 answers

Live audio streaming from Java server to browser (Flash,HTML5)

For a project, I need to be able to stream live audio from a Java server to the browser on the client. My first guess was to use RTMP with a Flash player, my second guess to make use of the HTML5 audio tag. But so far, I've failed to find anything…
mistalee
  • 881
  • 6
  • 14
3
votes
2 answers

JWPlayer and securing video

I am currently using JWPlayer on my site, and I have been asked to secure the video. The only problem is that the way the video works, the video URL is simply placed in the tag. If anyone want's to download the video they simply view source and…
Chud37
  • 4,907
  • 13
  • 64
  • 116
3
votes
2 answers

zlib, how to decompress stream of compressed data chunk?

I have a problem about transfer compressed data across network. The data size is around a few hundred MBs. My plan is to divide the data into 1MB chunk and compress each chunk with zlib, then stream the compressed data over network. On the other…
3
votes
1 answer

300MB Video Streaming with security (PHP)

We need your help with one PHP project client restriction. He wants full download security video from server, he wants video storage be out of public directory, and video streaming must be in HTML5, without Flash. I have one solution, load video in…
Dani
  • 4,001
  • 7
  • 36
  • 60
3
votes
1 answer

How to cache into disk audio streamed into MediaPlayer?

How to cache into disk audio streamed into MediaPlayer? I'd like to use cached audio instead of downloading it each time. Unfortunately setDataSource even do not accepts InputStream, so I don't know solution.. My code: …
Taras
  • 507
  • 1
  • 6
  • 17
3
votes
2 answers

Returning a JSON stream from an ApiController

I've got a large JSON Object which I need to return from an MVC ApiController. I can't simply return the JSON Object as the internal serializer barfs on the serialized contents being too long. I don't want to serialize to string and then return the…
Basic
  • 26,321
  • 24
  • 115
  • 201
3
votes
2 answers

mp4 videos not streaming on site

I am using jwplayer to play mp4 videos on my site. The files are huge. They dont start streaming until the whole video has buffered. I need the videos to stream and buffer at the same time. I read all forums and they mentioned about moving the…
3
votes
3 answers

PHP file-streaming from client over the server to client

Question Is it possible to stream an uploading file over PHP, so that an other client can download it while the first one is uploading? I don't want to save the file permanently on the server. How can I do that? Why PHP? The downloading client…
tinu
  • 558
  • 5
  • 18
3
votes
0 answers

Windows Phone 7 Streaming Audio Basic Authentication

I am trying to play a password protected Icecast stream from Windows Phone Application. UriBuilder station = new UriBuilder(); station.Host="myhost"; station.Port=80; station.Password = "password"; …
Martin Solomon
  • 163
  • 1
  • 6
3
votes
0 answers

Android webcam streaming

I found code of application, which (in theory) receives video stream and shows on VideoView object. package com.example.cameraapp; import android.net.Uri; import android.os.Bundle; import android.view.View; import android.app.Activity; import…
dudeck
  • 393
  • 5
  • 13
3
votes
1 answer

WCF Streaming File Issue

Is it possible to stream a file using WCF with a MessageContract that contains another MessageContract that has the Stream inside it? I think the answer is no, but I'd much prefer to package my file inside a "Root" message so to speak. In otherwords…
Tada
  • 1,585
  • 2
  • 16
  • 26
3
votes
2 answers

How can I stream very long H.264 videos over HTTP without long startup times? (or: MOOV atom too large)

I want to stream videos of public meetings that are often 10 hours long. Users will generally be starting at some point in the middle of the video and jumping around frequently. H.264 in an MP4 container seems like the current best option for…
michael
  • 1,757
  • 2
  • 12
  • 9
3
votes
0 answers

Insecure HTTP-Streaming with Flash on secure website

I'm running a secure website with a valid SSL certificate and I'm embedding a flash player to be able to stream video data via HTPP adaptive bitrate streaming. Problem is that the host of the video contents is a non-secure host, serving the contents…
dArignac
  • 1,205
  • 4
  • 11
  • 25