Hello,
I'm developing a small Kivy application that opens the camera and streams the live video over the network. It seems to work on both my Android phone and my Linux laptop, however I had to rely on some Linux v4l2 utility to get a clue about the supported camera resolutions. I had to hardcode the supported resolution list in order to give the user a list to choice from.
I may just invoke that external Linux utility from my Kivy app to get proper resolution list for any camera, but how can I do this in a platform-independent way? i.e. to get the list of supported resolutions on Android phones?
Andrea