Skip to content
This repository has been archived by the owner on Jun 29, 2018. It is now read-only.

Added the possibility to specify the id of the document element that the subtitles are appended to. #383

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions modules/parser/popcorn.parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,26 @@
parseFn,
parser = {};

parseFn = function( filename, callback ) {
parseFn = function( filename, callback, options ) {

if ( !filename ) {
return this;
}

// fixes parameters for overloaded function call
if ( typeof callback !== "function" && !options ) {
options = callback;
callback = null;
}

var that = this;

Popcorn.xhr({
url: filename,
dataType: type,
success: function( data ) {

var tracksObject = definition( data ),
var tracksObject = definition( data, options ),
tracksData,
tracksDataLen,
tracksDef,
Expand Down Expand Up @@ -100,4 +106,4 @@

return parser;
};
})( Popcorn );
})( Popcorn );
7 changes: 6 additions & 1 deletion parsers/parserSRT/popcorn.parserSRT.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
SSA tags with {\i1} would open and close italicize {\i0}, but are stripped
Multiple {\pos(142,120)\b1}SSA tags are stripped
*/
Popcorn.parser( "parseSRT", function( data ) {
Popcorn.parser( "parseSRT", function( data, options ) {

// declare needed variables
var retObj = {
Expand Down Expand Up @@ -84,6 +84,11 @@
// Later modified by kev: http://kevin.deldycke.com/2007/03/ultimate-regular-expression-for-html-tag-parsing-with-php/
sub.text = sub.text.replace( /&lt;(\/?(font|b|u|i|s))((\s+(\w|\w[\w\-]*\w)(\s*=\s*(?:\".*?\"|'.*?'|[^'\">\s]+))?)+\s*|\s*)(\/?)&gt;/gi, "<$1$3$7>" );
sub.text = sub.text.replace( /\\N/gi, "<br />" );

if ( options && options[ "target" ] ) {
sub.target = options[ "target" ];
}

subs.push( createTrack( "subtitle", sub ) );
}

Expand Down