소스 검색

Major changes

* Blocked discovery
* Blocked submitdiscovery
* removed panic mechanism
halt-discovery
madprogramer 3 년 전
부모
커밋
e9f64f5e18
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +10
    -1
      worker.py

+ 10
- 1
worker.py 파일 보기

@@ -100,6 +100,8 @@ class GracefulKiller:

gkiller = GracefulKiller()

#REMOVED PANIC MECHANISM!
"""
enres = getmetadata(mysession, "IjJKfe-0Ty0", True)[0]
if not enres:
print("Community Contribution discovery has been disabled for this account, please report this on our Discord as this may have caused some videos to be incorrectly marked as having community contributions disabled.")
@@ -107,6 +109,7 @@ if not enres:
gkiller.kill_now = True #exit the script

del enres
"""

#microtasks
def threadrunner():
@@ -118,8 +121,11 @@ def threadrunner():
if not jobs.empty():
task, vid, args = jobs.get()
if task == "submitdiscovery":
tracker.add_item_to_tracker(args, vid)
#tracker.add_item_to_tracker(args, vid)
#jobs.put(("complete", None, "video:"+vid))
pass
elif task == "discovery":
"""
while True:
try:
info = getmetadata(mysession, str(vid).strip())
@@ -154,6 +160,9 @@ def threadrunner():
jobs.put(("submitdiscovery", mixdisc, tracker.ItemType.MixPlaylist))
for playldisc in info[5]:
jobs.put(("submitdiscovery", playldisc, tracker.ItemType.Playlist))
"""
jobs.put(("complete", None, "video:"+vid))
pass

elif task == "subtitles":
subprrun(mysession, args, vid, "default", needforcemetadata, needforcecaptions)


불러오는 중...
취소
저장