apieceofcode
apieceofcode
I think we need an additional function for changing the video's bitrate. I created a [PR](https://github.com/flutter/plugins/pull/5099) for the `setBitrate` function. Please check if it's good to go further.
@diegothucao I'm not familiar with android programming, so it may take time to complete with native code approaching. I'm implementing another approach that processes the qualities from HLS m3u8 file...
I forked the main flutter/plugins and add the function `setBitrate` to it. If you want, you can try to add it to your `pubspec.yaml`. ``` video_player: git: url: [email protected]:apieceofcode1801/plugins.git ref:...
> Hey @apieceofcode1801 do you need help with this feature? I'm interested in bringing these things in chewie to allow the user to pick the quality they want. I implemented...
I faced the same error. I thought it will select the fallback locale in the case your locale is not listed on the supported locales. But it throws the error....
@ZeeshanJelani You can check if the locale is listed on the supported locales before setting it. For example: ``` const locale = Locale('nl', 'NL'); if (context.supportedLocales.contains(locale))) { context.setLocale(locale); } ```
hi @maheshmnj Thanks for correcting me, but I think it's about my expression had not been clear for the issue. I updated the issue. Please help to review it again...
Thanks, @maheshmnj. I confirm this issue is only happening on iOS only and still working on android.