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

Why does the request pipe includes the headers in this code?

I have a strange situation regarding http server and piping request. From my past experience, when piping the request object of a http server to a writable stream of some sort, it does not include the headers, just the payload. Today however, I…
Tom Klino
  • 2,358
  • 5
  • 35
  • 60
0
votes
1 answer

Architecture for Live Audio Streaming web app

Need your opinions on architecture for the live audio streaming app. Currently, I'm testing it on a local network, and everything seems to work, but I have doubts about how good it will be in production. My architecture: 1 …
0
votes
1 answer

How to use MPEG-DASH in our legacy system

I have a legacy video distribution prototype that allows users to record a video on their devices, uploads it (the whole video as a single file) to the cloud while it is being transcoded to a specific format, and then shares it with other devices to…
Tina J
  • 4,983
  • 13
  • 59
  • 125
0
votes
1 answer

Difference between region of interest & viewport

I am doing some research on adaptive streaming of omnidirectional video and wanted to know what the difference is between "viewport" and "region-of-interest." I've seen it used in the same context so I'm not exactly sure if they describe the same…
0
votes
1 answer

How to setup Windows Media Service using Windows Media Http Streaming Protocol?

Windows Media Service default using MMS protocol. So how to setup Windows Media Service using Windows Media Http Streaming Protocol?
0
votes
0 answers

How do get iter_lines to be nonblocking?

Hi I am new to Python I have some code that looks like this. import requests import asyncio async def get_http_stream(): res = requests.get('https://www.blah.com', stream=True) for line in res.iter_lines(decode_unicode=True): …
0
votes
0 answers

SSRS report external image source

I am trying to create a solution to show dynamic images in SSRS reports. I have .NET process that generates Base64 strings that after decoding returned to the client. Here is C# code: byte[] imageBytes = Convert.FromBase64String(image); MemoryStream…
Mark
  • 4,535
  • 7
  • 39
  • 76
0
votes
2 answers

Does HTML5 support HTTP Psuedostreaming of video?

Can I click on some time and eventhough the video is not downlaoded till that time and the video starts playing from the time I clicked? If yes, what would be a better option for viewing streamed video- HTML5 or flash player like JW player? WHich…
Poojan
  • 3,312
  • 4
  • 20
  • 23
0
votes
1 answer

How to prevent my forever-frame from closing the connection on me?

So, I'm using a forever-frame to stream data from Tornado to a JavaScript client application, and I'm finding that the JavaScript client occasional just stops receiving data. I've implemented a heartbeat method, where the client will change the URL…
mikepurvis
  • 1,568
  • 2
  • 19
  • 28
0
votes
0 answers

How can I get a stream of a refreshing ip webcam?

On many webcam sites there are jpg webcams which refresh every second instead of a uninterrupted m3u8 stream. How can I get live images every second without refreshing the Page? Or what parameters can I add to the IP adress to show a mjpg stream? On…
0
votes
0 answers

Restreaming mpd to m3u8 loads CPU, any solution?

i restream channels from mpd to m3u8 but it loads cpu very much. Is any soliton to restream mpd streams easily? This is code: [program:channel] autorestart=true command=/usr/local/ffmpeg/bin/ffmpeg -re -hide_banner -headers 'Referer:…
0
votes
2 answers

How do I receive live data from a long lived HTTP connection in C#?

I'm looking to process the results of a long-lived HTTP connection from a server I am integrating with as they happen. This server returns one line of JSON (\n delimited) per "event" I wish to process. Given an instance of Stream assigned to the…
Alexander Trauzzi
  • 7,277
  • 13
  • 68
  • 112
0
votes
1 answer

refreshing access token and handling infinite http streams

I am subscribing to an infinite http stream (current temperature for example), However I need to refresh my access token once every X seconds, how would handle it? example: s = requests.Session() r =…
moshevi
  • 4,999
  • 5
  • 33
  • 50
0
votes
1 answer

Is it possible to flush a node response to the client to keep a connection alive?

I have a large data-set that a client is requesting. It requires loading and processing so I can convert it to CSV. If I try to load and convert the entire data-set at once it doesn't finish processing before the client times out. In response to…
Prometheus
  • 61
  • 7
0
votes
1 answer

Receive HTTP Stream in Spring Boot

i want to receive a HTTP Stream in SpringBoot but the InputStream of HttpServletRequest seems not to be an endless HTTP Stream and only contains the Content of first HTTP Body. I want to process a chuncked HTTP Stream in SpringBoot on which is puhed…
Ni9e
  • 41
  • 12