Add a quality option for both iOS and Android. 画質を選択できる機能を作りたいです。 #30
tian-zhihui
started this conversation in
Ideas
Replies: 1 comment
-
iOSもAndroidも基本的にカメラの入力解像度はデバイス単位になっています。 したがって、
という選択をとることになると思います。2だと、メインのライブラリ側の修正が必要なため |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
iOSの場合、デフォルトのsessionPresetはAVCaptureSessionPreset.mediumになっているため、
高い解像度を設定しても画質が低いのままです。
この問題を解決するために、画質を設定するインタフェースを開発したいと考えています。
iOSとAndroidの仕様が異なる部分があり、OSごとに違う設定項目にするか、画質(Quality)という共通項目にして、
AndroidとiOSネイティブコードに画質及び解像度に応じて、それぞれのAPIを呼び出すかは迷っています。
ライブラリーのオーナーとして @shogo4405 shogoさんのご意見いただけますか?
In the case of iOS, the default sessionPreset is AVCaptureSessionPreset.medium, so even when setting a high resolution, the video quality remains low.
To address this issue, I would like to develop an interface to adjust the capture quality.
However, there are differences in specifications between iOS and Android. I am unsure whether to have separate settings for each OS or have a common setting for capture quality, considering both quality and resolution, and call the respective APIs in the Android and iOS native code.
As the owner of this library, could you please give me some suggestions?
Beta Was this translation helpful? Give feedback.
All reactions