forked from met4citizen/TalkingHead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteconfig.js
62 lines (54 loc) · 1.68 KB
/
siteconfig.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
// Site configuration
export const site = {
// Preset avatars
avatars: {
'Brunette': {
url: './avatars/brunette.glb',
body: 'F',
avatarMood: 'neutral',
fi: 'Brunetti'
}
},
// Google voices
googleVoices: {
"fi-F": { id: "fi-FI-Standard-A" },
"lv-M": { id: "lv-LV-Standard-A" },
"lt-M": { id: "lt-LT-Standard-A" },
"en-F": { id: "en-GB-Standard-A" },
"en-M": { id: "en-GB-Standard-D" }
},
// Preset views
views: {
'DrStrange': { url: './views/strange.jpg', type: 'image/jpg', fi: 'TohtoriOuto' },
'Matrix': { url: './views/matrix.mp4', type: 'video/mp4' }
},
// Preset poses (includes internal poses)
poses: {
'Straight': { url: "straight", fi: 'Suora' },
'Side': { url: "side", fi: 'Keno' },
'Hip': { url: "hip", fi: 'Lantio' },
'Turn': { url: "turn", fi: 'Sivu' },
'Back': { url: "back", fi: 'Taka' },
'Wide': { url: "wide", fi: 'Haara' },
'OneKnee': { url: "oneknee", fi: 'Polvi' },
'TwoKnees': { url: "kneel", fi: 'Polvet' },
'Bend': { url: "bend", fi: 'Perä' },
'Sitting': { url:"sitting", fi: 'Istuva' },
'Dance': { url: './poses/dance.fbx', fi: 'Tanssi' }
},
// Preset animations
animations: {
'Walking': { url: './animations/walking.fbx', fi: 'Kävely' }
},
// Impulse responses
impulses: {
'Room': { url: './audio/ir-room.m4a', fi: 'Huone' },
'Basement': { url: './audio/ir-basement.m4a', fi: 'Kellari' },
'Forest': { url: './audio/ir-forest.m4a', fi: 'Metsä' },
'Church': { url: './audio/ir-church.m4a', fi: 'Kirkko' }
},
// Background ambient sounds/music
music: {
'Murmur': { url: './audio/murmur.mp3', fi: 'Puheensorina'}
}
};