move code around
This commit is contained in:
parent
ef23e4ea93
commit
17a74231aa
3 changed files with 174 additions and 174 deletions
14
js/app.js
14
js/app.js
|
@ -7,13 +7,6 @@ var globalUser;
|
||||||
var videoPath = undefined;
|
var videoPath = undefined;
|
||||||
var videoHash = undefined;
|
var videoHash = undefined;
|
||||||
|
|
||||||
function adjustSize() {
|
|
||||||
var baseHeight = $(window).height() - 24 - 16;
|
|
||||||
$('#txt').height(baseHeight);
|
|
||||||
var baseWidth = $(window).width() - 400 - 64;
|
|
||||||
$('#txt').width(baseWidth);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ox.load({
|
Ox.load({
|
||||||
UI: {theme: 'oxlight'},
|
UI: {theme: 'oxlight'},
|
||||||
}, function() {
|
}, function() {
|
||||||
|
@ -249,6 +242,13 @@ Ox.load({
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function adjustSize() {
|
||||||
|
var baseHeight = $(window).height() - 24 - 16;
|
||||||
|
$('#txt').height(baseHeight);
|
||||||
|
var baseWidth = $(window).width() - 400 - 64;
|
||||||
|
$('#txt').width(baseWidth);
|
||||||
|
}
|
||||||
|
|
||||||
function loadTxt() {
|
function loadTxt() {
|
||||||
var txt = globalUser.get_txt(videoHash);
|
var txt = globalUser.get_txt(videoHash);
|
||||||
//console.log('loadTxt', videoHash, txt.length);
|
//console.log('loadTxt', videoHash, txt.length);
|
||||||
|
|
|
@ -26,7 +26,6 @@ TextArea.prototype.init = function() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//returns tc in ms if cursor is at a time-code, else returns false
|
//returns tc in ms if cursor is at a time-code, else returns false
|
||||||
TextArea.prototype.isTc = function() {
|
TextArea.prototype.isTc = function() {
|
||||||
var that = this;
|
var that = this;
|
||||||
|
@ -75,7 +74,7 @@ TextArea.prototype.getWord = function(pos, val) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
i--;
|
i--;
|
||||||
c = val.substring(i,i+1);
|
c = val.substring(i, i+1);
|
||||||
}
|
}
|
||||||
var firstLetter = i+1;
|
var firstLetter = i+1;
|
||||||
var d;
|
var d;
|
||||||
|
@ -84,18 +83,13 @@ TextArea.prototype.getWord = function(pos, val) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
j++;
|
j++;
|
||||||
d = val.substring(j,j+1);
|
d = val.substring(j, j+1);
|
||||||
}
|
}
|
||||||
var lastLetter = j;
|
var lastLetter = j;
|
||||||
var word = val.substring(firstLetter, lastLetter);
|
var word = val.substring(firstLetter, lastLetter);
|
||||||
return word;
|
return word;
|
||||||
}
|
}
|
||||||
|
|
||||||
function cleanNewlines(str) {
|
|
||||||
var s = str.replace(/\r\n|\r|\n/g, '\n');
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
//takes an srt as param, loads into txtarea
|
//takes an srt as param, loads into txtarea
|
||||||
TextArea.prototype.fromSrt = function(txt) {
|
TextArea.prototype.fromSrt = function(txt) {
|
||||||
var that = this;
|
var that = this;
|
||||||
|
@ -131,45 +125,6 @@ TextArea.prototype.fromSrt = function(txt) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatEnc(data) {
|
|
||||||
var r = '', n = 1;
|
|
||||||
data.forEach(function(item) {
|
|
||||||
r += n + ' ' + formatFrames(item['in']) + ' ' + formatFrames(item.out) + ' ' + item.text;
|
|
||||||
r += '\n\n';
|
|
||||||
n++;
|
|
||||||
});
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
function spansToSrt(arr, fmt, start_no) {
|
|
||||||
if (typeof start_no == 'undefined') {
|
|
||||||
start_no = 1;
|
|
||||||
}
|
|
||||||
var srt = [];
|
|
||||||
arr.forEach(function(s) {
|
|
||||||
if (s.text.trim() == '') {
|
|
||||||
} else {
|
|
||||||
var text = s.text.trim();
|
|
||||||
linebreaksRegex = new RegExp('\n+', "g")
|
|
||||||
text = text.replace(linebreaksRegex, "\n");
|
|
||||||
if (!s.tcOutMs) {
|
|
||||||
s.tcOutMs = Video.player.duration;
|
|
||||||
}
|
|
||||||
srt.push({
|
|
||||||
'in': s.tcInMs,
|
|
||||||
out: s.tcOutMs,
|
|
||||||
text: text
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (fmt == 'srt') {
|
|
||||||
return Ox.formatSRT(srt);
|
|
||||||
} else if (fmt == 'enc') {
|
|
||||||
return formatEnc(srt);
|
|
||||||
}
|
|
||||||
return srt;
|
|
||||||
}
|
|
||||||
|
|
||||||
//returns textarea formatted to .srt
|
//returns textarea formatted to .srt
|
||||||
TextArea.prototype.toSrt = function(fmt) {
|
TextArea.prototype.toSrt = function(fmt) {
|
||||||
if (!fmt) var fmt = 'srt';
|
if (!fmt) var fmt = 'srt';
|
||||||
|
@ -317,29 +272,3 @@ User.prototype.get_txt = function(filename) {
|
||||||
var that = this;
|
var that = this;
|
||||||
return localStorage['txt_' + filename];
|
return localStorage['txt_' + filename];
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadCuts(url, id) {
|
|
||||||
function pandora_api(action, data, callback) {
|
|
||||||
$.ajax({
|
|
||||||
type: "POST",
|
|
||||||
url: url,
|
|
||||||
data: {action: action, data: JSON.stringify(data)},
|
|
||||||
success: callback,
|
|
||||||
dataType: 'json'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
pandora_api('get', {id: id, keys: ['cuts']}, function(result) {
|
|
||||||
var txt = '';
|
|
||||||
result.data.cuts.forEach(function(cut) {
|
|
||||||
textArea.insertTc(Ox.formatDuration(cut));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function loadSrt(file) {
|
|
||||||
var reader = new FileReader();
|
|
||||||
reader.onload = function(data) {
|
|
||||||
textArea.fromSrt(data.target.result);
|
|
||||||
};
|
|
||||||
reader.readAsText(file);
|
|
||||||
}
|
|
||||||
|
|
|
@ -25,3 +25,74 @@ function getFileNameSansExt(filename) {
|
||||||
}
|
}
|
||||||
return filenameSansExt;
|
return filenameSansExt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function cleanNewlines(str) {
|
||||||
|
var s = str.replace(/\r\n|\r|\n/g, '\n');
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatEnc(data) {
|
||||||
|
var r = '', n = 1;
|
||||||
|
data.forEach(function(item) {
|
||||||
|
r += n + ' ' + formatFrames(item['in']) + ' ' + formatFrames(item.out) + ' ' + item.text;
|
||||||
|
r += '\n\n';
|
||||||
|
n++;
|
||||||
|
});
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
function spansToSrt(arr, fmt, start_no) {
|
||||||
|
if (typeof start_no == 'undefined') {
|
||||||
|
start_no = 1;
|
||||||
|
}
|
||||||
|
var srt = [];
|
||||||
|
arr.forEach(function(s) {
|
||||||
|
if (s.text.trim() == '') {
|
||||||
|
} else {
|
||||||
|
var text = s.text.trim();
|
||||||
|
linebreaksRegex = new RegExp('\n+', "g")
|
||||||
|
text = text.replace(linebreaksRegex, "\n");
|
||||||
|
if (!s.tcOutMs) {
|
||||||
|
s.tcOutMs = Video.player.duration;
|
||||||
|
}
|
||||||
|
srt.push({
|
||||||
|
'in': s.tcInMs,
|
||||||
|
out: s.tcOutMs,
|
||||||
|
text: text
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (fmt == 'srt') {
|
||||||
|
return Ox.formatSRT(srt);
|
||||||
|
} else if (fmt == 'enc') {
|
||||||
|
return formatEnc(srt);
|
||||||
|
}
|
||||||
|
return srt;
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadCuts(url, id) {
|
||||||
|
function pandora_api(action, data, callback) {
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: url,
|
||||||
|
data: {action: action, data: JSON.stringify(data)},
|
||||||
|
success: callback,
|
||||||
|
dataType: 'json'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
pandora_api('get', {id: id, keys: ['cuts']}, function(result) {
|
||||||
|
var txt = '';
|
||||||
|
result.data.cuts.forEach(function(cut) {
|
||||||
|
textArea.insertTc(Ox.formatDuration(cut));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadSrt(file) {
|
||||||
|
var reader = new FileReader();
|
||||||
|
reader.onload = function(data) {
|
||||||
|
textArea.fromSrt(data.target.result);
|
||||||
|
};
|
||||||
|
reader.readAsText(file);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue