Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b754c11814 | ||
|
|
5d19ae594d | ||
|
|
bfa8ed3144 | ||
|
|
0ec23aaa38 | ||
|
|
878ae46d77 | ||
|
|
766e6bbd88 | ||
|
|
0107c7d624 | ||
|
|
d0cf2d2193 | ||
|
|
d1403af548 | ||
|
|
bc20b09f60 | ||
|
|
8e2c0c3686 | ||
|
|
446e1bf7d0 | ||
|
|
54437236f0 | ||
|
|
9ed57a8ae9 |
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
@@ -19,13 +18,17 @@ if os.path.exists(config_file):
|
|||||||
else:
|
else:
|
||||||
print('[+]config.ini: not found, creating...')
|
print('[+]config.ini: not found, creating...')
|
||||||
with open("config.ini", "wt", encoding='UTF-8') as code:
|
with open("config.ini", "wt", encoding='UTF-8') as code:
|
||||||
|
print("[common]", file=code)
|
||||||
|
print("failed_output_folder=failed", file=code)
|
||||||
|
print("success_output_folder=JAV_output", file=code)
|
||||||
|
print("", file=code)
|
||||||
print("[proxy]",file=code)
|
print("[proxy]",file=code)
|
||||||
print("proxy=127.0.0.1:1080",file=code)
|
print("proxy=127.0.0.1:1080",file=code)
|
||||||
print("timeout=10", file=code)
|
print("timeout=10", file=code)
|
||||||
print("retry=3", file=code)
|
print("retry=3", file=code)
|
||||||
print("", file=code)
|
print("", file=code)
|
||||||
print("[Name_Rule]", file=code)
|
print("[Name_Rule]", file=code)
|
||||||
print("location_rule='JAV_output/'+actor+'/'+number",file=code)
|
print("location_rule=actor+'/'+number",file=code)
|
||||||
print("naming_rule=number+'-'+title",file=code)
|
print("naming_rule=number+'-'+title",file=code)
|
||||||
print("", file=code)
|
print("", file=code)
|
||||||
print("[update]",file=code)
|
print("[update]",file=code)
|
||||||
@@ -37,10 +40,8 @@ else:
|
|||||||
print("#plex only test!", file=code)
|
print("#plex only test!", file=code)
|
||||||
print("", file=code)
|
print("", file=code)
|
||||||
print("[directory_capture]", file=code)
|
print("[directory_capture]", file=code)
|
||||||
print("switch=0", file=code)
|
|
||||||
print("directory=", file=code)
|
print("directory=", file=code)
|
||||||
print("", file=code)
|
print("", file=code)
|
||||||
print("everyone switch:1=on, 0=off", file=code)
|
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
print('[+]config.ini: created!')
|
print('[+]config.ini: created!')
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -8,21 +8,26 @@ import re
|
|||||||
import sys
|
import sys
|
||||||
from ADC_function import *
|
from ADC_function import *
|
||||||
import json
|
import json
|
||||||
import subprocess
|
|
||||||
import shutil
|
import shutil
|
||||||
from configparser import ConfigParser
|
from configparser import ConfigParser
|
||||||
|
|
||||||
version='0.11.7'
|
|
||||||
os.chdir(os.getcwd())
|
os.chdir(os.getcwd())
|
||||||
|
|
||||||
input_dir='.' # 电影的读取与输出路径, 默认为当前路径
|
# ============global var===========
|
||||||
|
|
||||||
|
version='0.11.9'
|
||||||
|
|
||||||
config = ConfigParser()
|
config = ConfigParser()
|
||||||
config.read(config_file, encoding='UTF-8')
|
config.read(config_file, encoding='UTF-8')
|
||||||
|
|
||||||
|
Platform = sys.platform
|
||||||
|
|
||||||
|
# ==========global var end=========
|
||||||
|
|
||||||
def UpdateCheck():
|
def UpdateCheck():
|
||||||
if UpdateCheckSwitch() == '1':
|
if UpdateCheckSwitch() == '1':
|
||||||
html = json.loads(get_html('https://raw.githubusercontent.com/wenead99/AV_Data_Capture/master/update_check.json'))
|
html2 = get_html('https://raw.githubusercontent.com/wenead99/AV_Data_Capture/master/update_check.json')
|
||||||
|
html = json.loads(str(html2))
|
||||||
|
|
||||||
if not version == html['version']:
|
if not version == html['version']:
|
||||||
print('[*] * New update ' + html['version'] + ' *')
|
print('[*] * New update ' + html['version'] + ' *')
|
||||||
print('[*] * Download *')
|
print('[*] * Download *')
|
||||||
@@ -30,44 +35,44 @@ def UpdateCheck():
|
|||||||
print('[*]=====================================')
|
print('[*]=====================================')
|
||||||
else:
|
else:
|
||||||
print('[+]Update Check disabled!')
|
print('[+]Update Check disabled!')
|
||||||
|
|
||||||
def set_directory(): # 设置读取与存放路径
|
|
||||||
global input_dir
|
|
||||||
# 配置项switch为1且定义了新的路径时, 更改默认存取路径
|
|
||||||
if config['directory_capture']['switch'] == '1':
|
|
||||||
custom_input = config['directory_capture']['input_directory']
|
|
||||||
if custom_input != '': # 自定义了输入路径
|
|
||||||
input_dir = format_path(custom_input)
|
|
||||||
# 若自定义了输入路径, 输出路径默认在输入路径下
|
|
||||||
CreatFolder(input_dir)
|
|
||||||
#print('[+]Working directory is "' + os.getcwd() + '".')
|
|
||||||
#print('[+]Using "' + input_dir + '" as input directory.')
|
|
||||||
|
|
||||||
def format_path(path): # 使路径兼容Linux与MacOS
|
|
||||||
if path.find('\\'): # 是仅兼容Windows的路径格式
|
|
||||||
path_list=path.split('\\')
|
|
||||||
path='/'.join(path_list) # 转换为可移植的路径格式
|
|
||||||
return path
|
|
||||||
|
|
||||||
|
|
||||||
def movie_lists():
|
def movie_lists():
|
||||||
a2 = glob.glob( input_dir + "/*.mp4")
|
directory = config['directory_capture']['directory']
|
||||||
b2 = glob.glob( input_dir + "/*.avi")
|
a2=[]
|
||||||
c2 = glob.glob( input_dir + "/*.rmvb")
|
b2=[]
|
||||||
d2 = glob.glob( input_dir + "/*.wmv")
|
c2=[]
|
||||||
e2 = glob.glob( input_dir + "/*.mov")
|
d2=[]
|
||||||
f2 = glob.glob( input_dir + "/*.mkv")
|
e2=[]
|
||||||
g2 = glob.glob( input_dir + "/*.flv")
|
f2=[]
|
||||||
h2 = glob.glob( input_dir + "/*.ts")
|
g2=[]
|
||||||
|
h2=[]
|
||||||
|
if directory=='*':
|
||||||
|
for i in os.listdir(os.getcwd()):
|
||||||
|
a2 += glob.glob(r"./" + i + "/*.mp4")
|
||||||
|
b2 += glob.glob(r"./" + i + "/*.avi")
|
||||||
|
c2 += glob.glob(r"./" + i + "/*.rmvb")
|
||||||
|
d2 += glob.glob(r"./" + i + "/*.wmv")
|
||||||
|
e2 += glob.glob(r"./" + i + "/*.mov")
|
||||||
|
f2 += glob.glob(r"./" + i + "/*.mkv")
|
||||||
|
g2 += glob.glob(r"./" + i + "/*.flv")
|
||||||
|
h2 += glob.glob(r"./" + i + "/*.ts")
|
||||||
total = a2 + b2 + c2 + d2 + e2 + f2 + g2 + h2
|
total = a2 + b2 + c2 + d2 + e2 + f2 + g2 + h2
|
||||||
return total
|
return total
|
||||||
def CreatFolder(folder_path):
|
a2 = glob.glob(r"./" + directory + "/*.mp4")
|
||||||
if not os.path.exists(folder_path): # 新建文件夹
|
b2 = glob.glob(r"./" + directory + "/*.avi")
|
||||||
|
c2 = glob.glob(r"./" + directory + "/*.rmvb")
|
||||||
|
d2 = glob.glob(r"./" + directory + "/*.wmv")
|
||||||
|
e2 = glob.glob(r"./" + directory + "/*.mov")
|
||||||
|
f2 = glob.glob(r"./" + directory + "/*.mkv")
|
||||||
|
g2 = glob.glob(r"./" + directory + "/*.flv")
|
||||||
|
h2 = glob.glob(r"./" + directory + "/*.ts")
|
||||||
|
total = a2 + b2 + c2 + d2 + e2 + f2 + g2 + h2
|
||||||
|
return total
|
||||||
|
def CreatFailedFolder():
|
||||||
|
if not os.path.exists('failed/'): # 新建failed文件夹
|
||||||
try:
|
try:
|
||||||
print('[+]Creating ' + folder_path)
|
os.makedirs('failed/')
|
||||||
os.makedirs(folder_path)
|
|
||||||
except:
|
except:
|
||||||
print("[-]failed!can not be make folder '"+folder_path+"'\n[-](Please run as Administrator)")
|
print("[-]failed!can not be make folder 'failed'\n[-](Please run as Administrator)")
|
||||||
os._exit(0)
|
os._exit(0)
|
||||||
def lists_from_test(custom_nuber): #电影列表
|
def lists_from_test(custom_nuber): #电影列表
|
||||||
a=[]
|
a=[]
|
||||||
@@ -88,8 +93,6 @@ def rreplace(self, old, new, *max):
|
|||||||
count = max[0]
|
count = max[0]
|
||||||
return new.join(self.rsplit(old, count))
|
return new.join(self.rsplit(old, count))
|
||||||
def getNumber(filepath):
|
def getNumber(filepath):
|
||||||
try: # 试图提取番号
|
|
||||||
# ====番号获取主程序====
|
|
||||||
try: # 普通提取番号 主要处理包含减号-的番号
|
try: # 普通提取番号 主要处理包含减号-的番号
|
||||||
filepath1 = filepath.replace("_", "-")
|
filepath1 = filepath.replace("_", "-")
|
||||||
filepath1.strip('22-sht.me').strip('-HD').strip('-hd')
|
filepath1.strip('22-sht.me').strip('-HD').strip('-hd')
|
||||||
@@ -115,62 +118,50 @@ def getNumber(filepath):
|
|||||||
return file_number
|
return file_number
|
||||||
# if not re.search('\w-', file_number).group() == 'None':
|
# if not re.search('\w-', file_number).group() == 'None':
|
||||||
# file_number = re.search('\w+-\w+', filename).group()
|
# file_number = re.search('\w+-\w+', filename).group()
|
||||||
# 上面是插入减号-到番号中
|
#
|
||||||
# ====番号获取主程序=结束===
|
|
||||||
except Exception as e: # 番号提取异常
|
|
||||||
print('[-]' + str(os.path.basename(filepath)) + ' Cannot catch the number :')
|
|
||||||
print('[-]' + str(os.path.basename(filepath)) + ' :', e)
|
|
||||||
print('[-]Move ' + os.path.basename(filepath) + ' to failed folder')
|
|
||||||
#print('[-]' + filepath + ' -> ' + output_dir + '/failed/')
|
|
||||||
#shutil.move(filepath, output_dir + '/failed/')
|
|
||||||
except IOError as e2:
|
|
||||||
print('[-]' + str(os.path.basename(filepath)) + ' Cannot catch the number :')
|
|
||||||
print('[-]' + str(os.path.basename(filepath)) + ' :', e2)
|
|
||||||
#print('[-]' + filepath + ' -> ' + output_dir + '/failed/')
|
|
||||||
#shutil.move(filepath, output_dir + '/failed/')
|
|
||||||
|
|
||||||
def RunCore(movie):
|
def RunCore():
|
||||||
# 异步调用core.py, core.py作为子线程执行, 本程序继续执行.
|
if Platform == 'win32':
|
||||||
if os.path.exists('core.py'):
|
if os.path.exists('core.py'):
|
||||||
cmd_arg=[sys.executable,'core.py',movie,'--number',getNumber(movie)] #从py文件启动(用于源码py)
|
os.system('python core.py' + ' "' + i + '" --number "' + getNumber(i) + '"') # 从py文件启动(用于源码py)
|
||||||
elif os.path.exists('core.exe'):
|
elif os.path.exists('core.exe'):
|
||||||
cmd_arg=['core.exe',movie,'--number',getNumber(movie)] #从exe启动(用于EXE版程序)
|
os.system('core.exe' + ' "' + i + '" --number "' + getNumber(i) + '"') # 从exe启动(用于EXE版程序)
|
||||||
elif os.path.exists('core.py') and os.path.exists('core.exe'):
|
elif os.path.exists('core.py') and os.path.exists('core.exe'):
|
||||||
cmd_arg=[sys.executable,'core.py',movie,'--number',getNumber(movie)] #从py文件启动(用于源码py)
|
os.system('python core.py' + ' "' + i + '" --number "' + getNumber(i) + '"') # 从py文件启动(用于源码py)
|
||||||
process=subprocess.Popen(cmd_arg)
|
else:
|
||||||
return process
|
if os.path.exists('core.py'):
|
||||||
|
os.system('python3 core.py' + ' "' + i + '" --number "' + getNumber(i) + '"') # 从py文件启动(用于源码py)
|
||||||
|
elif os.path.exists('core.exe'):
|
||||||
|
os.system('core.exe' + ' "' + i + '" --number "' + getNumber(i) + '"') # 从exe启动(用于EXE版程序)
|
||||||
|
elif os.path.exists('core.py') and os.path.exists('core.exe'):
|
||||||
|
os.system('python3 core.py' + ' "' + i + '" --number "' + getNumber(i) + '"') # 从py文件启动(用于源码py)
|
||||||
|
|
||||||
if __name__ =='__main__':
|
if __name__ =='__main__':
|
||||||
print('[*]===========AV Data Capture===========')
|
print('[*]===========AV Data Capture===========')
|
||||||
print('[*] Version '+version)
|
print('[*] Version '+version)
|
||||||
print('[*]=====================================')
|
print('[*]=====================================')
|
||||||
|
CreatFailedFolder()
|
||||||
UpdateCheck()
|
UpdateCheck()
|
||||||
os.chdir(os.getcwd())
|
os.chdir(os.getcwd())
|
||||||
set_directory()
|
|
||||||
|
|
||||||
|
|
||||||
count = 0
|
count = 0
|
||||||
movies = movie_lists()
|
count_all = str(len(movie_lists()))
|
||||||
count_all = str(len(movies))
|
print('[+]Find',str(len(movie_lists())),'movies')
|
||||||
print('[+]Find ' + str(len(movies)) + ' movies.')
|
for i in movie_lists(): #遍历电影列表 交给core处理
|
||||||
process_list=[]
|
count = count + 1
|
||||||
for movie in movies: #遍历电影列表 交给core处理
|
percentage = str(count/int(count_all)*100)[:4]+'%'
|
||||||
num=getNumber(movie) # 获取番号
|
|
||||||
if num is None:
|
|
||||||
movies.remove(movie) # 未获取到番号, 则将影片从列表移除
|
|
||||||
count_all=count_all-1
|
|
||||||
continue
|
|
||||||
print("[!]Making Data for [" + movie + "], the number is [" + num + "]")
|
|
||||||
process=RunCore(movie)
|
|
||||||
process_list.append(process)
|
|
||||||
print("[*]=====================================")
|
|
||||||
for i in range(len(movies)):
|
|
||||||
process_list[i].communicate()
|
|
||||||
percentage = str((i+1)/int(count_all)*100)[:4]+'%'
|
|
||||||
print('[!] - '+percentage+' ['+str(count)+'/'+count_all+'] -')
|
print('[!] - '+percentage+' ['+str(count)+'/'+count_all+'] -')
|
||||||
print("[!]The [" + getNumber(movies[i]) + "] process is done.")
|
try:
|
||||||
|
print("[!]Making Data for [" + i + "], the number is [" + getNumber(i) + "]")
|
||||||
|
RunCore()
|
||||||
print("[*]=====================================")
|
print("[*]=====================================")
|
||||||
|
except: # 番号提取异常
|
||||||
|
print('[-]' + i + ' Cannot catch the number :')
|
||||||
|
print('[-]Move ' + i + ' to failed folder')
|
||||||
|
shutil.move(i, str(os.getcwd()) + '/' + 'failed/')
|
||||||
|
continue
|
||||||
|
|
||||||
CEF(input_dir)
|
|
||||||
|
CEF('JAV_output')
|
||||||
print("[+]All finished!!!")
|
print("[+]All finished!!!")
|
||||||
input("[+][+]Press enter key exit, you can check the error messge before you exit.\n[+][+]按回车键结束,你可以在结束之前查看和错误信息。")
|
input("[+][+]Press enter key exit, you can check the error messge before you exit.\n[+][+]按回车键结束,你可以在结束之前查看和错误信息。")
|
||||||
72
README.md
72
README.md
@@ -20,9 +20,11 @@
|
|||||||
* [简明教程](#简要教程)
|
* [简明教程](#简要教程)
|
||||||
* [模块安装](#1请安装模块在cmd终端逐条输入以下命令安装)
|
* [模块安装](#1请安装模块在cmd终端逐条输入以下命令安装)
|
||||||
* [配置](#2配置configini)
|
* [配置](#2配置configini)
|
||||||
* [运行软件](#4运行-av_data_capturepyexe)
|
* [(可选)设置自定义目录和影片重命名规则](#3可选设置自定义目录和影片重命名规则)
|
||||||
* [异常处理(重要)](#5异常处理重要)
|
* [运行软件](#5运行-av_data_capturepyexe)
|
||||||
* [导入至媒体库](#7把jav_output文件夹导入到embykodi中根据封面选片子享受手冲乐趣)
|
* [影片原路径处理](#4建议把软件拷贝和电影的统一目录下)
|
||||||
|
* [异常处理(重要)](#51异常处理重要)
|
||||||
|
* [导入至媒体库](#7把jav_output文件夹导入到embykodi中等待元数据刷新完成)
|
||||||
* [写在后面](#8写在后面)
|
* [写在后面](#8写在后面)
|
||||||
|
|
||||||
# 免责声明
|
# 免责声明
|
||||||
@@ -85,13 +87,18 @@ pip install pillow
|
|||||||
|
|
||||||
## 2.配置config.ini
|
## 2.配置config.ini
|
||||||
config.ini
|
config.ini
|
||||||
|
>[common]<br>
|
||||||
|
>main_mode=1<br>
|
||||||
|
>failed_output_folder=failed<br>
|
||||||
|
>success_output_folder=JAV_output<br>
|
||||||
|
>
|
||||||
>[proxy]<br>
|
>[proxy]<br>
|
||||||
>proxy=127.0.0.1:1080<br>
|
>proxy=127.0.0.1:1080<br>
|
||||||
>timeout=10<br>
|
>timeout=10<br>
|
||||||
>retry=3<br>
|
>retry=3<br>
|
||||||
>
|
>
|
||||||
>[Name_Rule]<br>
|
>[Name_Rule]<br>
|
||||||
>location_rule='JAV_output/'+actor+'/['+number+']-'+title<br>
|
>location_rule=actor+'/'+number<br>
|
||||||
>naming_rule=number+'-'+title<br>
|
>naming_rule=number+'-'+title<br>
|
||||||
>
|
>
|
||||||
>[update]<br>
|
>[update]<br>
|
||||||
@@ -100,15 +107,23 @@ config.ini
|
|||||||
>[media]<br>
|
>[media]<br>
|
||||||
>media_warehouse=emby<br>
|
>media_warehouse=emby<br>
|
||||||
>#emby or plex<br>
|
>#emby or plex<br>
|
||||||
>#plex only test!<br>
|
|
||||||
>
|
>
|
||||||
>[directory_capture]<br>
|
>[directory_capture]<br>
|
||||||
>switch=0<br>
|
|
||||||
>directory=<br>
|
>directory=<br>
|
||||||
>
|
|
||||||
>#everyone switch:1=on, 0=off<br>
|
|
||||||
|
|
||||||
### 1.网络设置
|
### 全局设置
|
||||||
|
#### 软件模式
|
||||||
|
>[common]<br>
|
||||||
|
>main_mode=1<br>
|
||||||
|
|
||||||
|
1为普通模式,2为整理模式:仅根据女优把电影命名为番号并分类到女优名称的文件夹下
|
||||||
|
|
||||||
|
>failed_output_folder=failed<br>
|
||||||
|
>success_output_folder=JAV_outputd<br>
|
||||||
|
|
||||||
|
设置成功输出目录和失败输出目录
|
||||||
|
|
||||||
|
### 网络设置
|
||||||
#### * 针对“某些地区”的代理设置
|
#### * 针对“某些地区”的代理设置
|
||||||
打开```config.ini```,在```[proxy]```下的```proxy```行设置本地代理地址和端口,支持Shadowxxxx/X,V2XXX本地代理端口:<br>
|
打开```config.ini```,在```[proxy]```下的```proxy```行设置本地代理地址和端口,支持Shadowxxxx/X,V2XXX本地代理端口:<br>
|
||||||
例子:```proxy=127.0.0.1:1080```<br>素人系列抓取建议使用日本代理<br>
|
例子:```proxy=127.0.0.1:1080```<br>素人系列抓取建议使用日本代理<br>
|
||||||
@@ -123,31 +138,35 @@ config.ini
|
|||||||
#### 连接重试次数设置
|
#### 连接重试次数设置
|
||||||
>[proxy]<br>
|
>[proxy]<br>
|
||||||
>retry=3<br>
|
>retry=3<br>
|
||||||
|
|
||||||
3即为重试次数
|
3即为重试次数
|
||||||
|
|
||||||
#### 检查更新开关
|
#### 检查更新开关
|
||||||
>[update]<br>
|
>[update]<br>
|
||||||
>update_check=1<br>
|
>update_check=1<br>
|
||||||
|
|
||||||
0为关闭,1为开启,不建议关闭
|
0为关闭,1为开启,不建议关闭
|
||||||
PLEX请安装插件:```XBMCnfoMoviesImporter```
|
|
||||||
|
|
||||||
##### 媒体库选择
|
##### 媒体库选择
|
||||||
>[media]<br>
|
>[media]<br>
|
||||||
>media_warehouse=emby<br>
|
>media_warehouse=emby<br>
|
||||||
>#emby or plex<br>
|
>#emby or plex<br>
|
||||||
>#plex only test!<br>
|
|
||||||
建议选择emby, plex不完善
|
可选择emby, plex<br>
|
||||||
|
如果是PLEX,请安装插件:```XBMCnfoMoviesImporter```
|
||||||
|
|
||||||
#### 抓取目录选择
|
#### 抓取目录选择
|
||||||
>[directory_capture]<br>
|
>[directory_capture]<br>
|
||||||
>switch=0<br>
|
>directory=<br>
|
||||||
>input_directory=<br>
|
如果directory后面为空,则抓取和程序同一目录下的影片,设置为``` * ```可抓取软件所在目录下的所有子目录中的影片
|
||||||
>output_directory=<br>
|
|
||||||
switch为1时,目录自定义才会被触发,此时可以指定抓取任意目录下的影片, 并指定存放的目录;如果为0则不触发,抓取和程序同一目录下的影片,directory不生效. 如果仅指定input_directory, output_directory默认与input_directory相同.
|
## 3.(可选)设置自定义目录和影片重命名规则
|
||||||
|
>[Name_Rule]<br>
|
||||||
|
>location_rule=actor+'/'+number<br>
|
||||||
|
>naming_rule=number+'-'+title<br>
|
||||||
|
|
||||||
### (可选)设置自定义目录和影片重命名规则
|
|
||||||
**已有默认配置**<br>
|
**已有默认配置**<br>
|
||||||
##### 命名参数<br>
|
#### 命名参数<br>
|
||||||
>title = 片名<br>
|
>title = 片名<br>
|
||||||
>actor = 演员<br>
|
>actor = 演员<br>
|
||||||
>studio = 公司<br>
|
>studio = 公司<br>
|
||||||
@@ -160,25 +179,26 @@ switch为1时,目录自定义才会被触发,此时可以指定抓取任意
|
|||||||
>outline = 简介<br>
|
>outline = 简介<br>
|
||||||
>runtime = 时长<br>
|
>runtime = 时长<br>
|
||||||
##### **例子**:<br>
|
##### **例子**:<br>
|
||||||
目录结构规则:```location_rule='JAV_output/'+actor+'/'+number```<br> **不推荐修改时在这里添加title**,有时title过长,因为Windows API问题,抓取数据时新建文件夹容易出错。<br>
|
目录结构规则:```location_rule=actor+'/'+number```<br> **不推荐修改时在这里添加title**,有时title过长,因为Windows API问题,抓取数据时新建文件夹容易出错。<br>
|
||||||
影片命名规则:```naming_rule='['+number+']-'+title```<br> **在EMBY,KODI等本地媒体库显示的标题,不影响目录结构下影片文件的命名**,依旧是 番号+后缀。
|
影片命名规则:```naming_rule=number+'-'+title```<br> **在EMBY,KODI等本地媒体库显示的标题,不影响目录结构下影片文件的命名**,依旧是 番号+后缀。
|
||||||
### 3.更新开关
|
### 更新开关
|
||||||
>[update]<br>update_check=1<br>
|
>[update]<br>update_check=1<br>
|
||||||
1为开,0为关
|
1为开,0为关
|
||||||
## 3.把软件拷贝和电影的统一目录下
|
## 4.建议把软件拷贝和电影的统一目录下
|
||||||
## 4.运行 ```AV_Data_capture.py/.exe```
|
如果```config.ini```中```directory=```后面为空的情况下
|
||||||
|
## 5.运行 ```AV_Data_capture.py/.exe```
|
||||||
当文件名包含:<br>
|
当文件名包含:<br>
|
||||||
中文,字幕,-c., -C., 处理元数据时会加上**中文字幕**标签
|
中文,字幕,-c., -C., 处理元数据时会加上**中文字幕**标签
|
||||||
## 5.异常处理(重要)
|
## 5.1 异常处理(重要)
|
||||||
### 请确保软件是完整地!确保ini文件内容是和下载提供ini文件内容的一致的!
|
### 请确保软件是完整地!确保ini文件内容是和下载提供ini文件内容的一致的!
|
||||||
### 关于软件打开就闪退
|
### 关于软件打开就闪退
|
||||||
可以打开cmd命令提示符,把 ```AV_Data_capture.py/.exe```拖进cmd窗口回车运行,查看错误,出现的错误信息**依据以下条目解决**
|
可以打开cmd命令提示符,把 ```AV_Data_capture.py/.exe```拖进cmd窗口回车运行,查看错误,出现的错误信息**依据以下条目解决**
|
||||||
### 关于 ```Updata_check``` 和 ```JSON``` 相关的错误
|
### 关于 ```Updata_check``` 和 ```JSON``` 相关的错误
|
||||||
跳转 [网络设置](#1网络设置)
|
跳转 [网络设置](#网络设置)
|
||||||
### 关于```FileNotFoundError: [WinError 3] 系统找不到指定的路径。: 'JAV_output''```
|
### 关于```FileNotFoundError: [WinError 3] 系统找不到指定的路径。: 'JAV_output''```
|
||||||
在软件所在文件夹下新建 JAV_output 文件夹,可能是你没有把软件拉到和电影的同一目录
|
在软件所在文件夹下新建 JAV_output 文件夹,可能是你没有把软件拉到和电影的同一目录
|
||||||
### 关于连接拒绝的错误
|
### 关于连接拒绝的错误
|
||||||
请设置好[代理](#1针对某些地区的代理设置)<br>
|
请设置好[代理](#针对某些地区的代理设置)<br>
|
||||||
### 关于Nonetype,xpath报错
|
### 关于Nonetype,xpath报错
|
||||||
同上<br>
|
同上<br>
|
||||||
### 关于番号提取失败或者异常
|
### 关于番号提取失败或者异常
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ media_warehouse=emby
|
|||||||
#plex only test!
|
#plex only test!
|
||||||
|
|
||||||
[directory_capture]
|
[directory_capture]
|
||||||
input_directory=
|
switch=0
|
||||||
|
directory=
|
||||||
|
|
||||||
#everyone switch:1=on, 0=off
|
#everyone switch:1=on, 0=off
|
||||||
75
core.py
75
core.py
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import re
|
import re
|
||||||
@@ -16,6 +15,13 @@ from configparser import ConfigParser
|
|||||||
import argparse
|
import argparse
|
||||||
import javdb
|
import javdb
|
||||||
|
|
||||||
|
Config = ConfigParser()
|
||||||
|
Config.read(config_file, encoding='UTF-8')
|
||||||
|
try:
|
||||||
|
option = ReadMediaWarehouse()
|
||||||
|
except:
|
||||||
|
print('[-]Config media_warehouse read failed!')
|
||||||
|
|
||||||
#初始化全局变量
|
#初始化全局变量
|
||||||
title=''
|
title=''
|
||||||
studio=''
|
studio=''
|
||||||
@@ -38,33 +44,27 @@ json_data={}
|
|||||||
actor_photo={}
|
actor_photo={}
|
||||||
naming_rule =''#eval(config['Name_Rule']['naming_rule'])
|
naming_rule =''#eval(config['Name_Rule']['naming_rule'])
|
||||||
location_rule=''#eval(config['Name_Rule']['location_rule'])
|
location_rule=''#eval(config['Name_Rule']['location_rule'])
|
||||||
|
program_mode = Config['common']['main_mode']
|
||||||
Config = ConfigParser()
|
failed_folder= Config['common']['failed_output_folder']
|
||||||
Config.read(config_file, encoding='UTF-8')
|
success_folder=Config['common']['success_output_folder']
|
||||||
try:
|
|
||||||
option = ReadMediaWarehouse()
|
|
||||||
except:
|
|
||||||
print('[-]Config media_warehouse read failed!')
|
|
||||||
|
|
||||||
#=====================本地文件处理===========================
|
#=====================本地文件处理===========================
|
||||||
def moveFailedFolder():
|
def moveFailedFolder():
|
||||||
global filepath
|
global filepath
|
||||||
print('[-]Move to "failed"')
|
print('[-]Move to Failed output folder')
|
||||||
#print('[-]' + filepath + ' -> ' + output_dir + '/failed/')
|
shutil.move(filepath, str(os.getcwd()) + '/' + failed_folder + '/')
|
||||||
#os.rename(filepath, output_dir + '/failed/')
|
|
||||||
os._exit(0)
|
os._exit(0)
|
||||||
def argparse_get_file():
|
def argparse_get_file():
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("file", help="Write the file path on here")
|
|
||||||
parser.add_argument("--number", help="Enter Number on here", default='')
|
parser.add_argument("--number", help="Enter Number on here", default='')
|
||||||
|
parser.add_argument("file", help="Write the file path on here")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
return (args.file, args.number)
|
return (args.file, args.number)
|
||||||
def CreatFailedFolder():
|
def CreatFailedFolder():
|
||||||
if not os.path.exists('/failed/'): # 新建failed文件夹
|
if not os.path.exists(failed_folder+'/'): # 新建failed文件夹
|
||||||
try:
|
try:
|
||||||
os.makedirs('/failed/')
|
os.makedirs(failed_folder+'/')
|
||||||
except:
|
except:
|
||||||
print("[-]failed!can not be make folder 'failed'\n[-](Please run as Administrator)")
|
print("[-]failed!can not be make Failed output folder\n[-](Please run as Administrator)")
|
||||||
os._exit(0)
|
os._exit(0)
|
||||||
def getDataFromJSON(file_number): #从JSON返回元数据
|
def getDataFromJSON(file_number): #从JSON返回元数据
|
||||||
global title
|
global title
|
||||||
@@ -98,12 +98,11 @@ def getDataFromJSON(file_number): #从JSON返回元数据
|
|||||||
except: # 添加 无需 正则表达式的规则
|
except: # 添加 无需 正则表达式的规则
|
||||||
# ====================fc2fans_club.py====================
|
# ====================fc2fans_club.py====================
|
||||||
if 'fc2' in file_number:
|
if 'fc2' in file_number:
|
||||||
json_data = json.loads(fc2fans_club.main(
|
json_data = json.loads(fc2fans_club.main(file_number.strip('fc2_').strip('fc2-').strip('ppv-').strip('PPV-').strip('FC2_').strip('FC2-').strip('ppv-').strip('PPV-')))
|
||||||
file_number.strip('fc2_').strip('fc2-').strip('ppv-').strip('PPV-').strip('FC2_').strip('FC2-').strip('ppv-').strip('PPV-')))
|
|
||||||
elif 'FC2' in file_number:
|
elif 'FC2' in file_number:
|
||||||
json_data = json.loads(fc2fans_club.main(
|
json_data = json.loads(fc2fans_club.main(file_number.strip('FC2_').strip('FC2-').strip('ppv-').strip('PPV-').strip('fc2_').strip('fc2-').strip('ppv-').strip('PPV-')))
|
||||||
file_number.strip('FC2_').strip('FC2-').strip('ppv-').strip('PPV-').strip('fc2_').strip('fc2-').strip('ppv-').strip('PPV-')))
|
# =======================siro.py=========================
|
||||||
elif 'siro' in number or 'SIRO' in number or 'Siro' in number:
|
elif 'siro' in file_number or 'SIRO' in file_number or 'Siro' in file_number:
|
||||||
json_data = json.loads(siro.main(file_number))
|
json_data = json.loads(siro.main(file_number))
|
||||||
# =======================javbus.py=======================
|
# =======================javbus.py=======================
|
||||||
else:
|
else:
|
||||||
@@ -134,10 +133,10 @@ def getDataFromJSON(file_number): #从JSON返回元数据
|
|||||||
# ====================处理异常字符====================== #\/:*?"<>|
|
# ====================处理异常字符====================== #\/:*?"<>|
|
||||||
if '\\' in title:
|
if '\\' in title:
|
||||||
title=title.replace('\\', ' ')
|
title=title.replace('\\', ' ')
|
||||||
elif '/' in title:
|
elif r'/' in title:
|
||||||
title=title.replace('/', '')
|
title=title.replace(r'/', '')
|
||||||
elif ':' in title:
|
elif ':' in title:
|
||||||
title=title.replace('/', '')
|
title=title.replace(':', '')
|
||||||
elif '*' in title:
|
elif '*' in title:
|
||||||
title=title.replace('*', '')
|
title=title.replace('*', '')
|
||||||
elif '?' in title:
|
elif '?' in title:
|
||||||
@@ -158,16 +157,16 @@ def creatFolder(): #创建文件夹
|
|||||||
global actor
|
global actor
|
||||||
global path
|
global path
|
||||||
if len(actor) > 240: #新建成功输出文件夹
|
if len(actor) > 240: #新建成功输出文件夹
|
||||||
path = location_rule.replace("'actor'","'超多人'",3).replace("actor","'超多人'",3) #path为影片+元数据所在目录
|
path = success_folder+'/'+location_rule.replace("'actor'","'超多人'",3).replace("actor","'超多人'",3) #path为影片+元数据所在目录
|
||||||
#print(path)
|
#print(path)
|
||||||
else:
|
else:
|
||||||
path = location_rule
|
path = success_folder+'/'+location_rule
|
||||||
#print(path)
|
#print(path)
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
try:
|
try:
|
||||||
os.makedirs(path)
|
os.makedirs(path)
|
||||||
except:
|
except:
|
||||||
path = location_rule.replace('/['+number+']-'+title,"/number")
|
path = success_folder+'/'+location_rule.replace('/['+number+']-'+title,"/number")
|
||||||
#print(path)
|
#print(path)
|
||||||
os.makedirs(path)
|
os.makedirs(path)
|
||||||
#=====================资源下载部分===========================
|
#=====================资源下载部分===========================
|
||||||
@@ -377,14 +376,23 @@ def cutImage():
|
|||||||
def pasteFileToFolder(filepath, path): #文件路径,番号,后缀,要移动至的位置
|
def pasteFileToFolder(filepath, path): #文件路径,番号,后缀,要移动至的位置
|
||||||
global houzhui
|
global houzhui
|
||||||
houzhui = str(re.search('[.](AVI|RMVB|WMV|MOV|MP4|MKV|FLV|TS|avi|rmvb|wmv|mov|mp4|mkv|flv|ts)$', filepath).group())
|
houzhui = str(re.search('[.](AVI|RMVB|WMV|MOV|MP4|MKV|FLV|TS|avi|rmvb|wmv|mov|mp4|mkv|flv|ts)$', filepath).group())
|
||||||
os.rename(filepath, number + houzhui)
|
|
||||||
try:
|
try:
|
||||||
shutil.move(number + houzhui, path)
|
os.rename(filepath, path + '/' + number + houzhui)
|
||||||
|
except FileExistsError:
|
||||||
|
print('[-]File Exists! Please check your movie!')
|
||||||
|
print('[-]move to the root folder of the program.')
|
||||||
|
os._exit(0)
|
||||||
|
def pasteFileToFolder_mode2(filepath, path): #文件路径,番号,后缀,要移动至的位置
|
||||||
|
global houzhui
|
||||||
|
houzhui = str(re.search('[.](AVI|RMVB|WMV|MOV|MP4|MKV|FLV|TS|avi|rmvb|wmv|mov|mp4|mkv|flv|ts)$', filepath).group())
|
||||||
|
try:
|
||||||
|
os.rename(filepath, path + houzhui)
|
||||||
|
print('[+]Movie ' + number + ' move to target folder Finished!')
|
||||||
except:
|
except:
|
||||||
print('[-]File Exists! Please check your movie!')
|
print('[-]File Exists! Please check your movie!')
|
||||||
print('[-]move to the root folder of the program.')
|
print('[-]move to the root folder of the program.')
|
||||||
os._exit(0)
|
os._exit(0)
|
||||||
def moveJpgToBackdrop_copy():
|
def renameJpgToBackdrop_copy():
|
||||||
if option == 'plex':
|
if option == 'plex':
|
||||||
shutil.copy(path + '/fanart.jpg', path + '/Backdrop.jpg')
|
shutil.copy(path + '/fanart.jpg', path + '/Backdrop.jpg')
|
||||||
shutil.copy(path + '/poster.png', path + '/thumb.png')
|
shutil.copy(path + '/poster.png', path + '/thumb.png')
|
||||||
@@ -402,15 +410,18 @@ if __name__ == '__main__':
|
|||||||
number = str(re.findall(r'(.+?)\.',str(re.search('([^<>/\\\\|:""\\*\\?]+)\\.\\w+$',filepath).group()))).strip("['']").replace('_','-')
|
number = str(re.findall(r'(.+?)\.',str(re.search('([^<>/\\\\|:""\\*\\?]+)\\.\\w+$',filepath).group()))).strip("['']").replace('_','-')
|
||||||
print("[!]Making Data for [" + number + "]")
|
print("[!]Making Data for [" + number + "]")
|
||||||
except:
|
except:
|
||||||
print("[-]failed!Please move the filename again!")
|
print("[-]failed!Please rename the filename again!")
|
||||||
moveFailedFolder()
|
moveFailedFolder()
|
||||||
else:
|
else:
|
||||||
number = argparse_get_file()[1]
|
number = argparse_get_file()[1]
|
||||||
CreatFailedFolder()
|
CreatFailedFolder()
|
||||||
getDataFromJSON(number) # 定义番号
|
getDataFromJSON(number) # 定义番号
|
||||||
creatFolder() # 创建文件夹
|
creatFolder() # 创建文件夹
|
||||||
|
if program_mode == '1':
|
||||||
imageDownload(filepath) # creatFoder会返回番号路径
|
imageDownload(filepath) # creatFoder会返回番号路径
|
||||||
PrintFiles(filepath) # 打印文件
|
PrintFiles(filepath) # 打印文件
|
||||||
cutImage() # 裁剪图
|
cutImage() # 裁剪图
|
||||||
pasteFileToFolder(filepath, path) # 移动文件
|
pasteFileToFolder(filepath, path) # 移动文件
|
||||||
moveJpgToBackdrop_copy()
|
renameJpgToBackdrop_copy()
|
||||||
|
elif program_mode == '2':
|
||||||
|
pasteFileToFolder_mode2(filepath, path) # 移动文件
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
import re
|
import re
|
||||||
from lxml import etree#need install
|
from lxml import etree#need install
|
||||||
import json
|
import json
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
import re
|
import re
|
||||||
import requests #need install
|
import requests #need install
|
||||||
from pyquery import PyQuery as pq#need install
|
from pyquery import PyQuery as pq#need install
|
||||||
@@ -90,7 +89,7 @@ def getTag(htmlcode): # 获取演员
|
|||||||
|
|
||||||
def main(number):
|
def main(number):
|
||||||
try:
|
try:
|
||||||
if re.search('\d+\D+', number).group() in number or 'siro' in number or 'SIRO' in number or 'Siro' in number:
|
if re.search('\d+\D+', number).group() in number:
|
||||||
js = siro.main(number)
|
js = siro.main(number)
|
||||||
return js
|
return js
|
||||||
except:
|
except:
|
||||||
|
|||||||
1
javdb.py
1
javdb.py
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
import re
|
import re
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
import json
|
import json
|
||||||
|
|||||||
1
siro.py
1
siro.py
@@ -1,4 +1,3 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
import re
|
import re
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
import json
|
import json
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.11.7",
|
"version": "0.11.9",
|
||||||
"version_show":"Beta 11.7",
|
"version_show":"Beta 11.9",
|
||||||
"download": "https://github.com/wenead99/AV_Data_Capture/releases"
|
"download": "https://github.com/wenead99/AV_Data_Capture/releases"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user