In the Configuration object videoBitrateInMbps is an int. It would be really helpful to be able to pass in a more fine grained bitrate. Two possible solutions:
Make videoBitrateInMbps a double.
Keep bitrate as int but instead of mbps use bps. I would personally prefer this because on iOS the bitrate is passed around as a int bps. You can then have parity between the platforms and specify a as fine grained a bitrate as you want.
In the
Configuration
objectvideoBitrateInMbps
is anint
. It would be really helpful to be able to pass in a more fine grained bitrate. Two possible solutions:int
but instead of mbps use bps. I would personally prefer this because on iOS the bitrate is passed around as aint
bps. You can then have parity between the platforms and specify a as fine grained a bitrate as you want.Thank you!