mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 11:35:29 +00:00

* minor fixes * created basic django app * add django dependency * created basic search endpoint * created retrieve method for search * remove retrieve * start implementing download endpoint (only movie for now) * start implementing episode info for series * finished get_episodes_info * minor fixes * add download anime episode * start implementing download for tv series * refactor methods * finished download endpoint (will implement possibility to download single episodes of season in tv series) * new domain and black on project * start * add cors * add start gui command * add gui for search * edited .gitignore * create component for media details * better UX/UI * edited anime episode to stream response (better experience) * implemented UI for media details (TODO add download capabilities) * fix poster fetching * minor fixes * fix cors error * start implementing download * fix typing on anime movies * refactor * refactor + add download OVA * add plot for all anime types * add download for all anime episodes * add download all tv series episodes * fix crach if localStorage is undefined * moved download logic in separeted file * fix wrong index passed while downloading tv series * fix style searchbar * add loader to search button and add enter listener while searching * remove dependency from loading episodes to download all in anime series * add function to download selected episodes for anime * add sh command to kill gui * fix messages in kill_gui.sh * start implementing download select episodes for tv series (to be tested) + run black and eslint * start refactoring to version 2.0 * start implementing preview endpoint
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"DEFAULT": {
|
|
"debug": false,
|
|
"log_file": "app.log",
|
|
"log_to_file": true,
|
|
"show_message": true,
|
|
"clean_console": true,
|
|
"root_path": "Video",
|
|
"map_episode_name": "%(tv_name)_S%(season)E%(episode)_%(episode_name)",
|
|
"not_close": false
|
|
},
|
|
"REQUESTS": {
|
|
"disable_error": false,
|
|
"timeout": 10,
|
|
"max_retry": 3,
|
|
"verify_ssl": false,
|
|
"index": {"user-agent": ""},
|
|
"segments": { "user-agent": ""}
|
|
},
|
|
"M3U8_DOWNLOAD": {
|
|
"tdqm_workers": 30,
|
|
"tqdm_use_large_bar": true,
|
|
"download_video": true,
|
|
"download_audio": true,
|
|
"merge_audio": true,
|
|
"specific_list_audio": ["ita"],
|
|
"download_sub": true,
|
|
"merge_subs": true,
|
|
"specific_list_subtitles": ["eng", "spa"],
|
|
"cleanup_tmp_folder": true,
|
|
"create_report": false
|
|
},
|
|
"M3U8_CONVERSION": {
|
|
"use_codec": false,
|
|
"use_gpu": false,
|
|
"default_preset": "ultrafast",
|
|
"check_output_after_ffmpeg": false
|
|
},
|
|
"M3U8_PARSER": {
|
|
"skip_empty_row_playlist": false,
|
|
"force_resolution": -1
|
|
},
|
|
"SITE": {
|
|
"streamingcommunity": "foo",
|
|
"animeunity": "to",
|
|
"altadefinizione": "food"
|
|
}
|
|
} |