Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/acrcloud/lib/index.d.ts
1126 views
1
type Music = {
2
external_ids: {
3
isrc: string;
4
upc: string;
5
};
6
sample_begin_time_offset_ms: string;
7
label: string;
8
play_offset_ms: number;
9
artists: {
10
name: string;
11
}[];
12
release_date: string;
13
title: string;
14
db_end_time_offset_ms: string;
15
duration_ms: number;
16
album: {
17
name: string;
18
};
19
acrid: string;
20
result_from: number;
21
db_begin_time_offset_ms: string;
22
score: number;
23
};
24
type ACRCloudResponse = {
25
status: {
26
msg: string;
27
code: number;
28
version: string;
29
};
30
metadata: {
31
played_duration: number;
32
music: Music[];
33
timestamp_utc: string;
34
};
35
result_type: number;
36
sample_end_time_offset_ms: string;
37
};
38
39