Jonas Uekötter
Jonas Uekötter
On io platforms it's possible to do the processing in a sticky background isolate. This approach was already prototyped in https://github.com/ueman/screenrecorder/pull/21 The prototype needs to be finished. Ideally the chosen...
If this package is running on web, it would be nice to be able to offload the processing of the frames to a webworker.
mjpeg is a video format which basically consists of an array of jpegs. An encoder for should be fairly easy to write in Dart. There are a couple of implementations...
As the title says, we should create some issue templates to get useful bug reports. Some inspiration can be found here: https://github.com/cfug/diox/tree/main/.github/ISSUE_TEMPLATE
This repo should be converted to a mono repo. Other packages could be: - custom exporter which makes use of native code to export to a video file (common request)...
This processes each frame as it comes in in a background isolate. As a result, exporting the final gif takes way less time. This a first draft and probably doesn't...
## Connection with issue(s) Resolve issue #1909 This adds an empty privacy manifest. I could not find this library using any of the listed methods from https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api This is similar...
The documentation on [breadcrumbs](https://develop.sentry.dev/sdk/event-payloads/breadcrumbs/) is missing device events like the ones which are used by Android. See for example: - https://github.com/getsentry/sentry-java/blob/main/sentry-android-core/src/main/java/io/sentry/android/core/PhoneStateBreadcrumbsIntegration.java#L95-L97 - https://github.com/getsentry/sentry-java/blob/main/sentry-android-core/src/main/java/io/sentry/android/core/AppComponentsBreadcrumbsIntegration.java#L75-L96
**Describe the bug** The following code ```dart final _localNotifications = FlutterLocalNotificationsPlugin(); final androidPlugin = _localNotifications.resolvePlatformSpecificImplementation(); final allChannels = await androidPlugin?.getNotificationChannels(); ``` results in the following exception ``` PlatformException: PlatformException(getNotificationChannelsError, Unable...
### Steps to reproduce ```dart import 'dart:developer'; import 'package:flutter/material.dart'; void main() { final StringBuffer sb = StringBuffer(); for (var i = 0; i < 100; i++) { sb.write("$i\n".padLeft(100, ".")); }...