Category "stream"

How to get specific chunks from stream node js

I'm trying to make a server that are used like a "CDN proxy". We have S1: main server that has all media S2 CDN proxy client The aim is: obtain a stream from se

NodejS Read/Write Binary Data to/from file

Alright, so I have a string with binary data ("111011 10001 etc"), and I'm trying to save it to a file to them read it on another file using streams, the issue

Stream, return value of characters that didn't pass the filter

I would like to count the characters that didn't pass the filter, and return this value too. How can i do that? My exc: Within class LambdasStreamExercise, impl

error of function replay in DolphinDB: inputTables must be one or a tuple of non segmented tables|DataSources

error message: inputTables must be one or a tuple of non segmented tables|DataSources Usage: replay(inputTables, outputTables, [dateColumn], [timeColumn], [repl

why can't create user using stream chat api in flutter?

I'm trying to create a chat screen in my flutter application using Stream chat API. the problem is when I try to create a channel with two users it shows that t

Libav API: How to modify the start time of an audio stream?

Currently, I am working on a new feature for my software using the Libav API. I was able to merge a video file with and audio file, the output is an MP4 file an

transform map : add new key value pairs to existing map Java 8

I'm trying to transform a Map by adding a new JsonObject key-value pair, if any of the map's JsonObject's key contains the "-fragment" String. Set<Map.Entry&

what's differnce between push() and callback in nodejs Transform

i'm implementing a Transform stream which is piped by mongoose cursor (which works like readable stream, (or maybe it's real readable stream)) const myTransform

How to add unique entries of Map<String,Object> to List<Object> using Java Streams?

I have a List<Object> element in Java which contains Map<String, String> before adding a new Map<String, String> I would like to know if there

How to find the sessions time from a stream of user login events in python?

Given User Login Events continuously appearing in a stream processing system similar to this, where each line is 1 event (you can assume the pipeline is externa

Flutter: convert future to stream

I am getting data as Future from my json API. And use my Flutter Mobile app. Here is my code for getting data from API- import 'dart:async'; import 'dart:conver

I keep getting the error `Central Directory corrupt` when trying to use ZipArchive

My code looks like below. public async Task<MetaDataItem> GetMetadata(Stream sm){ using (ZipArchive archive = new ZipArchive(sm, ZipArchiveMode.Read,

Difference between Web Streams and Node.js Stream APIs

I'm building a file upload application to familiarize myself with the concept of streams. I'm trying to turn a file list or blobs into a stream then upload it t

Get Count of json key using Java Stream

I have a json object that looks like this [{ "startAt": 1617605301292, "endAt": 1617605317095, "duration": 1580

How to filter streams values?

from pytube import YouTube yt = YouTube('http://youtube.com/watch?v=2lAe1cqCOXo') print(yt.streams) I am using pytube to download videos, but running the code

ListView not displaying item with BLoC pattern

I'm a flutter beginner and I'm currently working on an app that let me take a photo and then update a ListView to display the photo with a little text descripti

How to stream the desktop using FFMPEG , and set the output to http://127.0.0.1:8080

i am trying to use FFMPEG on windows to stream my entire desktop, through my localhost address : 127.0.0.1:8080 , and it will be accessible from another compute

How do I fix a "System.Net.Http.HttpRequestException: TypeError: Failed to fetch" in Blazor WebAssembly?

The code below, runs for about fifteen seconds on the "dataFs = await _Http.GetStreamAsync(BODIST_DATA_HTTPNAME)" line before failing with a "System.Net.Http.Ht

Limit of 1024 stream entries in the handler in DolphinDB subscription?

n=1000000 tmpTrades = table(n:0, colNames, colTypes) lastMinute = [00:00:00.000] colNames = `time`sym`vwap colTypes = [MINUTE,SYMBOL,DOUBLE] enableTableShareAnd

How stream a response from a Twisted server?

Issue My problem is that I can't write a server that streams the response that my application sends back. The response are not retrieved chunk by chunk, but fro