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
1 answer

How can i write HttpStreamContent to file?

this is my code for downloading a file. but im not sure how to write the file to disk. private async Task DownloadFile() { HttpStreamContent streamContent = new HttpStreamContent(new SlowInputStream(streamLength)); …
mhmt93t
  • 117
  • 1
  • 10
0
votes
1 answer

unable to http stream from ip android cam

I have connected my pc and my android device over wifi and started the DroidCam app on my android device. Now if i try to open the url http://192.168.100.4:8080/mjpegfeed?640x480 in web browser, i am able to see the live video from my android…
Gaurav Gupta
  • 1,929
  • 4
  • 21
  • 40
0
votes
3 answers

G-WAN, NodeJS, and Streaming

Does G-WAN spin up a new NodeJS instance for every user request? (i.e. if you're using JavaScript for a servlet) For instance, if 100 users request an action at the same time that's handled by a specific script. My primary question goes with…
Ohenepee Peps
  • 157
  • 1
  • 12
0
votes
1 answer

vlc http stream with android

I compiled vlc for android with version 1.8 and I found a official demo with link: https://bitbucket.org/edwardcw/libvlc-android-sample .It's works fine with localVideo. I try to play a http stream, so I change the code below: // Create LibVLC //…
0
votes
1 answer

Compress the streamed output with cherrypy

I am using cherrypy for a web server which is able to stream the output of some methods. Server uses yield to send lines of data and client uses onprogress event of $.ajax method. But enabling 'tools.gzip' config of cherrypy caused the output not…
mtoloo
  • 1,795
  • 3
  • 22
  • 28
0
votes
0 answers

Is there a character limit for a Server-Event Streaming?

I'm working on a streaming server-event (EventSource), and I need to send really big JSONs through it. Is there a character limit? Will the message be trimmed or not sent if the message is too long? I couldn't find anything related on the web.
c4b4d4
  • 964
  • 12
  • 32
0
votes
1 answer

Web browser viewing of a chunked http entity data stream

Based on the techinque described at this question I have written a basic microservice to provide continuously streaming ByteStrings using akka-http. The pertinent scala code being: import akka.actor.ActorSystem import…
Ramón J Romero y Vigil
  • 17,373
  • 7
  • 77
  • 125
0
votes
1 answer

Streaming live video from iOS using HTTP

I have read about HTTP Live Streaming from Apple. So far I understand that it was created for streaming video to iOS devices. But is it possible to use this approach to stream from iOS device while recording on camera? If so can you give me a clue…
Superian007
  • 395
  • 7
  • 25
0
votes
1 answer

On WP8.1 ONLY: cannot read more than 65536 bytes off an HTTP Stream

Hope someone could please provide any help on an issue I'm struggling for quite a lot of time. Goal: I need to read an http stream from a specified URI, that I startup & endlessly read with the following code (which I stripped down to minimum so to…
0
votes
1 answer

how to get kafka to consume http streaming data on spring xd runtime?

Is it possible to have kafka source module work as a processor module in spring xd runtime? Any code samples? I am trying to achieve something like this: http (xd source) | kafka source (xd processor)| kafka consumer (xd sink) I am trying to do this…
Neeraj
  • 592
  • 4
  • 6
  • 21
0
votes
1 answer

Notify windows program from WebServer

At the moment I'm writing a small program in C# for windows 7 which can send notifications over GCM (Google Cloud Messeging) to my Android smartphone. For this I send some data via POST to my WebServer which then pushes the data over GCM to my…
Cilenco
  • 6,951
  • 17
  • 72
  • 152
0
votes
1 answer

Http video streaming needs to download full video data to start play?

In my server two mp4 file is available. When I browse the video1.mp4 url from my browser, it started to play the video file in browser. If I play video2.mp4 url from browser,it takes long to start playing. At that time I had checked the browsers…
Finder
  • 1,217
  • 5
  • 18
  • 46
0
votes
1 answer

Ajax Http Streaming pattern

I want to do a fairly simple implementation of a chat app using rails. from a theoretical standpoint I feel that ajax streaming pattern should be the way to go. However I am not sure, how it works and what are the potential disadvantages of this…
Priyank
  • 14,231
  • 18
  • 78
  • 107
0
votes
1 answer

Django - HTTPStream of gzip file creaed on the fly

I used StringIO to create a file object that holds the xml data, then I created a gzip file with this file object, I am having trouble making this stream over HTTP with django, the file size is not always fixed and sometime it can be big, that is…
e-nouri
  • 2,576
  • 1
  • 21
  • 36
0
votes
1 answer

Android - Is it possible to access media files locally after they have been watched with VideoView and Mediacontroller?

I am using a MediaController and a VideoView to show videos that I am streaming via HTTP from Amazon S3. I want to make the video files accessible offline after hey have been watched for the first time. The streaming works well, my question is where…