mirror of
https://github.com/shadoll/moma.git
synced 2026-08-28 19:43:28 +00:00
24 lines
644 B
Python
24 lines
644 B
Python
"""Video source type constants.
|
|
|
|
This module defines video source types (WEB-DL, BDRip, etc.) and their aliases.
|
|
"""
|
|
|
|
SOURCE_DICT = {
|
|
"WEB-DL": ["WEB-DL", "WEBRip", "WEB-Rip", "WEB", "WEB-DLRip"],
|
|
"BDRip": ["BDRip", "BD-Rip", "BDRIP"],
|
|
"BDRemux": ["BDRemux", "BD-Remux", "BDREMUX", "REMUX"],
|
|
"DVDRip": ["DVDRip", "DVD-Rip", "DVDRIP"],
|
|
"HDTVRip": ["HDTVRip", "HDTV"],
|
|
"BluRay": ["BluRay", "BLURAY", "Blu-ray"],
|
|
"SATRip": ["SATRip", "SAT-Rip", "SATRIP"],
|
|
"VHSRecord": [
|
|
"VHSRecord",
|
|
"VHS Record",
|
|
"VHS-Rip",
|
|
"VHSRip",
|
|
"VHS",
|
|
"VHS Tape",
|
|
"VHS-Tape",
|
|
],
|
|
}
|