-
Notifications
You must be signed in to change notification settings - Fork 0
/
SM13.html
109 lines (105 loc) · 5.69 KB
/
SM13.html
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
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><title>Providing sign language interpretation through synchronized video
streams in SMIL 1.0</title><link rel="stylesheet" type="text/css" href="../../css/sources.css" class="remove"></link></head><body><h1>Providing sign language interpretation through synchronized video
streams in SMIL 1.0</h1><section class="meta"><p class="id">ID: SM13</p><p class="technology">Technology: smil</p><p class="type">Type: Technique</p></section><section id="applicability"><h2>When to Use</h2>
<p> Applies whenever SMIL 1.0 player is available </p>
</section><section id="description"><h2>Description</h2>
<p>The objective of this technique is to provide a way for people who are deaf
or otherwise have trouble hearing the dialogue in audio visual material to be
able to view the material. With this technique all of the dialogue and
important sounds are available in a sign-language interpretation video that
is displayed in a caption area. </p>
<p> With SMIL 1.0, separate regions can be defined for the two videos. The two
video playbacks are synchronized, with the content video displayed in one
region of the screen, while the corresponding sign-language interpretation
video is displayed in another region. </p>
</section><section id="examples"><h2>Examples</h2>
<section class="example">
<h3>SMIL 1.0 sign-language interpretation sample for QuickTime
player </h3>
<pre xml:space="preserve">
<?xml version="1.0" encoding="UTF-8"?>
<smil xmlns:qt="http://www.apple.com/quicktime/resources/smilextensions"
xmlns="https://www.w3.org/TR/REC-smil" qt:time-slider="true">
<head>
<layout>
<root-layout width="320" height="300" background-color="black"/>
<region top="0" width="320" height="240" left="0" background-color="black"
id="videoregion"/>
<region top="240" width="320" height="60" left="0" background-color="black"
id="signingregion"/>
</layout>
</head>
<body>
<par>
<video dur="0:01:20.00" region="videoregion" src="salesdemo.mov"
alt="Sales Demo"/>
<video dur="0:01:20.00" region="signingregion" system-captions="on"
src="salesdemo_si.mov" alt="Sales Demo Sign Language Interpretation"/>
</par>
</body>
</smil></pre>
</section>
<section class="example">
<h3>SMIL 1.0 sign-language sample for RealMedia player:</h3>
<pre xml:space="preserve">
<?xml version="1.0" encoding="UTF-8"?>
<smil xmlns="https://www.w3.org/TR/REC-smil">
<head>
<layout>
<root-layout background-color="black" height="310" width="330"/>
<region top="0" width="320" height="240" left="0" background-color="black"
id="videoregion"/>
<region top="240" width="320" height="60" left="0" background-color="black"
id="signingregion"/>
</layout>
</head>
<body>
<par>
<video dur="0:01:20.00" region="videoregion" src="salesdemo.mov"
alt="Sales Demo"/>
<video dur="0:01:20.00" region="signingregion" system-captions="on"
src="salesdemo_si.mov" alt="Sales Demo Sign Language Interpretation"/>
</par>
</body>
</smil></pre>
<p> The example shows a <par> segment
containing two <video> tags. The
system-captions attribute indicates that the sign language video
should be displayed when the user's player setting for captions
indicates the preference for captions to be displayed. The
<layout> section defines the regions
used for the main video and the sign language interpretation video.
</p>
</section>
</section><section id="tests"><h2>Tests</h2>
<section class="procedure"><h3>Procedure</h3>
<ol>
<li> Enable control in content or player to turn on sign language
interpretation (unless it is always shown) </li>
<li> Play file with sign-language interpretation </li>
<li> Check whether sign language interpretation is displayed </li>
</ol>
</section>
<section class="results"><h3>Expected Results</h3>
<ul>
<li> #3 is true </li>
</ul>
</section>
</section><section id="related"><h2>Related Techniques</h2><ul>
<li><a href="../smil/SM14">SM14</a></li>
</ul></section><section id="resources"><h2>Resources</h2>
<ul>
<li>
<a href="https://www.w3.org/TR/REC-smil/">Synchronized Multimedia Integration Language (SMIL) 1.0</a>
</li>
<li>
<a href="https://www.w3.org/TR/SMIL/">Synchronized Multimedia Integration Language (SMIL 2.0)</a>
</li>
<li>
<a href="https://www.w3.org/TR/SMIL-access/">Accessibility Features of SMIL</a>
</li>
<li>
<a href="http://ncam.wgbh.org/invent_build/web_multimedia/accessible-digital-media-guide/guideline-h-multimedia#techH12">NCAM Rich Media Accessibility, Accessible SMIL Templates</a>
</li>
</ul>
</section></body></html>