-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard-control.smil
48 lines (39 loc) · 1.67 KB
/
keyboard-control.smil
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
<smil>
<head>
<triggers>
<trigger id="trigger0" condition="or">
<condition origin="keyboard" data="0" action="keyUp" />
</trigger>
<trigger id="trigger1" condition="or">
<condition origin="keyboard" data="1" action="keyUp" />
</trigger>
</triggers>
<layout>
<!-- define the screen resolution -->
<root-layout width="1920" height="1080" backgroundColor="#ff0000" />
<!-- define the screen layout, in this case single fullscreen zone -->
<region regionName="main" left="0" top="0" width="1920" height="1080" z-index="1" backgroundColor="#00ff00">
<region regionName="trigger-sub-region1" left="0" top="0" width="100%" height="100%" />
</region>
</layout>
</head>
<body>
<seq repeatCount="indefinite">
<par repeatCount="indefinite">
<seq>
<video src="https://lginstore-smil-test.s3.amazonaws.com/media/fhd-bars-silent-LOOP-5sec.mp4" region="main" soundLevel="10%"></video>
</seq>
</par>
<par>
<seq begin="trigger1">
<video src="https://lginstore-smil-test.s3.amazonaws.com/media/fhd-bars-silent-01-5sec.mp4" region="main" soundLevel="10%"></video>
</seq>
</par>
<par>
<seq begin="trigger0">
<video src="https://lginstore-smil-test.s3.amazonaws.com/media/fhd-bars-silent-02-5sec.mp4" region="main" soundLevel="10%"></video>
</seq>
</par>
</seq>
</body>
</smil>