Difference between revisions of "User:Cgomes7/Subtitle Documentation"
Line 21: | Line 21: | ||
accessibilitysrc: "accessibility" | accessibilitysrc: "accessibility" | ||
} ) | } ) | ||
− | |||
}, false); | }, false); | ||
Line 30: | Line 29: | ||
== Google Translate == | == Google Translate == | ||
Choose your language | Choose your language | ||
− | + | <div> | |
+ | <select id="language"> | ||
<option value="zh" selected="selected">Chinese</option> | <option value="zh" selected="selected">Chinese</option> | ||
<option value="en">English</option> | <option value="en">English</option> | ||
Line 41: | Line 41: | ||
<option value="pl">Polish</option> | <option value="pl">Polish</option> | ||
<option value="pt">Portuguese</option> | <option value="pt">Portuguese</option> | ||
− | <option value="es">Spanish</option> | + | <option value="es">Spanish</option></select><div> |
− | |||
− | |||
with help from <a href="http://google.com/translate">Google Translate</a><br /> | with help from <a href="http://google.com/translate">Google Translate</a><br /> | ||
<input type="checkbox" id="accessibility" checked="checked" />All subtitles (accessibility) | <input type="checkbox" id="accessibility" checked="checked" />All subtitles (accessibility) | ||
</div> | </div> | ||
+ | </div> | ||
== Links == | == Links == | ||
*[https://github.com/annasob/popcorn-js/blob/0.4/plugins/subtitle/popcorn.subtitle.js Subtitle Source Code] | *[https://github.com/annasob/popcorn-js/blob/0.4/plugins/subtitle/popcorn.subtitle.js Subtitle Source Code] | ||
*[https://github.com/annasob/popcorn-js/blob/0.4/plugins/subtitle/popcorn.subtitle.html Example Source Code] | *[https://github.com/annasob/popcorn-js/blob/0.4/plugins/subtitle/popcorn.subtitle.html Example Source Code] |
Revision as of 10:00, 24 February 2011
Contents
Subtitle Plug-in
Description
<script src="popcorn.subtitle.js"></script>
Examples
.subtitle({ start: 5, // seconds end: 15, // seconds text: 'this is the a subtitle', language: "en", languagesrc: "language", accessibilitysrc: "accessibility" } )
.subtitle({ start: 20, // seconds end: 45, // seconds text: 'this is another subtitle', language: "en", languagesrc: "language", accessibilitysrc: "accessibility" } ) }, false);
Syntax
Parameters
Returns
Related
Google Translate
Choose your language
<select id="language"> <option value="zh" selected="selected">Chinese</option> <option value="en">English</option> <option value="fr">French</option> <option value="de">German</option> <option value="it">Italian</option> <option value="ja">Japanese</option> <option value="ko">Korean</option> <option value="fa">Persian</option> <option value="pl">Polish</option> <option value="pt">Portuguese</option><option value="es">Spanish</option></select>
with help from <a href="http://google.com/translate">Google Translate</a>
<input type="checkbox" id="accessibility" checked="checked" />All subtitles (accessibility)