• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2* Copyright (C) 2023 Huawei Device Co., Ltd.
3* Licensed under the Apache License, Version 2.0 (the "License");
4* you may not use this file except in compliance with the License.
5* You may obtain a copy of the License at
6*
7* http://www.apache.org/licenses/LICENSE-2.0
8*
9* Unless required by applicable law or agreed to in writing, software
10* distributed under the License is distributed on an "AS IS" BASIS,
11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12* See the License for the specific language governing permissions and
13* limitations under the License.
14*/
15
16import avSession from '@ohos.multimedia.avsession';
17
18export default class Constants {
19  static THEME_COLOR = '#ffffffff';
20
21  static URL_VIDEO_LIST: Array<avSession.AVMediaDescription>  = [
22    {
23      assetId: 'VIDEO-1-h264_1500k_mp4',
24      title: 'h264_1500k_mp4',
25      artist: 'Rain',
26      mediaUri: 'https://mazwai.com/videvo_files/video/free/2015-05/small_watermarked/benjamin_wu--raccoon_come_and_go_preview.webm',
27      mediaType: 'VIDEO',
28      mediaSize: 1000,
29      startPosition: 0,
30      duration: 100000,
31      mediaImage: 'https://cdn.pixabay.com/photo/2023/10/28/09/20/darling-8346954_1280.jpg',
32      albumTitle: ' 《Trxye - EP》 ',
33      appName: 'Spotify',
34    },
35    {
36      assetId: 'VIDEO-2-oceans',
37      title: 'oceans.mp4',
38      artist: 'Rain',
39      mediaUri: 'https://mazwai.com/videvo_files/video/free/2014-08/small_watermarked/clint_melander--a_day_without_rain_preview.webm',
40      mediaType: 'VIDEO',
41      mediaSize: 1000,
42      startPosition: 0,
43      duration: 100000,
44      mediaImage: 'https://cdn.pixabay.com/photo/2023/10/20/13/49/beach-8329531_1280.jpg',
45      albumTitle: ' 《Trxye - EP》 ',
46      appName: 'Spotify',
47    },
48  ];
49}
50
51