mirror of
https://github.com/mirror/jdownloader.git
synced 2024-11-23 12:09:43 +00:00
*General*
- ArdConfigInterface: added unused setting for HLS handling RE ticket #SDKQ6643-MARU-1185YSQO git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@49698 ebf7c1c2-ba36-0410-9fe8-c592906822b4 Former-commit-id: 346013e74d0d8b763ae07ae121bb493c86c017b5
This commit is contained in:
parent
502a171300
commit
40dc8c776c
@ -261,4 +261,26 @@ public interface ArdConfigInterface extends PluginConfigInterface {
|
||||
String getAudioLanguagePriorityString();
|
||||
|
||||
void setAudioLanguagePriorityString(String str);
|
||||
|
||||
public static enum HlsCrawlMode implements LabelInterface {
|
||||
AUTO {
|
||||
@Override
|
||||
public String getLabel() {
|
||||
return "Auto";
|
||||
}
|
||||
},
|
||||
ALWAYS_WHEN_HLS_IS_SELECTED {
|
||||
@Override
|
||||
public String getLabel() {
|
||||
return "Return HLS streams if any are selected";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@AboutConfig
|
||||
@DefaultEnumValue("WEBVTT")
|
||||
@Order(200)
|
||||
HlsCrawlMode getHlsCrawlMode();
|
||||
|
||||
void setHlsCrawlMode(final HlsCrawlMode mode);
|
||||
}
|
Loading…
Reference in New Issue
Block a user