-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# AudioCommonMetadataReceivedEvent | ||
|
||
An object representing the metadata received for a track. | ||
|
||
| Param | Type | Description | | ||
| -------- | -------- | --------------------------------------------------- | | ||
| title | `string` | The track title. Might be undefined | | ||
| artist | `string` | The track artist. Might be undefined | | ||
| albumTitle | `string` | The track album. Might be undefined | | ||
| subtitle | `string` | The track subtitle. Might be undefined | | ||
| description | `string` | The track description. Might be undefined | | ||
| artworkUri | `string` | The track artwork uri. Might be undefined | | ||
| trackNumber | `string` | The track number. Might be undefined | | ||
| composer | `string` | The track composer. Might be undefined | | ||
| conductor | `string` | The track conductor. Might be undefined | | ||
| genre | `string` | The track genre. Might be undefined | | ||
| compilation | `string` | The track compilation. Might be undefined | | ||
| station | `string` | The track station. Might be undefined | | ||
| mediaType | `string` | The track media type. Might be undefined | | ||
| creationDate | `string` | The track creation date. Might be undefined | | ||
| creationYear | `string` | The track creation year. Might be undefined | | ||
| raw | `RawEntry[]` | The raw metadata that was used to populate. May contain other non common keys. Might be undefined | | ||
|
||
# RawEntry | ||
|
||
An object representing a raw metadata entry. | ||
|
||
| Param | Type | Description | | ||
| -------- | -------- | --------------------------------------------------- | | ||
| commonKey | `string` | The common key. Might be undefined | | ||
| keySpace | `string` | The key space. Might be undefined | | ||
| time | `number` | The time. Might be undefined | | ||
| value | `unknown` | The value. Might be undefined | | ||
| key | `string` | The key. Might be undefined | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters