Questions tagged [http-streaming]

HTTP server push (also known as HTTP streaming) is a mechanism for sending data from a web server to a web browser.

HTTP server push (also known as HTTP streaming) is a mechanism for sending data from a web server to a web browser.

More details at Wikipedia page on Push Technology

232 questions
0
votes
0 answers

Android HTTP progressive streaming onBufferingUpdate stops being called after a few seconds

I have developed an Android music player app that can stream MP3s via HTTP progressive download (via WiFi, using Apache). This is how I set up the MediaPlayer to stream the MP3: mediaplayer.setDataSource(192.168.../song.mp3) Everything works fine…
0
votes
1 answer

iDevices as HTTP Live Streaming server

From what have gathered so far, Apple provided tools to make Mac to act as HTTP Live Streaming server. But my goal is different. I want to make iDevices to be the HTTP Live Streaming server. (for local network only) Can it be done at all?
EmilyJ
  • 872
  • 2
  • 8
  • 19
0
votes
1 answer

Implementing thread per request in HTTP Streaming servlet

I'm implementing HTTP Streaming servlet to deliver push notifications to client. In that container there is also Jersey JAX-RS REST service. The problem is when I open the stream in two browser windows I have to wait until the other request is…
ik1
  • 213
  • 3
  • 14
0
votes
1 answer

Comet - HTTP Streaming with IHttpAsyncHandler - chunk not working

I'm trying to implement HTTP Streaming by using IHttpAsyncHandler and flushing. Basically I'm flushing to the response every once and a while - saving the connection opened untill some timeout - and then the client should initiate another…
Tomer Peled
  • 3,571
  • 5
  • 35
  • 57
0
votes
1 answer

Download part of a video file through a servlet

So I have a link to a video online (e.g. somewebsite.com/myVideo.mkv) and I want to download that video on the server through a servlet. The video file has CDN enabled, so basically any public user can just put the link into the browser and it will…
GiangP
  • 31
  • 6
0
votes
1 answer

Feed streaming HTTP to Scala's XMLEventReader?

Originally I was trying to use Java APIs for this, but now I am going to see if I can use Scala to parse XML documents coming through an XML stream. The following is a basic setup of XMLEventReader: val reader = new…
crockpotveggies
  • 12,682
  • 12
  • 70
  • 140
0
votes
1 answer

Do not show the URL in page source

I have some copyrighted audio files that I would like to protect from download, but show them on the website(drupal). I have a player that works with flash and css on a link, but if you view the page source the href of the link is visible, and it is…
MMT
  • 81
  • 9
0
votes
2 answers

How to control chunks in jetty?

I'm writing HTTP webservice that may take quite long to produce results. I use embedded Jetty 8.1.5 and JAX-RS (Apache CXF) I decided to go with some kind of control protocol: when new request comes, I start a long-running job in a separate thread…
relgames
  • 1,356
  • 1
  • 16
  • 34
0
votes
2 answers

Increase video buffer for HLS (Apple HTTP Live Stream), possible?

We're using Wowza 3.5 in our server to stream videos, and JW Player for the player. The streaming of videos are working fine when viewed in iPhone and iPad. What we are trying to do now is, when a video is playing on an iOS device and a user paused…
officeboi101
  • 219
  • 4
  • 16
0
votes
1 answer

Is there a way to clear XDomainRequest.responseText in IE8

I'm implementing server push solution. Is there a way to clear XDomainRequest.responseText of IE8, since it gets filled with the every response chunk? (to get same effect as in Firefox xhr.responseText with multipart where it contains only the last…
Don Srinath
  • 1,565
  • 1
  • 21
  • 32
0
votes
1 answer

CISCO 2500 IPC streaming in Windows Phone 8

I am developing a WP8 app, which needs to implement the real-time video streaming feature. Thus far, I have followed these steps, to configure the Silverlight video player in my app. I have Cisco 2500 (wired) and Cisco Switch. I am able to get the…
vulcan raven
  • 32,612
  • 11
  • 57
  • 93
0
votes
2 answers

How HTTP streaming is different from Comet for server push?

I want to implement Server Push in my Java web application. HTTP Streaming is that I can open a connection with the client and its always open and sends data whenever server gets it. 1. But how is this different from Comet? 2. I want to use server…
0
votes
0 answers

http streaming TO server FROM client (mobile device)

I know it's possible to stream content from a server to a web browser. I'm curious if there is a method to allow the same in reverse; and once a page is requested/connection established to then try and keep it open and stream content to the server…
scape
  • 652
  • 12
  • 27
0
votes
1 answer

Streaming app.net's public stream with node js

I'm new to this streaming/http long living connection stuff. This is what I got so far: var accessToken = require('./config.js').accessToken , https = require('https') ; var req = https.request({ host: 'alpha-api.app.net', path:…
nocksock
  • 5,369
  • 6
  • 38
  • 63
0
votes
2 answers

streaming video file using vlcj

I am trying to play a video file ..but getting few errors , not sure how to solve these errors , can anybody help me out please, thanks in advance `Streaming 'C:\Desktop\movie.mp4' to…
Ruby
  • 873
  • 5
  • 20
  • 47
1 2 3
15
16