-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d03157
commit e403fea
Showing
4 changed files
with
130 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<tt xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2006/10/ttaf1" xmlns:tt="http://www.w3.org/2006/10/ttaf1" xmlns:tts="http://www.w3.org/2006/10/ttaf1#styling" xmlns:ttp="http://www.w3.org/2006/10/ttaf1#parameter" xmlns:ttm="http://www.w3.org/2006/10/ttaf1#metadata" xml:lang="fr-FR" ttp:timeBase="smpte" ttp:frameRate="25" ttp:frameRateMultiplier="1:1" ttp:markerMode="discontinuous"> | ||
<head> | ||
<metadata> | ||
<ttm:title>Title test</ttm:title> | ||
<ttm:copyright>Copyright test</ttm:copyright> | ||
</metadata> | ||
<styling> | ||
<style xml:id="style_0" tts:fontFamily="sansSerif" tts:color="white" tts:fontStyle="normal" tts:textAlign="center" tts:origin="0% 90%" tts:extent="100% 10%"/> | ||
</styling> | ||
<layout> | ||
<region xml:id="region_0" tt:style="style_0" tt:color="blue"/> | ||
</layout> | ||
</head> | ||
<body> | ||
<div> | ||
<p xml:id="sub_1" begin="00:00:00.000" end="00:00:01.000" region="region_0" style="style_0" color="red"> | ||
<span style="style_0" color="black">First line<br/>Second line</span> | ||
</p> | ||
<p xml:id="sub_2" begin="00:00:01.000" end="00:00:02.000" region="region_0" style="style_0" color="red"> | ||
<span style="style_0" color="black">Third line<br></br>Fourth line</span> | ||
</p> | ||
<p xml:id="sub_3" begin="00:00:02.000" end="00:00:03.000" region="region_0"> | ||
Fifth line | ||
<br/> | ||
Sixth <span style="style_0" color="green">middle</span> line | ||
</p> | ||
<p xml:id="sub_4" begin="00:00:03.000" end="00:00:04.000" region="region_0"> | ||
Seventh line | ||
<br></br> | ||
Eighth <span style="style_0" color="green">middle</span> line | ||
</p> | ||
</div> | ||
</body> | ||
</tt> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<tt xmlns="http://www.w3.org/ns/ttml" xml:lang="fr" xmlns:ttm="http://www.w3.org/ns/ttml#metadata" xmlns:tts="http://www.w3.org/ns/ttml#styling"> | ||
<head> | ||
<metadata> | ||
<ttm:copyright>Copyright test</ttm:copyright> | ||
<ttm:title>Title test</ttm:title> | ||
</metadata> | ||
<styling> | ||
<style xml:id="style_0" tts:color="white" tts:extent="100% 10%" tts:fontFamily="sansSerif" tts:fontStyle="normal" tts:origin="0% 90%" tts:textAlign="center"></style> | ||
</styling> | ||
<layout> | ||
<region xml:id="region_0" style="style_0" tts:color="blue"></region> | ||
</layout> | ||
</head> | ||
<body> | ||
<div> | ||
<p begin="00:00:00.000" end="00:00:01.000" region="region_0" style="style_0" tts:color="red"> | ||
<span style="style_0" tts:color="black">First line</span> | ||
<br></br> | ||
<span style="style_0" tts:color="black">Second line</span> | ||
</p> | ||
<p begin="00:00:01.000" end="00:00:02.000" region="region_0" style="style_0" tts:color="red"> | ||
<span style="style_0" tts:color="black">Third line</span> | ||
<br></br> | ||
<span style="style_0" tts:color="black">Fourth line</span> | ||
</p> | ||
<p begin="00:00:02.000" end="00:00:03.000" region="region_0"> | ||
<span>Fifth line</span> | ||
<br></br> | ||
<span>Sixth </span> | ||
<span style="style_0" tts:color="green">middle </span> | ||
<span>line</span> | ||
</p> | ||
<p begin="00:00:03.000" end="00:00:04.000" region="region_0"> | ||
<span>Seventh line</span> | ||
<br></br> | ||
<span>Eighth </span> | ||
<span style="style_0" tts:color="green">middle </span> | ||
<span>line</span> | ||
</p> | ||
</div> | ||
</body> | ||
</tt> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters