7 Commits
0.2.1 ... 0.3.1

Author SHA1 Message Date
wenead99
6817cd2093 0.3.1 Beta 修改无法导出nfo文件BUG 2019-05-29 08:42:28 +08:00
wenead99
bda0c5becd 0.3 Beta 更好的代码风格,便于阅读 2019-05-28 19:47:22 +08:00
wenead99
abcf1a49e7 0.3 Beta 新增删除空目录功能 2019-05-28 19:45:57 +08:00
wenead99
23de02486c Update README.md 2019-05-28 09:44:43 +08:00
wenead99
8046fa1ef6 Update README.md 2019-05-28 08:23:35 +08:00
wenead99
0a6af7c41b Update README.md 2019-05-28 08:23:12 +08:00
wenead99
08cdabb59d Update README.md 2019-05-28 08:19:06 +08:00
3 changed files with 106 additions and 98 deletions

View File

@@ -4,28 +4,21 @@ import time
def movie_lists(): def movie_lists():
#MP4 #MP4
a1 = glob.glob(os.getcwd() + r"\*\**\*.mp4")
a2 = glob.glob(os.getcwd() + r"\*.mp4") a2 = glob.glob(os.getcwd() + r"\*.mp4")
# AVI # AVI
b1 = glob.glob(os.getcwd() + r"\*\**\*.avi")
b2 = glob.glob(os.getcwd() + r"\*.avi") b2 = glob.glob(os.getcwd() + r"\*.avi")
# RMVB # RMVB
c1 = glob.glob(os.getcwd() + r"\*\**\*.rmvb")
c2 = glob.glob(os.getcwd() + r"\*.rmvb") c2 = glob.glob(os.getcwd() + r"\*.rmvb")
# WMV # WMV
d1 = glob.glob(os.getcwd() + r"\*\**\*.wmv")
d2 = glob.glob(os.getcwd() + r"\*.wmv") d2 = glob.glob(os.getcwd() + r"\*.wmv")
# MOV # MOV
e1 = glob.glob(os.getcwd() + r"\*\**\*.mov")
e2 = glob.glob(os.getcwd() + r"\*.mov") e2 = glob.glob(os.getcwd() + r"\*.mov")
# MKV # MKV
f1 = glob.glob(os.getcwd() + r"\*\**\*.mkv")
f2 = glob.glob(os.getcwd() + r"\*.mkv") f2 = glob.glob(os.getcwd() + r"\*.mkv")
# FLV # FLV
g1 = glob.glob(os.getcwd() + r"\*\**\*.flv")
g2 = glob.glob(os.getcwd() + r"\*.flv") g2 = glob.glob(os.getcwd() + r"\*.flv")
total = a1+a2+b1+b2+c1+c2+d1+d2+e1+e2+f1+f2+g1+g2 total = a2+b2+c2+d2+e2+f2+g2
return total return total
def lists_from_test(custom_nuber): def lists_from_test(custom_nuber):
@@ -33,7 +26,20 @@ def lists_from_test(custom_nuber):
a.append(custom_nuber) a.append(custom_nuber)
return a return a
os.chdir(os.getcwd()) def CEF(path):
for i in movie_lists(): files = os.listdir(path) # 获取路径下的子文件(夹)列表
os.system('python core.py'+' "'+i+'"') for file in files:
print("[+]All finished!!!") try: #试图删除空目录,非空目录删除会报错
os.removedirs(path + '/' + file) # 删除这个空文件夹
print('[+]Deleting empty folder',path + '/' + file)
except:
a=''
if __name__ =='__main__':
os.chdir(os.getcwd())
for i in movie_lists():
os.system('python core.py' + ' "' + i + '"')
print("[!]Cleaning empty folders")
CEF('JAV_output')
print("[+]All finished!!!")
time.sleep(3)

View File

@@ -6,19 +6,22 @@
为此综合上述软件特点我写出了本软件为了方便的管理本地AV和更好的手冲体验。没女朋友怎么办ʅ(‾◡◝)ʃ 为此综合上述软件特点我写出了本软件为了方便的管理本地AV和更好的手冲体验。没女朋友怎么办ʅ(‾◡◝)ʃ
**预计本周末适配DS Video暂时只支持Kodi**
**tg官方电报群:https://t.me/AV_Data_Capture_Official** **tg官方电报群:https://t.me/AV_Data_Capture_Official**
### **请认真阅读下面使用说明再使用** ### **请认真阅读下面使用说明再使用** * [如何使用](#如何使用)
![](readme/readme5.png) ![](readme/readme5.png)
## 软件流程图 (下下一个为使用教程) ## 软件流程图
![](readme/flow_chart2.png) ![](readme/flow_chart2.png)
## 如何使用 (使用前请认真阅读下文) ## 如何使用
**release的程序可脱离python环境运行可跳过第一步仅限windows平台)** ### **请认真阅读下面使用说明**
**下载地址(Windows):https://github.com/wenead99/AV_Data_Capture/releases** **release的程序可脱离python环境运行可跳过第一步仅限windows平台)**
**下载地址(Windows):https://github.com/wenead99/AV_Data_Capture/releases**
1. 请安装requests,pyquery,lxml,Beautifulsoup4,pillow模块,可在CMD逐条输入以下命令安装 1. 请安装requests,pyquery,lxml,Beautifulsoup4,pillow模块,可在CMD逐条输入以下命令安装
```python ```python
pip install requests pip install requests

161
core.py
View File

@@ -9,7 +9,8 @@ from bs4 import BeautifulSoup#need install
from PIL import Image#need install from PIL import Image#need install
import time import time
def get_html(url): #=====================爬虫核心部分==========================
def get_html(url):#网页请求核心
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'} headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'}
getweb = requests.get(str(url),proxies={"http": "http://127.0.0.1:2334","https": "https://127.0.0.1:2334"},timeout=5,headers=headers).text getweb = requests.get(str(url),proxies={"http": "http://127.0.0.1:2334","https": "https://127.0.0.1:2334"},timeout=5,headers=headers).text
try: try:
@@ -18,65 +19,64 @@ def get_html(url):
print(e) print(e)
except IOError as e1: except IOError as e1:
print(e1) print(e1)
#================================================
def getTitle(htmlcode): def getTitle(htmlcode): #获取标题
doc = pq(htmlcode) doc = pq(htmlcode)
title=str(doc('div.container h3').text()).replace(' ','-') title=str(doc('div.container h3').text()).replace(' ','-')
return title return title
def getStudio(htmlcode): def getStudio(htmlcode): #获取厂商
html = etree.fromstring(htmlcode,etree.HTMLParser()) html = etree.fromstring(htmlcode,etree.HTMLParser())
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[5]/a/text()')).strip(" ['']") result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[5]/a/text()')).strip(" ['']")
return result return result
def getYear(htmlcode): def getYear(htmlcode): #获取年份
html = etree.fromstring(htmlcode,etree.HTMLParser()) html = etree.fromstring(htmlcode,etree.HTMLParser())
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[2]/text()')).strip(" ['']") result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[2]/text()')).strip(" ['']")
result2 = str(re.search('\d{4}', result).group(0)) result2 = str(re.search('\d{4}', result).group(0))
return result2 return result2
def getCover(htmlcode): def getCover(htmlcode): #获取封面链接
doc = pq(htmlcode) doc = pq(htmlcode)
image = doc('a.bigImage') image = doc('a.bigImage')
return image.attr('href') return image.attr('href')
print(image.attr('href')) print(image.attr('href'))
def getRelease(htmlcode): def getRelease(htmlcode): #获取出版日期
html = etree.fromstring(htmlcode, etree.HTMLParser()) html = etree.fromstring(htmlcode, etree.HTMLParser())
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[2]/text()')).strip(" ['']") result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[2]/text()')).strip(" ['']")
return result return result
def getRuntime(htmlcode): def getRuntime(htmlcode): #获取分钟
soup = BeautifulSoup(htmlcode, 'lxml') soup = BeautifulSoup(htmlcode, 'lxml')
a = soup.find(text=re.compile('分鐘')) a = soup.find(text=re.compile('分鐘'))
return a return a
def getActor(htmlcode): def getActor(htmlcode): #获取女优
b=[] b=[]
soup=BeautifulSoup(htmlcode,'lxml') soup=BeautifulSoup(htmlcode,'lxml')
a=soup.find_all(attrs={'class':'star-name'}) a=soup.find_all(attrs={'class':'star-name'})
for i in a: for i in a:
b.append(i.text) b.append(i.text)
return ",".join(b) return ",".join(b)
def getNum(htmlcode): def getNum(htmlcode): #获取番号
html = etree.fromstring(htmlcode, etree.HTMLParser()) html = etree.fromstring(htmlcode, etree.HTMLParser())
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[1]/span[2]/text()')).strip(" ['']") result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[1]/span[2]/text()')).strip(" ['']")
return result return result
def getDirector(htmlcode): def getDirector(htmlcode): #获取导演
html = etree.fromstring(htmlcode, etree.HTMLParser()) html = etree.fromstring(htmlcode, etree.HTMLParser())
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[4]/a/text()')).strip(" ['']") result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[4]/a/text()')).strip(" ['']")
return result return result
def getOutline(htmlcode): def getOutline(htmlcode): #获取演员
doc = pq(htmlcode) doc = pq(htmlcode)
result = str(doc('tr td div.mg-b20.lh4 p.mg-b20').text()) result = str(doc('tr td div.mg-b20.lh4 p.mg-b20').text())
return result return result
#================================================ #=====================资源下载部分===========================
def DownloadFileWithFilename(url,filename,path): #path = examle:photo , video.in the Project Folder! def DownloadFileWithFilename(url,filename,path): #path = examle:photo , video.in the Project Folder!
import requests import requests
import re
try: try:
if not os.path.exists(path): if not os.path.exists(path):
os.makedirs(path) os.makedirs(path)
r = requests.get(url) r = requests.get(url)
with open(str(path) + "/"+str(filename), "wb") as code: with open(str(path) + "/"+str(filename), "wb") as code:
code.write(r.content) code.write(r.content)
# print('[+]Downloaded!',str(path) + "/"+str(filename))
except IOError as e: except IOError as e:
print("[-]Download Failed1!") print("[-]Download Failed1!")
print("[-]Error:"+str(e))
print("[-]Movie not found in Javbus.com!") print("[-]Movie not found in Javbus.com!")
print("[*]=====================================") print("[*]=====================================")
return "failed" return "failed"
@@ -85,8 +85,7 @@ def DownloadFileWithFilename(url,filename,path): #path = examle:photo , video.in
print("[-]Download Failed2!") print("[-]Download Failed2!")
time.sleep(3) time.sleep(3)
os._exit(0) os._exit(0)
def PrintFiles(html,path):
def PrintFiles(path):
try: try:
if not os.path.exists(path): if not os.path.exists(path):
os.makedirs(path) os.makedirs(path)
@@ -97,8 +96,8 @@ def PrintFiles(path):
print(" </set>", file=code) print(" </set>", file=code)
print(" <studio>" + getStudio(html) + "+</studio>", file=code) print(" <studio>" + getStudio(html) + "+</studio>", file=code)
print(" <year>" + getYear(html) + "</year>", file=code) print(" <year>" + getYear(html) + "</year>", file=code)
print(" <outline>"+getOutline(html_outline)+"</outline>", file=code) print(" <outline>"+getOutline(html)+"</outline>", file=code)
print(" <plot>"+getOutline(html_outline)+"</plot>", file=code) print(" <plot>"+getOutline(html)+"</plot>", file=code)
print(" <runtime>"+str(getRuntime(html)).replace(" ","")+"</runtime>", file=code) print(" <runtime>"+str(getRuntime(html)).replace(" ","")+"</runtime>", file=code)
print(" <director>" + getDirector(html) + "</director>", file=code) print(" <director>" + getDirector(html) + "</director>", file=code)
print(" <poster>" + getNum(html) + ".png</poster>", file=code) print(" <poster>" + getNum(html) + ".png</poster>", file=code)
@@ -122,81 +121,81 @@ def PrintFiles(path):
except Exception as e1: except Exception as e1:
print(e1) print(e1)
print("[-]Write Failed!") print("[-]Write Failed!")
#================================================
if __name__ == '__main__': #=====================本地文件处理===========================
#命令行处理
def argparse_get_file():
import argparse import argparse
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument("file", help="Write the file path on here") parser.add_argument("file", help="Write the file path on here")
args = parser.parse_args() args = parser.parse_args()
#=============================== return args.file
#获取文件名称 def getNumberFromFilename(filepath):
filename=str(os.path.basename(args.file)) #\[\d{4}(\-|\/|.)\d{1,2}\1\d{1,2}\] filename = str(os.path.basename(filepath)) #电影文件名
#去除文件名中日期 str(re.sub("\[\d{4}-\d{1,2}-\d{1,2}\] - ", "", filename))
deldate=str(re.sub("\[\d{4}-\d{1,2}-\d{1,2}\] - ","",filename))
#检测是否可以获取番号,如果不行终止本程序 print("[!]Making Data for ["+filename+"]")
def number_getter(): try:
print("[!]Making Data for ["+filename+"]") a = str(re.search('\w+-\w+', filename).group())
try: return a
a = str(re.search('\w+-\w+', deldate).group()) except:
return a print('[-]File '+filename+'`s number can not be caught')
except: print('[-]Move ' + filename + 'to failed folder')
print('[-]File '+filename+'`s number can not be caught') if not os.path.exists('failed/'): # 新建failed文件夹
print('[-]Move ' + filename + 'to failed folder') os.makedirs('failed/')
filepath = str(args).replace("Namespace(file='", '').replace("')", '').replace('\\\\', '\\') if not os.path.exists('failed/'):
if not os.path.exists('failed/'): # 新建failed文件夹 print("[-]failed!Dirs can not be make (Please run as Administrator)")
os.makedirs('failed/') time.sleep(3)
if not os.path.exists('failed/'): os._exit(0)
print("[-]failed!Dirs can not be make (Please run as Administrator)") shutil.move(filepath, str(os.getcwd())+'/'+'failed/')
time.sleep(3) os._exit(0)
os._exit(0) def get_html_javbus(number):
shutil.move(filepath, str(os.getcwd())+'/failed/') return get_html("https://www.javbus.com/" + str(number))
os._exit(0) def get_html_dww(number):
number=number_getter() return get_html("https://www.dmm.co.jp/mono/dvd/-/detail/=/cid=" + number.replace("-", ''))
#print(number) path = '' #设置path为全局变量后面移动文件要用
#获取网页HTML def creatFolder(html,number):
html = get_html("https://www.javbus.com/"+str(number)) global path
html_outline=get_html("https://www.dmm.co.jp/mono/dvd/-/detail/=/cid="+number.replace("-",''))
#处理超长文件夹名称
if len(getActor(html)) > 240:
path = 'JAV_output' + '/' + '超多人' + '/' + getNum(html) #path为影片+元数据所在目录
else:
path = 'JAV_output' + '/' + getActor(html) + '/' + getNum(html)
if not os.path.exists(path):
os.makedirs(path)
#文件路径处理
filepath = str(args).replace("Namespace(file='",'').replace("')",'').replace('\\\\', '\\')
houzhui = str(re.search('[.](AVI|RMVB|WMV|MOV|MP4|MKV|FLV|avi|rmvb|wmv|mov|mp4|mkv|flv)$',filepath).group())
#下载元数据
#如果DownloadFileWithFilename返回为failed就退出本程序
if not os.path.exists('failed/'): #新建failed文件夹 if not os.path.exists('failed/'): #新建failed文件夹
os.makedirs('failed/') os.makedirs('failed/')
if not os.path.exists('failed/'): if not os.path.exists('failed/'):
print("[-]failed!Dirs can not be make (Please run as Administrator)") print("[-]failed!Dirs can not be make (Please run as Administrator)")
os._exit(0) os._exit(0)
if DownloadFileWithFilename(getCover(html), getNum(html) + '.jpg', path) == 'failed': if len(getActor(html)) > 240: #新建成功输出文件夹
shutil.move(filepath, 'failed/') path = 'JAV_output' + '/' + '超多人' + '/' + number #path为影片+元数据所在目录
time.sleep(3)
os._exit(0)
else: else:
if DownloadFileWithFilename(getCover(html), getNum(html) + '.jpg', path) == 'failed': path = 'JAV_output' + '/' + getActor(html) + '/' + number
shutil.move(filepath, 'failed/') if not os.path.exists(path):
os._exit(0) os.makedirs(path)
DownloadFileWithFilename(getCover(html), getNum(html) + '.jpg', path) path = str(os.getcwd())+'/'+path
print('[+]Downloaded!', path +'/'+getNum(html)+'.jpg') def imageDownload(htmlcode,filepath,number): #封面是否下载成功否则移动到failed
#切割图片做封面 if DownloadFileWithFilename(getCover(htmlcode),number + '.jpg', path) == 'failed':
shutil.move(filepath, 'failed/')
os._exit(0)
DownloadFileWithFilename(getCover(htmlcode), number + '.jpg', path)
print('[+]Image Downloaded!', path +'/'+number+'.jpg')
def cutImage(number):
try: try:
img = Image.open(path + '/' + getNum(html) + '.jpg') img = Image.open(path + '/' + number + '.jpg')
img2 = img.crop((421, 0, 800, 538)) imgSize=img.size
img2.save(path + '/' + getNum(html) + '.png') w=img.width
h=img.height
img2 = img.crop((w/1.9, 0, w, h))
img2.save(path + '/' + number + '.png')
except: except:
print('[-]Cover cut failed!') print('[-]Cover cut failed!')
# 电源文件位置处理 def pasteFileToFolder(filepath, number, path): #文件路径,番号,后缀,要移动至的位置
houzhui = str(re.search('[.](AVI|RMVB|WMV|MOV|MP4|MKV|FLV|avi|rmvb|wmv|mov|mp4|mkv|flv)$', filepath).group())
os.rename(filepath, number + houzhui) os.rename(filepath, number + houzhui)
shutil.move(number + houzhui, path) shutil.move(number + houzhui, path)
#下载元数据
PrintFiles(path) if __name__ == '__main__':
print('[!]Finished!') filepath=argparse_get_file() #影片的路径
time.sleep(3) number=getNumberFromFilename(filepath) #定义番号
htmlcode=get_html_javbus(number) #获取的HTML代码
creatFolder(htmlcode,number) #创建文件夹
imageDownload(htmlcode,filepath,number) #creatFoder会返回番号路径
PrintFiles(htmlcode, path)#打印文件
cutImage(number) #裁剪图
pasteFileToFolder(filepath,number,path) #移动文件