Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [stream]

DO NOT USE FOR THE JAVA STREAM API INTRODUCED IN JAVA 8 (use [java-stream] for those questions!) A stream is a series of data elements which can be accessed in a serial fashion.

stream
0 votes
0 answers
11 views

Pipe input and output from node.js to a Python program that itself reads/writes files

I need to execute a Python program synchronously in a node.js sandbox. This is the Python program: a = input('first value: ') b = input('second value: ') with open('file1.txt') as f: file1 = f.read(...
Amenhotep's user avatar
  • 919
-3 votes
0 answers
42 views

What's a performant way to remove data from a Stream (or TextWriter)?

We are using Sep to process CSV files before a bulk import into a database. The process is fast, but Sep trades some error correction for raw speed. One of our vendors is submitting CSV files with an ...
Bryan Boettcher's user avatar
-1 votes
0 answers
5 views

Node.js Streams: Pipe writable stream to readable stream

I am working on a service that access XML files from FTP server. I am using basic-ftp for accessing ftp server. I am using downloadTo function I have to download a file into writeable stream from FTP ...
Wits_52's user avatar
0 votes
0 answers
19 views

stream setlength renci.sshnet.Sftp

I'm trying to truncate a file on a SFTP server by opening a stream and then setting the length. The docs state that the stream will be truncated to the provided length. But the file remains unchanged. ...
Hugo Delsing's user avatar
  • 14.1k
0 votes
0 answers
11 views

Flutter streaming with FFmpeg_flutter_kit not reaching server

I'm trying to stream my flutter screen to youtube using FFmpeg flutter kit. Everything seems fine but the output never reaches youtube server. log in using Yt flutter package. create a broadcast ...
Julio Cesar Reis's user avatar
0 votes
0 answers
11 views

Nodemailer not working in nextjs say's Module not found: Can't resolve 'stream'

Module not found: Can't resolve 'stream' https://nextjs.org/docs/messages/module-not-found Import trace for requested module https://nextjs.org/docs/messages/module-not-found Import trace for ...
Vedant Raut's user avatar
1 vote
0 answers
17 views

convert object to mock stream

given below was my object class .here i am trying to convert this object class to mock stream public class WebHookBody { public string entryId { get; set; } } i am trying to add ...
Harikarthik's user avatar
0 votes
0 answers
23 views

Flutter , How to form a sentence from a words that broadcasted from a websocket

Im using a websocket to make a chatbot. This is a broadcast Stream WebSocketHelper(@Named('webSocketUrl') String url) : channel = IOWebSocketChannel.connect(url) { _broadcastStream = ...
Febin Johnson's user avatar
-1 votes
0 answers
18 views

how to redirect absl logs in a pybinded C++ from the calling Python module [closed]

I have a Python binary that leverages numerous C++ functions through pybind11. Both in Python and C++ I'm using absl logging. I am trying to setup absl in Python to wrote logs to file instead of ...
Amir's user avatar
  • 509
1 vote
0 answers
27 views

process json response as a stream

I have an http response with a body that is a ByteReadChannel. I know that the content is an array of JSON objects. I need to filter that response body by properties of the JSON object. As the array ...
Martin's user avatar
  • 131
0 votes
0 answers
48 views

Extracting large password protected 7zip files whilst streaming?

I have a requirement to unzip password protected 7zip files from AWS S3 to a container that has limited space. The problem is I can't download the entire zip file and then attempt to extract it ...
Brunaldo's user avatar
-3 votes
1 answer
120 views

How to interface with a UNIX port? [closed]

I have encountered this same question in numerous forms over the past year, and have not been able to find the solution I am after. As the question has yet again reared its head, I am asking here with ...
BrownianBridge's user avatar
0 votes
0 answers
15 views

integrating chat with zoom clone

i am creating a meeting app using the stream . i want to integrate the chat in my application meeting room so can anyone tell me where should i integrate the code of my chat .currently i am adding it ...
lakshya agarwal's user avatar
1 vote
1 answer
17 views

ASP.NET Web Api Model Binding From A Stream

Im trying to send a http post request from Action1 to Action2 and instead of sending the payload as string Im sending it as stream for performance. Im getting the error. Unsupported Media Type [...
VJAI's user avatar
  • 32.6k
2 votes
1 answer
38 views

Continuously process data stream from external program in Matlab

So, I have written a C program that starts an external sensor module and then gets a stream of measurements from the sensor until the process is interrupted. Currently it just writes the measurements ...
ummg's user avatar
  • 291

15 30 50 per page
1
2 3 4 5
1040