Questions tagged [streaming]

Streaming involves the efficient transmission of digital multimedia content from a provider to a consumer through a network. The provider can either store and deliver the data directly or relay it in real-time from its source.

Fetching data in a sequential manner within a Server Component to manipulate a consistent data set in Next.js

Recently diving into the world of next.js (utilizing v13 with App Router), I find myself in search of guidance regarding a particular challenge I've been wrestling with. My objective is to dynamically render data on a page and incrementally update it ...

How can audio be efficiently streamed to the browser in small chunks using JavaScript?

I am currently working on setting up an internet radio station where I want to easily switch songs and overlay sounds. My goal is to limit the audio rate so that the feed can be adjusted before being sent out. Additionally, I would like to provide continuo ...

In Scala using akka-http, fully implement a GET request by sending a pre-configured JSON object and streaming the response

My current challenge is completing a get request by returning a pre-built JsonArray and finding a way to stream it. Currently, I am able to successfully complete the request without any errors and return Json if I convert the JsonArray to a string as shown ...

Issue: Attempting to stream data to an express server using ffmpeg results in an error indicating that the output

I'm having some trouble streaming ytdl audio to my express server with ffmpeg as I keep receiving the error message "Output stream closed." Here is the code snippet I am using: const express = require('express') const ffmpeg = require(&apos ...

Looking for a Python library that supports proxy for Twitter Streaming API?

Anyone know of a Python library for the Twitter Streaming API that supports proxies? I like tweepy, but haven't found a way to use an HTTP proxy. Any suggestions? ...

Different applications of data streaming apart from multimedia content

Exploring the various applications of streaming, particularly when sending data from a server to a visual client such as a web browser or an application, has sparked my curiosity. While I grasp the fundamental idea of transmitting data in chunks rather t ...

Streaming SQL Server to Node.js using the MSSQL library

I am recently starting to explore the world of node.js and I'm currently working on establishing a connection to SQL Server using the mssql library. However, I find the example provided in the git repository to be quite vague, leaving me uncertain about ...

Node.js for Streaming Videos

I am currently working on streaming video using node.js and I recently came across this helpful article. The setup works perfectly when streaming from a local source, but now I need to stream the video from a web source. However, my specific requirement i ...

Experiencing difficulty sending data to the client when streaming with Express.js

I'm struggling to understand how to efficiently stream data back to my client when working with Node.js/Express.js. Currently, I am fetching a large amount of data from my database in chunks and I would like to stream it back to the client as soon as ...