| 12345678910111213141516171819202122232425262728293031323334 |
- export const APP_ID = "wx263d1c80d204c3c0"
- export const APP_SECRET = "a29d0d08885334589698837e46d4573a"
- // WebDAV相关常量
- export class Constants {
- // WebDAV Preferences名称
- public static readonly WEBDAV_PREFERENCE_NAME: string = 'WebdavPreferences'
- // 分块加载大小
- public static readonly CHUNK_SIZE: number = 100
- // 音频文件扩展名
- public static readonly AUDIO_EXTENSIONS = ['.mp3','.mp3','.wma','.mp2','.mov','.flac',
- '.midi','.ra','.aac','.ape','.cda','.alac','.m4a','.ogg','.opus','.wv','.aiff','.amr','.aif','.dff'
- ,'.aif','.au','.eac3','.mlp','.tak','.thd','.tta','.wv','.ac3','.amr','.mka','.mpc','.ra',
- '.asf','.m2ts','.m4b','.mts','.rm','.wtv','.dts','.av3a','.dsd','.dsf','.wav']
- // 图片扩展名
- public static readonly IMAGE_EXTENSIONS = ['.jpg', '.jpeg', '.png', '.webp', '.bmp']
- // 歌词扩展名
- public static readonly LYRIC_EXTENSIONS = ['.lrc']
- // 默认值
- public static readonly UNKNOWN_NAME: string = '未命名'
- public static readonly UNKNOWN_TITLE: string = '未知标题'
- public static readonly UNKNOWN_ARTIST: string = '未知艺术家'
- public static readonly UNKNOWN_SAMPLE_RATE: string = '未知采样率'
- public static readonly UNKNOWN_TRACK_COUNT: string = '未知轨道'
- public static readonly UNKNOWN_MIME_TYPE: string = 'audio/mpeg'
- // 默认封面
- public static readonly COMMON_SONG_DEFAULT_IMAGE: ResourceStr = $r('app.media.music_red')
- }
|