mirror of
https://github.com/NoCrypt/migu.git
synced 2026-04-20 08:02:12 +00:00
fix: #356
This commit is contained in:
parent
9bdae8777f
commit
33c4d4563a
2 changed files with 6 additions and 6 deletions
|
|
@ -183,11 +183,11 @@ export default class Subtitles {
|
|||
}
|
||||
|
||||
static convertSubText (text, type) {
|
||||
const srtRx = /(?:\d+\n)?(\S{9,12})\s?-->\s?(\S{9,12})(.*)\n([\s\S]*)$/i
|
||||
const srtRx = /(?:\d+\r?\n)?(\S{9,12})\s?-->\s?(\S{9,12})(.*)\r?\n([\s\S]*)$/i
|
||||
const srt = text => {
|
||||
const subtitles = []
|
||||
const replaced = text.replace(/\r/g, '')
|
||||
for (const split of replaced.split('\n\n')) {
|
||||
for (const split of replaced.split(/\r?\n\r?\n/)) {
|
||||
const match = split.match(srtRx)
|
||||
if (match) {
|
||||
// timestamps
|
||||
|
|
@ -220,7 +220,7 @@ export default class Subtitles {
|
|||
}
|
||||
})
|
||||
}
|
||||
subtitles.push('Dialogue: 0,' + match[1].replace(',', '.') + ',' + match[2].replace(',', '.') + ',Default,,0,0,0,,' + match[4].replace(/\n/g, '\\N'))
|
||||
subtitles.push('Dialogue: 0,' + match[1].replace(',', '.') + ',' + match[2].replace(',', '.') + ',Default,,0,0,0,,' + match[4].replace(/\r?\n/g, '\\N'))
|
||||
}
|
||||
}
|
||||
return subtitles
|
||||
|
|
@ -231,7 +231,7 @@ export default class Subtitles {
|
|||
const replaced = text.replace(/\r/g, '')
|
||||
let frames = 1000 / Number(replaced.match(subRx)[3])
|
||||
if (!frames || isNaN(frames)) frames = 41.708
|
||||
for (const split of replaced.split('\n')) {
|
||||
for (const split of replaced.split('\r?\n')) {
|
||||
const match = split.match(subRx)
|
||||
if (match) subtitles.push('Dialogue: 0,' + toTS((match[1] * frames) / 1000, 1) + ',' + toTS((match[2] * frames) / 1000, 1) + ',Default,,0,0,0,,' + match[3].replace('|', '\\N'))
|
||||
}
|
||||
|
|
@ -264,7 +264,7 @@ export default class Subtitles {
|
|||
})
|
||||
}
|
||||
// replace all html special tags with normal ones
|
||||
subtitle.text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/ /g, '\\h').replace(/\n/g, '\\N')
|
||||
subtitle.text = subtitle.text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/ /g, '\\h').replace(/\r?\n/g, '\\N')
|
||||
}
|
||||
return {
|
||||
Start: subtitle.time,
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
{#if ('queryLocalFonts' in self)}
|
||||
<h4 class='mb-10 font-weight-bold'>Subtitle Settings</h4>
|
||||
<SettingCard title='Default Subtitle Font' description={"What font to use when the current loaded video doesn't provide or specify one.\nThis uses fonts installed on your OS."}>
|
||||
<FontSelect class='form-control bg-dark w-300 mw-full' on:change={changeFont} value={settings.font?.value} />
|
||||
<FontSelect class='form-control bg-dark w-300 mw-full' on:change={changeFont} value={settings.font?.name} />
|
||||
</SettingCard>
|
||||
<SettingCard title='Find Missing Subtitle Fonts' description="Automatically finds and loads fonts that are missing from a video's subtitles.">
|
||||
<div class='custom-switch'>
|
||||
|
|
|
|||
Loading…
Reference in a new issue