How To Use Android Camera2 Api To Record 60 Fps Video With Fixed Exposure Time
I want to implement a app to record 60 fps with fixed exposure time. As device I have the Google Pixel. Since its native camera app can do 60 fps and it has hardware level LEVEL_3,
Solution 1:
60fps recording on Pixel can be done in normal capture settings - take a look at CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES, and just create a normal capture session. You will have to be careful and not set up too high of a resolution as your outputs, since 60fps can't be done at above 1080p, if I remember correctly.
You can confirm that via the StreamConfigurationMap for the sizes/formats that you're aiming to use.
Post a Comment for "How To Use Android Camera2 Api To Record 60 Fps Video With Fixed Exposure Time"