Open main menu

CDOT Wiki β

Changes

User:Cgomes7/Subtitle Documentation

877 bytes added, 19:52, 7 March 2011
Subtitle Plug-in
== Subtitle Plug-in ==
DescriptionAdds a text subtitle to the video that appears at the start time and disappears at the end time. Subtitles can be translated into different languages using Google translate. The accessibility option allows for a user to disable the subtitles. To use subtitle plug-in, import:
<script src="popcorn.subtitle.js"></script>
 
To use Google translate, import:
 
<script src="http://google.com/jsapi"></script>
== Examples ==
===Simple Example===
.subtitle({
start: 5, // seconds
} )
===Simple Example with Google Translate:=== .subtitle({ start: 20, // seconds end: 45, // seconds text: 'this is another subtitle', language: "en", languagesrc: "language", accessibilitysrc: "accessibility" } )Then use combo box to select language: <div> Choose your language
<select id="language">
<option value="zh" selected="selected">Chinese</option>
<option value="es">Spanish</option>
</select>
</div>
 
===Simple Example with Accessibility:===
.subtitle({
start: 20, // seconds
end: 45, // seconds
text: 'this is another subtitle',
language: "en",
accessibilitysrc: "accessibility"
} )
 
Then use check box to turn accessibility on and off:
 
<div>
<input type="checkbox" id="accessibility" checked="checked" />All subtitles (accessibility)
</div>
== Syntax ==
== Parameters ==
'''Start:''' is the time that you want the subtitle to appear(INT)
'''End:''' is the time that you want the subtitle to disappear(INT)
'''Text:''' is the text that will appear(STRING)
'''Language:''' [optional] the language of the subtitle (STRING)
'''Languagesrc:''' [optional] the source of the language option (Combo Box)
'''Accessibilitysrc:''' [optional] the source of the accessibility option (Check Box)
== Returns ==
1
edit