jakky1

Results 21 comments of jakky1

As you said, it seems that MethodChannel.setMethodCallHandler() cannot work with isolate. [related issue](https://github.com/flutter/flutter/issues/119207) However, currently there is no way to send message from native to platform thread when you create...

More information, [_background_isolate_binary_messenger_io.dart](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/services/_background_isolate_binary_messenger_io.dart) in official flutter codebase has the following code: ``` void setMessageHandler(String channel, MessageHandler? handler) { throw UnsupportedError( 'Background isolates do not support setMessageHandler(). Messages from the host...

I have noticed this problem before. However, I have no idea how to fix it :( In Media Foundation API, it always force playing after seeking, even if the video...

I prefer not to do it in plugin side because I think API should do only the essential task as possible. And it may be not a good idea if...

Oops... I used to think that video scrubbing was simply a series of fast seeks, but I didn't know that the key point was to display the current video frame...

I have no multiple monitors to reproduce this issue, so I have no way to debug & fix it ... :(

By the way, when you google "windows video player multiple monitors", there are some related discussions tell you how to use 3rd-party apps to do it. I think, generally speaking,...

Maybe you can try the old version `video_player_win: 1.1.6` However, the old version doesn't support GPU hardware-accelaration.

I test on 3.10 now, and it works well for me. Could you tell me which video file / url you are playing?

To clarify, some (and I think almost) video files are playable with this package. Only some video files play failed. Unfortunately, the video file you provided play failed with this...