Resolution enum Sensor Data Source
============================================================================ Estimated Video Data Rates by Resolution (used for size estimation) Values are approximate and based on platform-specific analysis:
- All sizes are expressed in bytes per second
- MB/min approximations included for clarity
Resolution | Approx. Size (Bytes/sec) | Approx. Size (MB/min) |
---|---|---|
SD_480p | 210,000 | ~12 MB/min |
HD_720p (Apple) | 1,048,576 | ~60 MB/min - reported from iOS Camera App settings |
HD_720p (Android) | 629,760 | ~37 MB/min - computed by analyzing our existing video logs and choosing the biggest one + 10% |
HD_720p (Other) | 1,048,576 | ~60 MB/min - just use the biggest value, Apple |
FullHD_1080p | 3,774,874 | ~130 MB/min |
============================================================================ |
Note: 1 MB = 1,048,576 bytes (binary MB), used for consistency across platforms. Display resolutions
Values
- unknown → const Resolution
-
No resolution.
- sd480p → const Resolution
-
640 * 480 resolution.
- hd720p → const Resolution
-
1280 * 720 resolution.
- fullHD1080p → const Resolution
-
1920 * 1080 resolution.
- wqhd1440p → const Resolution
-
2560 * 1440 resolution.
- uhd4K2160p → const Resolution
-
3840 * 2160 resolution.
- uhd8K4320p → const Resolution
-
7680 * 4320 resolution.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
Resolution> - A constant List of the values in this enum, in order of their declaration.