config_video - euzu/tuliprox GitHub Wiki
video
video:
web_search: 'https://www.imdb.com/search/title/?title={}'
extensions:
- mkv
- mp4
- avi
download:
headers:
User-Agent: "AppleTV/tvOS/9.1.1."
Accept: "video/*"
directory: /tmp/
organize_into_directories: true
episode_pattern: '.*(?P<episode>[Ss]\\d{1,2}(.*?)[Ee]\\d{1,2}).*'
video
is optional.
-
web_search
is optional example:https://www.imdb.com/search/title/?title={}
This is used by theWeb-UI
to search in movie databases.
It requires:-
episode_pattern
to remove episode suffix from titles for searching. -
extensions
to identifiy vod files.
-
-
extensions
are a list of video file extensions likemp4
,avi
,mkv
.
This is used for categorizing urls fromM3U
sources and used by theWeb-UI
to provide specific features.
When you have inputm3u
and outputxtream
the url's with the matching endings will be categorized asvideo
. -
download
is optional and is only necessary if you want to download the video files from the ui to a specific directory. if defined, the download button from theui
is available.-
headers
optional, download headers -
organize_into_directories
optional, orgainize downloads into directories -
episode_pattern
optional if you download episodes, the suffix likeS01.E01
should be removed to place all files into one folder. The named capture groupepisode
is mandatory.
Example:.*(?P<episode>[Ss]\\d{1,2}(.*?)[Ee]\\d{1,2}).*
It requires: -
episode_pattern
to remove episode suffix from titles whenorganize_into_directories
is settrue
. -
extensions
to identifiy vod files.
-