-
Notifications
You must be signed in to change notification settings - Fork 0
/
ani24download.py
692 lines (605 loc) · 30.9 KB
/
ani24download.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
import sys
from builtins import print
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
from PyQt5 import uic
from selenium import webdriver
import time
import requests
import math
import re
import os
from datetime import datetime
from bs4 import BeautifulSoup #BeautifulSoup import
form_class = uic.loadUiType("ani24download.ui")[0]
class AniDownThread(QThread):
# 메인 애니 페이지에서 가져옴
ani_list_url_array = None
ani_list_name_array = None
# 1 메인페이지 애니 전부 다운, 2 해당 애니만 다운
down_mode = 1
# 해당 애니만 다운로드 할 때, 해당 애니의 id를 전달받음
ani_id = ""
download_info_signal = pyqtSignal(str)
download_progress_signal = pyqtSignal(int)
download_server_signal = pyqtSignal(str)
download_speed_signal = pyqtSignal(str)
download_capacity_signal = pyqtSignal(str)
download_remain_time_signal = pyqtSignal(str)
download_exit_set_signal = pyqtSignal()
def __init__(self, mode=1, ani_id=""):
super(AniDownThread, self).__init__()
self.down_mode = mode
if self.down_mode == 2:
self.ani_id = ani_id
def run(self):
while True:
self.ani_list_url_array = []
self.ani_list_name_array = []
# 메인페이지 애니 다운로드
if self.down_mode == 1:
self.ani_list_down()
# 배열에 담긴 애니 다운로드
self.ani_story_down()
# 해당 애니만 다운로드
elif self.down_mode == 2:
# 애니24주소를 가져옴
f = open('./files/ani24url.txt', 'r')
ani24url = f.readline()
f.close()
# 해당 애니 id를 가지고 해당 애니 페이지 url 생성
ani_id_url = ani24url + "ani_list/" + self.ani_id + ".html"
print(ani_id_url)
self.ani_list_url_array.append(ani_id_url)
self.ani_list_name_array.append(self.ani_id)
# 배열에 담긴 애니 다운로드
self.ani_story_down()
# 버튼, 정보창 다시 보이게 하기
self.download_exit_set_signal.emit()
break
# 애니24에 있는 메인페이지 애니 리스트를 가져와서 배열에 저장
def ani_list_down(self):
# 애니24주소를 가져옴
f = open('./files/ani24url.txt', 'r')
ani24url = f.readline()
f.close()
# 다운 받지 않을 애니를 가져옴
ani_no_down_array = []
f = open('./files/aniNoDown.txt', 'r+')
while True:
line = f.readline()
if not line:
break
ani_no_down_array.append(line)
f.close()
# 애니24접속
self.download_info_signal.emit(ani24url + " 페이지 기다리는 중")
driver = ""
try:
driver = self.driver_set()
driver.get(ani24url)
# 월~일 완결 애니 주소 가져옴
day_index = 1
while day_index <= 8:
today = ""
if day_index == 1:
today = "월요일"
elif day_index == 2:
today = "화요일"
elif day_index == 3:
today = "수요일"
elif day_index == 4:
today = "목요일"
elif day_index == 5:
today = "금요일"
elif day_index == 6:
today = "토요일"
elif day_index == 7:
today = "일요일"
elif day_index == 8:
today = "완결"
# 해당 요일에 애니 몇개 들어있는지 가져옴
ani_list = driver.find_element_by_xpath("/html/body/div[6]/div[2]/div[" + str(day_index) + "]")
ani_list = ani_list.find_elements_by_tag_name("a")
for idx, ani in enumerate(ani_list):
ani_name = str(ani.find_element_by_class_name("image").get_attribute("title"))
# 현재 애니가 노다운 애니면 다운 받지 않도록 함
no_down = False
for ani_no_down in ani_no_down_array:
if ani_name in ani_no_down:
no_down = True
break
if no_down is True:
print(ani_name + " 노다운")
continue
# 노다운 애니 아니면 애니 주소를 배열에 저장
self.ani_list_url_array.append(ani.get_attribute("href"))
self.ani_list_name_array.append(ani.find_element_by_class_name("subject").get_attribute("title"))
self.download_info_signal.emit(today + " 애니 가져오는 중 " + str(idx + 1) + "/" + str(len(ani_list)))
self.download_progress_signal.emit(math.ceil(idx / len(ani_list) * 100))
self.download_progress_signal.emit(100)
self.download_progress_signal.emit(-1)
# 다음 요일 애니로 가기 위함
day_index += 1
self.download_info_signal.emit("애니 목록 가져오기 완료")
except Exception as err:
print("애니24 접속 에러: " + str(err))
driver.close()
# 해당 애니의 페이지로 들어가서 애니의 id 번호를 배열에 저장
def ani_story_down(self):
# 배열에 저장된 메인 페이지의 전체 애니에 대해 한번씩 들어감
for idx, url in enumerate(self.ani_list_url_array):
# 해당 애니 리스트 페이지 접속
self.download_info_signal.emit("(" + str(len(self.ani_list_url_array)) + "편 중 " + str(idx + 1) + "번째) " +
self.ani_list_name_array[idx] + " 페이지 기다리는 중")
ani_story_id_array = []
ani_story_name_array = []
ani_date = ""
ani_story = []
ani_name = ""
try:
# 1화부터 끝화까지 id를 검색해 배열에 저장함
response = requests.get(url)
html = response.text
soup = BeautifulSoup(html, 'html.parser')
ani_story = []
ani_story_name_array = []
li = soup.find_all('a', href=True)
for a in li:
children = a['href']
if 'ani_view' in children:
print(a)
ani_story.append(a['href'])
ani_story_name_array.append(a.find('div', {'class' : 'subject'}).text)
ani_name = soup.find("h1", {"class": "ani_info_title_font_box"}).text
ani_name = str(ani_name).strip()
# 애니 방영일 추출
try:
ani_date = soup.select("div.ani_info_right_box > div:nth-child(12) > span.block_right")[0].text
except:
# 일반적인 애니 방영일 추출이 불가능하다면 1화의 등록일을 추출
ani_dates = soup.find_all("div", {"class": "date"})
ani_dates.reverse()
ani_date = ani_dates[0].text
ani_story.reverse() # 마지막화 부터 담겨져 있어서 뒤집음
ani_story_name_array.reverse() # 마지막화 부터 담겨져 있어서 뒤집음
except Exception as err:
print("애니 에피소드 주소 추출 에러: " + str(err))
# 애니 출시일자를 저장폴더이름으로 사용하기 위해 가공
ani_date_year = ani_date[0:4] + "년도"
ani_date_month = int(ani_date[5:7])
if ani_date_month <= 3:
ani_date_quarter = 1
elif ani_date_month <= 6:
ani_date_quarter = 2
elif ani_date_month <= 9:
ani_date_quarter = 3
else:
ani_date_quarter = 4
ani_date_quarter = str(ani_date_quarter) + "분기"
ani_name_folder = ani_date_year
ani_name_folder2 = ani_date_quarter
try:
# driver 연동된 배열을 물리적배열에 변환시킴 (driver.close()가 되어도 되게끔)
for idx2, ani in enumerate(ani_story):
# 애니 id 추출
print(ani)
regex = re.compile('[0-9]{3,5}')
ani_id = regex.search(ani).group()
if ani_id is None:
print("id 추출 실패")
continue
ani_story_id_array.append(ani_id)
except Exception as err:
print("애니 리스트 추출 에러: " + str(err))
return
# 배열에 저장된 애니를 다운 받음
for idx2, ani_id in enumerate(ani_story_id_array):
current_episode = idx2 + 1
# 애니아이디, 분기, 애니이름, 애니이름 (몇화 포함), 전체 몇화, 지금 몇화, 전체 몇편, 지금 몇편
self.ani_down(ani_id, ani_name_folder, ani_name_folder2, ani_name, ani_story_name_array[idx2],
len(ani_story_id_array), current_episode,
len(self.ani_list_url_array), idx + 1)
# res = requests.head(url='http://goiyel.com/abab/id_39525.mp4')
# print(res.headers['Content-Length'])
# id를 가지고 여러개의 다운로드 서버에 접속하여 다운로드
def ani_down(self, m_ani_id, m_ani_name_folder, m_ani_name_folder2, m_ani_name_folder3, m_ani_name,
m_all_episode, m_current_episode,
m_ani_all_all_count, m_ani_all_all_count2, re_start=False):
# 제목에 물음표 잇으면 지움
m_ani_name_folder3 = m_ani_name_folder3.replace("?", "")
m_ani_name = m_ani_name.replace("?", "")
# 저장 경로 지정
f = open('./files/aniSavePath.txt', 'r')
m_dir = f.readline()
f.close()
# 저장 될 파일 이름
m_save = m_ani_name + ".mp4"
# 현재 몇편 중 몇번째인지
m_all_progress = "(" + str(m_ani_all_all_count) + "편 중 " + str(m_ani_all_all_count2) + "편, " + \
str(m_all_episode) + "화 중 " + str(m_current_episode) + "화)"
# res = requests.head(url=url)
# print(res.headers)
# print(res.status_code)
# 다운로드 시도 로그 작성
# self.down_log(m_dir, m_ani_name, 3)
# 다운로드 서버 목록 불러와서 배열에 저장
server_list_array = []
f = open('./files/aniDownServers.txt', 'r+')
while True:
line = f.readline()
if not line:
break
if len(line) > 5:
line = line.replace("\n", "")
server_list_array.append(line)
f.close()
# 다운로드 됐나 안됏나 확인
downloaded = False
# 배열에 저장된 서버 목록을 가지고 다운로드 시도
for idx, value in enumerate(server_list_array):
url = str(value) + "id_" + str(m_ani_id) + ".mp4"
print(url)
server_name = str(idx + 1) + "서버"
self.download_server_signal.emit(server_name)
self.download_info_signal.emit(m_all_progress + " " + m_ani_name + " 다운로드 시도 중")
print(server_name + " " + m_ani_name + " 다운로드 시도 중")
try:
headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'}
res = requests.head(url=url, verify=False, allow_redirects=True, headers=headers)
print(res.url)
try:
total_size = int(res.headers.get('content-length'))
except:
print(server_name + "에는 파일이 존재하지 않음")
break
# 파일 용량 10메가 이상만 받음
if total_size < 10240000:
continue
# 폴더 생성
save_path = m_dir + "/" + m_ani_name_folder + "/" + m_ani_name_folder2 + "/" + m_ani_name_folder3.replace(
"?", "")
if not os.path.exists(save_path):
os.makedirs(save_path)
# 다운 받을 애니 이미 저장 돼 있는지 확인
try:
saved_ani_size = os.path.getsize(save_path + "/" + m_save)
if saved_ani_size == total_size:
self.download_info_signal.emit(m_all_progress + " (" + server_name + ") " + m_ani_name +
" 이미 다운 받음")
downloaded = True
print(m_ani_name + " 이미 존재함")
break
except os.error:
print(m_ani_name + " 존재하지 않음")
# 파일 저장
with open(save_path + "/" + m_save, "wb") as f:
host = url.replace("https://", "")
host_find_index = host.find("com") + 3
host = host[:host_find_index]
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',
'Referer': res.url,
'Sec-Fetch-Dest': 'video',
'Sec-Fetch-Mode': 'no-cors',
'Sec-Fetch-Site': 'same-origin',
'Connection': 'keep-alive',
'Host': host}
cookies = {
'good': '1',
'_ga': 'GA1.2.121164403.1589034084',
'_gid': 'GA1.2.646478837.1589034084',
'_gat': '1'}
session = requests.Session()
r = session.get(url=res.url, stream=True, verify=False, allow_redirects=True, headers=headers, cookies=cookies)
current_size = 0
last_time = 0
last_size = 0
speed = 0
if r.status_code == 200:
total_size = int(r.headers.get('content-length'))
self.download_info_signal.emit(m_all_progress + " " + m_ani_name + " 다운로드 중")
for chunk in r.iter_content(1024):
# 파일 덧 붙여서 저장 중
f.write(chunk)
# 현재 파일 사이즈
current_size += len(chunk)
# 1초 마다 정보 변경
current_time = time.perf_counter()
if last_time + 1 <= current_time:
# 프로그래스 바 변경
down_percent = math.floor(current_size / total_size * 100)
self.download_progress_signal.emit(down_percent)
# 다운 속도 구함
time_interval = current_time - last_time
speed = round((current_size / 1024 - last_size / 1024) / time_interval)
last_size = current_size
last_time = time.perf_counter()
# 속도
self.download_speed_signal.emit(str(speed) + " Kb/s")
# 전체 크기 / 현재 크기
total_size_str = str(round(total_size / 1024 / 1024, 1)) + "MB"
current_size_str = str(round(current_size / 1024 / 1024, 1)) + "MB"
self.download_capacity_signal.emit(total_size_str + " 중 " + current_size_str)
# 남은 시간
if speed > 0:
remain_time = math.ceil(((total_size / 1024) - (current_size / 1024)) / speed)
remain_hour = math.floor(remain_time / 60 / 60)
remain_min = math.floor((remain_time / 60) % 60)
remain_sec = math.floor(remain_time % 60)
if remain_hour != 0:
remain_time_str = str(remain_hour) + "시간 " + str(remain_min) + "분 " + \
str(remain_sec) + "초 남음"
elif remain_min != 0:
remain_time_str = str(remain_min) + "분 " + str(remain_sec) + "초 남음"
else:
remain_time_str = str(remain_sec) + "초 남음"
else:
remain_time_str = "알 수 없음"
self.download_remain_time_signal.emit(remain_time_str)
# 다운로드 다 했으니 다운로드 시도 빠져나옴
# downloaded = True
# self.download_info_signal.emit(m_ani_name + " 다운로드 완료")
self.download_progress_signal.emit(-1)
self.download_server_signal.emit("비활성")
self.download_speed_signal.emit("비활성")
self.download_capacity_signal.emit("비활성")
self.download_remain_time_signal.emit("비활성")
# # avs 파일 작성
# # self.create_avs(m_dir, m_ani_name_folder, m_ani_name_folder2, m_ani_name_folder3, m_ani_name)
# # 완료 로그 작성
# self.down_log(m_dir, m_ani_name, 1, m_ani_name_folder, m_ani_name_folder2)
# # 완료 print 로그 작성
# print(m_ani_name + " 다운로드 완료 (" + m_ani_name_folder + " " + m_ani_name_folder2 + ")")
break
except Exception as err:
print(err)
# 다운로드 실패시 다운서버 목록 추가하고, 한번만 더 애니 다운 시도함
self.download_server_signal.emit("비활성")
if downloaded is False:
if re_start is False:
print(m_ani_name + " 다운 안됨, 서버목록 추가 후 재시도")
if self.ani_down_re(m_ani_id):
self.ani_down(m_ani_id, m_ani_name_folder, m_ani_name_folder2, m_ani_name_folder3, m_ani_name,
m_all_episode, m_current_episode,
m_ani_all_all_count, m_ani_all_all_count2, False)
else:
# 다운로드 실패 로그 작성
self.down_log(m_dir, m_ani_name, 2)
# 다운로드 재시도 했는데도 실패면 로그 작성
elif re_start is True:
print(m_ani_name + " 다운 안됨")
self.down_log(m_dir, m_ani_name, 2)
# 애니가 다운이 안됐을떄, 다운서버 주소 추가하고 성공, 실패 리턴함
def ani_down_re(self, _m_ani_id):
try:
# 애니24주소를 가져옴
f = open('./files/ani24url.txt', 'r')
ani24url = f.readline()
f.close()
# 다운서버 주소 추출 미가공된 상태
url = "https://fileiframe.com/ani_video4/"+_m_ani_id+".html?player="
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',
'referer': 'https://'+ani24url+'/ani_view/'+_m_ani_id+'.html'}
cookies = {'player': 'video_player', 'PHPSESSID': 'vm2tn0m79csnl6fqvf10d8e0h7'}
response = requests.get(url=url, headers=headers, cookies=cookies)
html = response.text
soup = BeautifulSoup(html, 'html.parser')
try:
server_url = soup.find("button", {"class": "link_video"})['data-link']
except:
server_url = soup.find('source')['src']
# 다운서버 주소 가공
server_url = server_url.replace("id_" + _m_ani_id + ".mp4", "")
if len(server_url) > 5:
# 다운서버 주소 추가
f = open('./files/aniDownServers.txt', 'w')
f.write(server_url)
f.close()
return True
except Exception as err:
print(err)
return False
# 다운 완료시 로그 작성
def down_log(self, m_dir, m_ani_name, mode=1, m_ani_name_folder="", m_ani_name_folder2=""):
# 로그 폴더 없으면 생성
if not os.path.exists(m_dir + "/" + "log"):
os.makedirs(m_dir + "/" + "log")
# 현재 날짜 추출
now = datetime.now()
log_time = "%04d%02d%02d" % (now.year, now.month, now.day)
# 다운로드 완료 로그 생성
if mode == 1:
f = open(m_dir + "/" + "log" + "/" + log_time + " down.txt", 'a')
now_str = '[%04d-%02d-%02d %02d:%02d:%02d]' % (now.year, now.month, now.day, now.hour,
now.minute, now.second)
if len(m_ani_name_folder) > 0 and len(m_ani_name_folder2) > 0:
f.write(now_str + " " + m_ani_name + " (다운로드 완료) (" + m_ani_name_folder +
", " + m_ani_name_folder2 + ")\n")
else:
f.write(now_str + " " + m_ani_name + " (다운로드 완료)\n")
f.close()
# 다운로드 실패 로그
elif mode == 2:
f = open(m_dir + "/" + "log" + "/" + log_time + " error.txt", 'a')
now_str = '[%04d-%02d-%02d %02d:%02d:%02d]' % (now.year, now.month, now.day, now.hour,
now.minute, now.second)
f.write(now_str + " " + m_ani_name + " (다운로드 실패)\n")
f.close()
elif mode == 3:
f = open(m_dir + "/" + "log" + "/" + log_time + " log.txt", 'a')
now_str = '[%04d-%02d-%02d %02d:%02d:%02d]' % (now.year, now.month, now.day, now.hour,
now.minute, now.second)
f.write(now_str + " " + m_ani_name + " (다운로드 시도)\n")
f.close()
# 방금 다운 받은 애니 AVS 파일 만듬
def create_avs(self, m_dir, m_folder, m_folder2, m_folder3, m_ani_name):
m_path = m_dir + "/" + m_folder + "/" + m_folder2 + "/" + m_folder3
# m_ani_name_avs = "(24FPS) " + m_ani_name
m_ani_name_avs = "" + m_ani_name
if os.path.isfile(m_path + "/" + m_ani_name_avs + ".avs"):
os.remove(m_path + "/" + m_ani_name_avs + ".avs")
f = open(m_path + "/" + m_ani_name_avs + ".avs", 'a')
f.write(
"DirectShowSource(\".\\" + m_ani_name + ".mp4\", convertfps=true)\nChangeFPS(24)\nConvertToYV12()")
f.close()
return
def driver_set(self):
option = webdriver.ChromeOptions()
# option.add_argument('--headless')
option.add_argument('--disable-infobars')
option.add_argument('--window-size=100x100')
option.add_argument('--disable-gpu')
extensions_option = "--load-extension=" + os.getcwd() + "/files/Extensions/adBlock/3.6.3_0,"
option.add_argument(extensions_option)
# 비활성 상태에서는 적용도 안되고 실행도 안됨 망할
chrome_prefs = {}
option.experimental_options["prefs"] = chrome_prefs
chrome_prefs["profile.default_content_settings"] = {"images": 2}
chrome_prefs["profile.managed_default_content_settings"] = {"images": 2}
option.add_argument('--user-data-dir=' + os.getcwd() + '/files/dataDir')
driver = webdriver.Chrome('./driver/chromedriver', options=option)
driver.set_window_size(700, 1000)
return driver
class WindowClass(QMainWindow, form_class):
def __init__(self):
super().__init__()
self.setupUi(self)
self.setFixedSize(462, 161)
self.ani_down_thread = None
# 정보창 숨김
self.aniProgressBar.hide()
self.aniServer.hide()
self.aniSpeed.hide()
self.aniCapacity.hide()
self.aniRemainTime.hide()
# 버튼 이랑 함수랑 연결
self.startAniIdBtn.clicked.connect(self.btn_start_ani_id)
# 애니 메인페이지 전부 다운로드
def btn_start(self):
# 애니 다운로드 하는 쓰레드 실행
self.q_start(1)
# 해당 애니만 다운로드
def btn_start_ani_id(self):
ani_id = self.aniIdInput.text()
if len(ani_id) > 0:
if self.is_number(ani_id):
# 애니 다운로드 하는 쓰레드 실행
self.q_start(2, ani_id)
else:
self.aniIdInput.setFocus()
self.set_info_value("애니 id를 숫자로 입력해주세요.")
else:
self.aniIdInput.setFocus()
self.set_info_value("애니 id를 입력해주세요.")
def is_number(self, s):
try:
float(s)
return True
except ValueError:
return False
# 시작 버튼 눌렀을때 Q 쓰레드 기본 셋팅
def q_start(self, mode=1, ani_id=""):
# Q 쓰레드 지정 (mode 1이면 메인페이지 전체 다운로드, 2이면 해당 애니 id만 다운로드함
self.ani_down_thread = AniDownThread(mode, ani_id)
# Q 쓰레드랑 정보창이랑 연결 시킴
self.ani_down_thread.download_info_signal.connect(self.set_info_value)
self.ani_down_thread.download_progress_signal.connect(self.set_progressbar_value)
self.ani_down_thread.download_server_signal.connect(self.set_server_value)
self.ani_down_thread.download_speed_signal.connect(self.set_speed_value)
self.ani_down_thread.download_capacity_signal.connect(self.set_capacity_value)
self.ani_down_thread.download_remain_time_signal.connect(self.set_remain_value)
self.ani_down_thread.download_exit_set_signal.connect(self.q_exit_set)
# 시작 버튼 숨기기
self.startAniIdBtn.hide()
# 정보창 감추기 또는 비활성화
if mode == 1:
self.aniIdInfo.hide()
self.aniIdInput.hide()
elif mode == 2:
self.aniIdInfo.setEnabled(False)
self.aniIdInput.setEnabled(False)
# Q 쓰레드 실행
self.ani_down_thread.start()
# 다운로드 끝나면 다시 버튼, 정보창 살아나게 함
def q_exit_set(self):
self.startAniIdBtn.show()
self.aniIdInfo.setEnabled(True)
self.aniIdInput.setEnabled(True)
self.set_info_value("시작 버튼을 눌러주세요.")
# 애니 노다운 txt 열게 해줌
def ani_no_down_set(self):
os.popen(os.getcwd() + "/files/aniNoDown.txt")
# avs 초기화 버튼 누르면 avs 파일 경로 초기화
def avs_reset(self):
# 저장 경로 지정
f = open('./files/aniSavePath.txt', 'r')
m_path = f.readline()
f.close()
# 해당 경로의 avs 파일 다 지움
for (path, dir, files) in os.walk(m_path):
for filename in files:
file_name = os.path.splitext(filename)[0]
ext = os.path.splitext(filename)[1]
if ext == '.avs':
if os.path.isfile(path + "/" + file_name + ".avs"):
os.remove(path + "/" + file_name + ".avs")
print(path + "/" + file_name)
# 실제로 있는 애니의 avs만을 작성
for (path, dir, files) in os.walk(m_path):
for filename in files:
file_name = os.path.splitext(filename)[0]
ext = os.path.splitext(filename)[1]
if ext == '.mp4':
file_name2 = "(24FPS) " + file_name
f = open(path + "/" + file_name2 + ".avs", 'a')
f.write(
"DirectShowSource(\".\\" + file_name + ".mp4\", convertfps=true)\nChangeFPS(24)\nConvertToYV12()")
f.close()
self.set_info_value("avs 초기화 완료!")
def set_info_value(self, value):
if value == "비활성":
self.aniInfo.hide()
else:
self.aniInfo.setText(value)
self.aniInfo.show()
def set_progressbar_value(self, value):
if value == -1:
self.aniProgressBar.hide()
else:
self.aniProgressBar.setValue(value)
self.aniProgressBar.show()
def set_server_value(self, value):
if value == "비활성":
self.aniServer.hide()
else:
self.aniServer.setText(value)
self.aniServer.show()
def set_speed_value(self, value):
if value == "비활성":
self.aniSpeed.hide()
else:
self.aniSpeed.setText(value)
self.aniSpeed.show()
def set_capacity_value(self, value):
if value == "비활성":
self.aniCapacity.hide()
else:
self.aniCapacity.setText(value)
self.aniCapacity.show()
def set_remain_value(self, value):
if value == "비활성":
self.aniRemainTime.hide()
else:
self.aniRemainTime.setText(value)
self.aniRemainTime.show()
# 창 닫히면 쓰레드도 같이 꺼짐
def closeEvent(self, *args, **kwargs):
if self.ani_down_thread is not None:
self.ani_down_thread.terminate()
if __name__ == "__main__":
app = QApplication(sys.argv)
myWindow = WindowClass()
myWindow.show()
app.exec_()