mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-14 17:56:01 -07:00
feat: show sampling rate and bit depth if available
This commit is contained in:
parent
bfd6f28d7a
commit
181af686c2
11 changed files with 93 additions and 3 deletions
|
|
@ -50,6 +50,12 @@ open class Child(
|
|||
@ColumnInfo("bitrate")
|
||||
@SerializedName("bitRate")
|
||||
var bitrate: Int? = null,
|
||||
@ColumnInfo("sampling_rate")
|
||||
@SerializedName("samplingRate")
|
||||
var samplingRate: Int? = null,
|
||||
@ColumnInfo("bit_depth")
|
||||
@SerializedName("bitDepth")
|
||||
var bitDepth: Int? = null,
|
||||
@ColumnInfo
|
||||
var path: String? = null,
|
||||
@ColumnInfo(name = "is_video")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue