Skip to main content

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.

0 votes
0 answers
13 views

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

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
  • 511
1 vote
0 answers
21 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
43 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
115 views

How to interface with a UNIX port?

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
14 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
16 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
0 votes
0 answers
9 views

How can I record internal computer sound joined with input sound and save all in one file?

I want to write a client and server in c#, client will record internal sound + input sound (microphone) and stream it to the server, how can I achieve the join effect, to stream their both without any ...
Errant Wanderer's user avatar
0 votes
0 answers
18 views

stream is hunging when no internet is detected instead of closing the pipeline

I'm trying to display save and stream rgb/ir data to an external server via network, but i want to also be able to display and save in case there is no network so that i don't lose data. iam using ...
Ihssane Oubari's user avatar
-1 votes
0 answers
66 views

Low latency video streaming over local network using MediaMTX [closed]

I'm using OBS with MediaMTX to stream content to less than 5 clients within local network. All devices are capable of H265 decoding. However I am having issues with latency. RTMP/RTSP/HLS or WebRTC no ...
user26310492's user avatar
0 votes
0 answers
19 views

Exoplayer HLS Cache

Is it possible to cache played hls stream from exoplayer? I was reading a lot about caching of other media types, but I couldn't find any solution for hls streams. There are some old comments like the ...
X3NomoRpH's user avatar
0 votes
0 answers
6 views

How Can I Use Run Manager to Stream Response on RetrievalQA?

I'm working with the langchain library and transformers to build a language model application. I want to integrate a CallbackManagerForLLMRun to stream responses in my RetrievalQA chain. Below is the ...
rahul raj's user avatar
-1 votes
1 answer
42 views

RxJava strip bytes at regular interval from a stream and then further extract messages based on length indicator of message bytes

I have a Java inputstream, that I skip 2 bytes every n bytes. Now the output of that are bytes that are clean after stripping the 2 delimiters every n bytes. This output is a series of bytes where the ...
chhil's user avatar
  • 440
1 vote
1 answer
32 views

System.Text.Json.JsonSerializer does not overwrite existing file fully when using file stream

Consider the following code: internal class Program { static async Task Main(string[] args) { var t = new Thing() { Name = "Some Long Name" }; string path = @"c:\...
rory.ap's user avatar
  • 34.8k
0 votes
0 answers
32 views

Streaming data from delegate to function call

I have a 3rd party library that calls a delegate every time there is a buffer of data, and I need to get this buffer into a stream and send the stream to S3. So I use a FileStream to write to a ...
Andy's user avatar
  • 97

15 30 50 per page
1
2 3 4 5
1040