-
Notifications
You must be signed in to change notification settings - Fork 119
/
media.js
98 lines (95 loc) · 3.99 KB
/
media.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright 2021 Google LLC. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
'use strict';
/**
* Hardcoded media json objects
*/
let mediaJSON = {
'media': [{
'subtitle': 'Grumpy Bunny is grumpy',
'contentUrl': 'big_buck_bunny/prog/big_buck_bunny_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'big_buck_bunny/images/screenshot1.png',
'title': 'Big Buck Bunny',
'duration': 596
},
{
'subtitle': 'Friends Proog and Emo journey inside the folds of a seemingly infinite Machine.',
'contentUrl': 'elephants_dream/prog/elephants_dream_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'elephants_dream/images/screenshot7.png',
'title': 'Elephant Dream',
'duration': 653
},
{
'subtitle': 'Introducing Chromecast. The easiest way to enjoy online video and music on your TV. Find out more at google.com/chromecast.',
'contentUrl': 'ads/for_bigger_blazes/prog/for_bigger_blazes_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'ads/for_bigger_blazes/images/screenshot8.png',
'title': 'For Bigger Blazes',
'duration': 15
},
{
'subtitle': 'Introducing Chromecast. The easiest way to enjoy online video and music on your TV. Find out more at google.com/chromecast.',
'contentUrl': 'ads/for_bigger_escapes/prog/for_bigger_escapes_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'ads/for_bigger_escapes/images/screenshot7.png',
'title': 'For Bigger Escape',
'duration': 15
},
{
'subtitle': 'Introducing Chromecast. The easiest way to enjoy online video and music on your TV. Find out more at google.com/chromecast.',
'contentUrl': 'ads/for_bigger_fun/prog/for_bigger_fun_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'ads/for_bigger_escapes/images/screenshot7.png',
'title': 'For Bigger Fun',
'duration': 60
},
{
'subtitle': 'Introducing Chromecast. The easiest way to enjoy online video and music on your TV. Find out more at google.com/chromecast.',
'contentUrl': 'ads/for_bigger_joyrides/prog/for_bigger_joyrides_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'ads/for_bigger_joyrides/images/screenshot8.png',
'title': 'For Bigger Joyrides',
'duration': 15
},
{
'subtitle': 'Introducing Chromecast. The easiest way to enjoy online video and music on your TV. Find out more at google.com/chromecast.',
'contentUrl': 'ads/for_bigger_meltdowns/prog/for_bigger_meltdowns_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'ads/for_bigger_meltdowns/images/screenshot6.png',
'title': 'For Bigger Meltdowns',
'duration': 15
},
{
'subtitle': 'A lonely young woman, Sintel, helps and befriends a dragon, whom she calls Scales. But when he is kidnapped by an adult dragon, Sintel decides to embark on a dangerous quest to find her lost friend Scales.',
'contentUrl': 'sintel/prog/sintel_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'sintel/images/screenshot7.png',
'title': 'Sintel',
'duration': 887
},
{
'subtitle': 'In an apocalyptic future, a group of soldiers and scientists takes refuge in Amsterdam to try to stop an army of robots that threatens the planet.',
'contentUrl': 'tears_of_steel/prog/tears_of_steel_prog.mp4',
'contentType': 'video/mp4',
'thumb': 'tears_of_steel/images/screenshot7.png',
'title': 'Tears of Steel',
'duration': 743
}
]
};
export {
mediaJSON
}