1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 17:59:21 +02:00

Add video subtitle support

Add local_web_path setting (fix #324)
This commit is contained in:
Afterster 2014-07-16 22:41:19 +02:00
parent f1206dc17e
commit daa8b3133b
20 changed files with 350 additions and 35 deletions

View file

@ -310,3 +310,15 @@ function submitNewItemsOrder(itemId, tableid, rowPrefix, updateUrl, refreshActio
});
}
}
function getPagePlaySettings() {
var settings = '';
var stg_subtitle = document.getElementById('play_setting_subtitle');
if (stg_subtitle !== undefined) {
if (stg_subtitle.value != '') {
settings += '&subtitle=' + stg_subtitle.value;
}
}
return settings;
}