├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── launch.json ├── ADC_function.py ├── ImageProcessing ├── __init__.py ├── cnn.py └── hog.py ├── Img ├── 4K.png ├── ISO.png └── SUB.png ├── LICENSE ├── Makefile ├── Movie_Data_Capture.py ├── README.md ├── README_EN.md ├── README_ZH.md ├── config.ini ├── config.py ├── core.py ├── docker ├── Dockerfile ├── config.ini └── docker-compose.yaml ├── number_parser.py ├── py_to_exe.ps1 ├── requirements.txt ├── scraper.py ├── scrapinglib ├── __init__.py ├── api.py ├── httprequest.py ├── imdb.py ├── parser.py └── tmdb.py ├── wrapper ├── FreeBSD.sh └── Linux.sh └── xlog.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /ADC_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/ADC_function.py -------------------------------------------------------------------------------- /ImageProcessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/ImageProcessing/__init__.py -------------------------------------------------------------------------------- /ImageProcessing/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/ImageProcessing/cnn.py -------------------------------------------------------------------------------- /ImageProcessing/hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/ImageProcessing/hog.py -------------------------------------------------------------------------------- /Img/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/Img/4K.png -------------------------------------------------------------------------------- /Img/ISO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/Img/ISO.png -------------------------------------------------------------------------------- /Img/SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/Img/SUB.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/Makefile -------------------------------------------------------------------------------- /Movie_Data_Capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/Movie_Data_Capture.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/README_EN.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/README_ZH.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/config.ini -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/config.py -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/core.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/docker/config.ini -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /number_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/number_parser.py -------------------------------------------------------------------------------- /py_to_exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/py_to_exe.ps1 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scraper.py -------------------------------------------------------------------------------- /scrapinglib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scrapinglib/__init__.py -------------------------------------------------------------------------------- /scrapinglib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scrapinglib/api.py -------------------------------------------------------------------------------- /scrapinglib/httprequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scrapinglib/httprequest.py -------------------------------------------------------------------------------- /scrapinglib/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scrapinglib/imdb.py -------------------------------------------------------------------------------- /scrapinglib/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scrapinglib/parser.py -------------------------------------------------------------------------------- /scrapinglib/tmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/scrapinglib/tmdb.py -------------------------------------------------------------------------------- /wrapper/FreeBSD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/wrapper/FreeBSD.sh -------------------------------------------------------------------------------- /wrapper/Linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/wrapper/Linux.sh -------------------------------------------------------------------------------- /xlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvdctop/Movie_Data_Capture/HEAD/xlog.py --------------------------------------------------------------------------------