-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.js
80 lines (80 loc) · 3 KB
/
config.example.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
window.movieLibraryConfig = {
enableGridNavWrap: false,
enableMouseAtStart: false,
movies: [
{
title: 'Aladdin',
sortStr: 'Aladdin',
year: '1992',
plot: 'Princess Jasmine grows tired of being forced to remain in the palace, so she sneaks out into the marketplace, in disguise, where she meets street-urchin Aladdin. The couple falls in love, although Jasmine may only marry a prince. After being thrown in jail, Aladdin becomes embroiled in a plot to find a mysterious lamp, with which the evil Jafar hopes to rule the land.',
tagline: 'Wish granted!',
rating: 'Rated G',
genres: [
'Animation',
'Family',
'Adventure',
'Fantasy',
'Romance'
],
directorNames: [
'Ron Clements',
'John Musker'
],
actorNames: [
'Scott Weinger',
'Robin Williams',
'Linda Larkin',
'Jonathan Freeman',
'Gilbert Gottfried',
'Frank Welker',
'Douglas Seale',
'Brad Kane',
'Lea Salonga',
'Bruce Adler'
],
hasSubtitles: true,
runtimeMinutes: 90,
thumbURL: 'file:///M:\\Movies\\Disney\\Aladdin (1992)\\Aladdin (1992)-thumb.jpg',
logoURL: 'file:///M:\\Movies\\Disney\\Aladdin (1992)\\Aladdin (1992)-clearlogo.png',
keyartURL: 'file:///M:\\Movies\\Disney\\Aladdin (1992)\\Aladdin (1992)-keyart.jpg',
videoFilepath: 'M:\\Movies\\Disney\\Aladdin (1992)\\Aladdin (1992).mkv'
},
{
title: 'Alice in Wonderland',
sortStr: 'Alice in Wonderland',
year: '1951',
plot: 'On a golden afternoon, young Alice follows a White Rabbit, who disappears down a nearby rabbit hole. Quickly following him, she tumbles into the burrow - and enters the merry, topsy-turvy world of Wonderland! Memorable songs and whimsical escapades highlight Alice\'s journey, which culminates in a madcap encounter with the Queen of Hearts - and her army of playing cards!',
tagline: 'A world of wonders in one great picture!',
rating: 'Rated G',
genres: [
'Animation',
'Family',
'Fantasy',
'Adventure'
],
directorNames: [
'Hamilton Luske',
'Wilfred Jackson',
'Clyde Geronimi'
],
actorNames: [
'Kathryn Beaumont',
'Ed Wynn',
'Richard Haydn',
'Sterling Holloway',
'Jerry Colonna',
'Verna Felton',
'J. Pat O\'Malley',
'Bill Thompson',
'Heather Angel',
'Joseph Kearns'
],
hasSubtitles: true,
runtimeMinutes: 75,
thumbURL: 'file:///M:\\Movies\\Disney\\Alice in Wonderland (1951)\\Alice in Wonderland (1951)-thumb.jpg',
logoURL: 'file:///M:\\Movies\\Disney\\Alice in Wonderland (1951)\\Alice in Wonderland (1951)-clearlogo.png',
keyartURL: 'file:///M:\\Movies\\Disney\\Alice in Wonderland (1951)\\Alice in Wonderland (1951)-keyart.jpg',
videoFilepath: 'M:\\Movies\\Disney\\Alice in Wonderland (1951)\\Alice in Wonderland (1951).mkv'
},
]
}