maRci002

Results 79 comments of maRci002

@SeriousMonk thank you, I updated the code to `XFile` which makes process easier. ```dart import 'dart:async'; // ignore: avoid_web_libraries_in_flutter import 'dart:html' as html; import 'dart:math' as math; import 'dart:typed_data'; import...

[Fireship](https://www.youtube.com/@Fireship) has a great video on this topic: https://www.youtube.com/watch?v=-OTc0Ki7Sv0 Here is the source code: https://github.com/fireship-io/react-wasm-gif-maker/blob/main/src/App.jsx

> I guess we could just merge https://pub.dev/packages/ffmpeg_wasm with this package to support web? I was the one who updated the [ffmpeg_wasm](https://pub.dev/packages/ffmpeg_wasm) Dart library (redleafsofts/flutter_ffmpeg_wasm#1). Initially, I considered writing some...

Here is a workaround, in my case I can use it since I'm caching some `TextPainter.layout` results which can be easily wiped. It is strongly discouraged to use this in...

Check out #135 PR. Clone the repo (_unfortunately `dependency_overrides` doesn't work since the PR contains local path_) ``` git clone -b feat-web_implementation https://github.com/maRci002/video_thumbnail.git ``` Add it to your `pubspec.yaml` ```yaml...

> I'm getting error when i run git clone code: https://stackoverflow.com/a/51820472/4609658 use https link ( _instead of `[email protected]`_ ): `git clone --mirror https://github.com/maRci002/video_thumbnail.git`

Okay I think I got it. Recently I made a commit to avoid local path and replace with git path and your output window using different SSH agent than the...

I think example is updated, you can also check out readme. https://github.com/justsoft/video_thumbnail/blob/47435c7933c0b0b148acb9d79100e2e4aa369fae/video_thumbnail/README.md ```dart XFile thumbnailFile = await VideoThumbnail.thumbnailFile( ... ); final image = kIsWeb ? Image.network(thumbnailFile.path) : Image.file(File(thumbnailFile.path)); final uint8list...

You can use localy picked files too since it lives on the filesystem and in that case the underlying [VideoElement](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video) is smart enough to not create network calls with range...

Unfortunately, I don't have a timeline for the merge since I've just made the PR. It appears that the author of this package is no longer active.