We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could you please add the ability to set MPV parameters in the Video player?
This feature could be implemented similarly to the approach described here: media-kit/media-kit#14 (comment) API Reference: https://pub.dev/documentation/media_kit/latest/media_kit/NativePlayer/setProperty.html
final player = Player(); if (player.platform is NativePlayer) { await (player.platform as dynamic).setProperty('prop-name', 'prop-value'); }
The text was updated successfully, but these errors were encountered:
It would also be nice if the Video player had the ability to play some Media directly, without creating a playlist, like this:
Video
Media
Video().play(VideoMedia("source"))
Sorry, something went wrong.
No branches or pull requests
Could you please add the ability to set MPV parameters in the Video player?
This feature could be implemented similarly to the approach described here: media-kit/media-kit#14 (comment)
API Reference: https://pub.dev/documentation/media_kit/latest/media_kit/NativePlayer/setProperty.html
The text was updated successfully, but these errors were encountered: