filename pattern customization

- added metadata for rutube and vimeo.
- added a picker for preferred filename pattern.
- fixed content disposition header.
- mute and audio dub tags don't appear together in a file name anymore.
- youtube: dub file name tag doesn't appear anymore if audio track is default.
This commit is contained in:
wukko
2023-10-12 23:14:54 +06:00
parent a57ee53b21
commit 16f74094b9
18 changed files with 249 additions and 59 deletions

View File

@@ -332,7 +332,8 @@ export default function(obj) {
}])
})
+ settingsCategory({
name: t('SettingsCodecSubtitle'),
name: "codec",
title: t('SettingsCodecSubtitle'),
body: switcher({
name: "vCodec",
explanation: t('SettingsCodecDescription'),
@@ -349,7 +350,8 @@ export default function(obj) {
})
})
+ settingsCategory({
name: t('SettingsVimeoPrefer'),
name: "vimeo",
title: t('SettingsVimeoPrefer'),
body: switcher({
name: "vimeoDash",
explanation: t('SettingsVimeoPreferDescription'),
@@ -426,6 +428,26 @@ export default function(obj) {
}]
})
})
+ settingsCategory({
name: "filename",
title: t('FilenamePattern'),
body: switcher({
name: "filenamePattern",
items: [{
action: "classic",
text: t('FilenamePatternClassic')
}, {
action: "pretty",
text: t('FilenamePatternPretty')
}, {
action: "basic",
text: t('FilenamePatternBasic')
}, {
action: "nerdy",
text: t('FilenamePatternNerdy')
}]
})
})
+ settingsCategory({
name: "accessibility",
title: t('Accessibility'),