Skip to main content

All Questions

Tagged with
0 votes
0 answers
5 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
22 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
0 votes
0 answers
99 views

Flutter: I get an error while decrypting the file in chunks

I have an encrypted file and I want to decrypt it the key and IV is saved in sqflite database and I get it from 'downloadedAudioModel' and then load the decrypted bytes to my audioPlayer I have this ...
SultanKingGD's user avatar
0 votes
1 answer
60 views

Passing Streams to and from a Function (flutter_libserialport data to COBS decoder)

I've been trying to get the COBS 0.2.0 decodeCOBSStream function working. I'm sending data from the PC's Bluetooth connection from a Hercules terminal program (HEX values with CR/LF disabled) to an ...
kdesroch1's user avatar
0 votes
0 answers
37 views

use ordinary spotify user account to play music in flutter

I'm currently making an app where, among other things, I want to play music in my Flutter app using Spotify. I've been working on the Spotify API for a while now. So far I've only found the option to ...
highling's user avatar
0 votes
1 answer
55 views

How to properly initialize Stream in initState()

Im trying to implement flutter package ‘Pedometer’ using this example. Im calling provider methods from initState() in my first page loaded. Problem is pedometer listener/stream not working on ...
Alex Apps's user avatar
  • 317
1 vote
1 answer
38 views

Flutter StreamBuilder cannot receive all data, or override listen event?

Dio post to server like this: dio.post<ResponseBody>( 'url', data: {...}, options: Options( responseType: ResponseType.stream, headers: { "...
xun's user avatar
  • 11
1 vote
1 answer
218 views

Trouble Verifying Purchase Status in Android App with Flutter and In-App Purchases

I am developing an app that features non-consumable in-app purchases. I've successfully implemented this on iOS, but I'm encountering issues with the Android version. I have set up an in-app product ...
seki's user avatar
  • 101
1 vote
0 answers
24 views

Call async function within for loop within streambuilder in flutter

i have a technical doubt. Can you please let me know how to await a function in for loop within streambuilder. Function depends on data from streambuilder I have streambuilder whics has stream of ...
Abhay Varma's user avatar
0 votes
0 answers
87 views

Not able to play stream using easy_onvif for ONVIF camera

I am building Flutter application that is supposed to display stream using a specified ONVIF IP address. However, for some reason my code is not working as expected; import 'package:flutter/material....
Ali Bajwa's user avatar
0 votes
1 answer
124 views

User Preferences Flutter Management

I am developing an app with Flutter in which the user preferences affect the UI, for instance the user preferred metric system affects how measure are shown by converting to kg or lbs. I was curious ...
salim.elkh's user avatar
0 votes
0 answers
109 views

calling to StreamController.addError after calling StreamController.add gives error

I'm trying to forward a stream results to StreamController, however on calling the 3rd future on the example, the StreamController throws an error with unhelpful message. This is replicable when I try ...
hace's user avatar
  • 21
0 votes
0 answers
45 views

Is it possible to stream a image with recoding video at the same time in Flutter

I am using the Flutter-vision package for object detection and the camera package. I tried recoding a video at that same time and image streaming to detect the object but the camera plugin we can use ...
Bhavika Pal's user avatar
0 votes
0 answers
31 views

Yield Stream Update Inside a Listener

Is it possible to yield Stream updates within a listener? For example, the user stream is updated here and I have other user related data that I am listening to that I wish to update the same stream ...
Josh Kahane's user avatar
0 votes
1 answer
173 views

How can I animate UI changes from a stream in Flutter?

All examples of animated widgets I can find require a stateful widget and animate a change when setState is called to change the value of a field. Is there a way to combine a StreamBuilder with an ...
Paul Wells's user avatar

15 30 50 per page
1
2 3 4 5
46