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
5
votes
2 answers

While creating a REST API in node, How can I stream http response from a request made to an external website to the original api call?

So, I am creating a REST API using node and I have to create a route. Purpose of the route: Act as a proxy server and make a call to a different external website and return the response it gets to the original request. So far, I have the following…
Karan Bhomia
  • 169
  • 3
  • 8
5
votes
3 answers

akka-http chunked response concatenation

I'm using akka-http to make a request to a http service which sends back chunked response. This is how the relevant bit of code looks like: val httpRequest: HttpRequest = //build the request val request =…
Caballero
  • 11,546
  • 22
  • 103
  • 163
5
votes
1 answer

server-sent events Golang

I would like to do some one way streaming of data and am experimenting with SSE vs Websockets. Using SSE form a golang server I'm finding it confusing on how to notify the client when sessions are finished. (eg the server has finished sending the…
mcbain83
  • 492
  • 6
  • 19
5
votes
2 answers

HTTP request failed! HTTP/1.1 400 Bad Request

I am trying to create a issue in Jira . I am able to make a GET request with a proper response, but the problem arises when i make a POST request.Here is the code.
Vaibhav Desai
  • 2,334
  • 2
  • 25
  • 29
5
votes
2 answers

RTMP vs HLS vs HDS

I would like to stream a VOD/Live on following platforms using JW player but not sure which streaming is best suited for each platform Desktop iOS Android I understand RTMP will not play on mobile devices. So do I need to go for RTMP for desktop…
Gopi
  • 5,656
  • 22
  • 80
  • 146
5
votes
2 answers

AVPlayer seekToTime: doesn't use buffer

I am developing an application for playing video using HTTP Live Streaming technology. For this I use AVPlayer which init as follows: [[AVPlayer alloc] initWithURL:[NSURL URLWithString:VIDEO_URL]]; Then I check the state of the buffer using…
4
votes
1 answer

HTTP Streaming on Heroku with Rails 3.1 & Unicorn

Inspired by the RailsCast on HTTP Streaming, I've decided to turn it on on my server. However, the listen 3000 :tcp_nopush => false line that Ryan suggests adding to my unicorn.rb doesn't play well with Heroku (they don't let you specify a port). Is…
Sudhir Jonathan
  • 16,998
  • 13
  • 66
  • 90
4
votes
1 answer

HTTP Streaming: what realizations of Push Technology are available?

I'm currently in search of an usable realizations of http Push Technology. At least it must support channel subscription and channel publication. What convenient implementations in C++ (or C) are available?
sergzach
  • 6,578
  • 7
  • 46
  • 84
4
votes
2 answers

Which is the best Flash H.264 HTTP Streaming method?

I'm looking into streaming of prerecorded h.264 videos of HTTP. I'm running into too many firewall problems using RTMP. Are people picking up on the new Adobe HTTP Dynamic Streaming…
marstonstudio
  • 395
  • 3
  • 9
4
votes
6 answers

How to implement the Adobe HTTP Streaming spec without using their Streaming server

As of Flash 10.1, they have added the ability to add bytes into the NetStream object via the appendBytes method (described here http://www.bytearray.org/?p=1689). The main reason for this addition is that Adobe is finally supporting HTTP streaming…
Scott
  • 16,711
  • 14
  • 75
  • 120
4
votes
1 answer

akka-http send continuous chunked http response (stream)

I have this crude test example with akka-http client and server. Server.scala: import akka.actor.ActorSystem import akka.stream.ActorMaterializer import akka.stream.scaladsl.Sink import akka.http.scaladsl.Http import…
Caballero
  • 11,546
  • 22
  • 103
  • 163
4
votes
1 answer

A client for HTTP server push (streaming) in Rust?

For the lack of a better example, let's say I want to write a simple client with Rust that could establish a connection and receive data from Twitter's HTTP Streaming API. Is this possible yet? I've been keeping an eye on Iron and Nickel which seem…
Caballero
  • 11,546
  • 22
  • 103
  • 163
4
votes
0 answers

Rails HTTP Streaming: ActionView::Template::Error (undefined method `encoding' for #)

I try enabling HTTP streaming in my Rails app but I keep having this error: ActionView::Template::Error (undefined method `encoding' for #): 1: = content_for :content do 2: h1 Hello 3: …
Dorian
  • 22,759
  • 8
  • 120
  • 116
4
votes
3 answers

Streamed HTTP with GZIP being buffered by StreamReader?

Struggling to find anyone experiencing a similar issue or anything similar. I'm currently consuming a stream over http (json) which has a GZip requirement, and I am experiencing a delay from when the data is sent, to when reader.ReadLine() reads it.…
Dan Saltmer
  • 2,145
  • 13
  • 15
4
votes
1 answer

Http streaming using red5

I wanted to perform http streaming from red5 server so as to use it to broadcast for Iphone. Can u guys suggest a way to do it. Is there a way to play rtmp stream from red5 in Iphone. Any help is appreciable
sunil reddy
  • 135
  • 1
  • 1
  • 8
1 2
3
15 16