-
Notifications
You must be signed in to change notification settings - Fork 191
/
study163_dl.py
224 lines (184 loc) · 8.58 KB
/
study163_dl.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
# -*- coding: utf-8 -*-
from __future__ import print_function
import re
import os
import sys
import requests
import time
from utils import mkdir_p, parse_args, clean_filename, DownloadProgress, download_file
def download_syllabus_study163(session, syllabus, path = '', overwrite = False):
headers = {
'Accept':'*/*',
'Accept-Encoding':'gzip, deflate, sdch',
'Accept-Language':'zh-CN,zh;q=0.8,en;q=0.6,zh-TW;q=0.4',
'Connection':'keep-alive',
'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',
}
get_token_url = 'http://study.163.com/video/getVideoAuthorityToken.htm'
session.headers.update(headers);
course_id = syllabus[0]
course = syllabus[1]
retry_list = []
for (chapter_num,(chapter, lessons)) in enumerate(course):
chapter_name = clean_filename(chapter)
dir = os.path.join(path, ('%02d %s'% (chapter_num+1, chapter_name)))
if not os.path.exists(dir):
mkdir_p(dir)
for (lesson_num,(lesson_url, lesson_name)) in enumerate(lessons):
fmt = lesson_url.split('.')[-1]
lesson_name = clean_filename(lesson_name.decode('raw_unicode_escape'))
filename = os.path.join(dir, '%02d_%s.%s' %(lesson_num+1, lesson_name, fmt))
print(filename)
if overwrite or not os.path.exists(filename):
try:
r = session.get(get_token_url)
video_url_suffix = '88C752A6C3513A0A5EEFA4CD7091A96E365D0185B8133CC883910200B043BC0F57E3024A35D1C582757D905A6B9289E9f4eej632de59'\
+ r.content
video_url = lesson_url + '?key=' + video_url_suffix
download_file(session, video_url, filename )
except Exception as e:
print(e)
print('Error, add it to retry list')
retry_list.append((lesson_url, filename))
else:
print ('Already downloaded')
retry_times = 0
while len(retry_list) != 0 and retry_times < 3:
print('%d items should be retried, retrying...' % len(retry_list))
tmp_list = [item for item in retry_list]
retry_times += 1
for (url, filename) in tmp_list:
try:
print(url)
print(filename)
r = session.get(get_token_url)
video_url_suffix = '88C752A6C3513A0A5EEFA4CD7091A96E365D0185B8133CC883910200B043BC0F57E3024A35D1C582757D905A6B9289E9f4eej632de59'\
+ r.content
video_url = url + '?key=' + video_url_suffix
download_file(session, video_url, filename )
except Exception as e:
print(e)
print('Error, add it to retry list')
continue
retry_list.remove((url, filename))
if len(retry_list) != 0:
print('%d items failed, please check it' % len(retry_list))
else:
print('All done.')
def parse_syllabus_study163(session, page):
data = page.splitlines(True)
multi_resolution_flag = ['videoSHDUrl',
'flvShdUrl',
'videoHDUrl',
'flvHdUrl',
'videoUrl',
'flvSdUrl']
course = []
lessons = []
course_id = ''
cur_chapter = ''
get_videoid_url = 'http://study.163.com/dwr/call/plaincall/LessonLearnBean.getVideoLearnInfo.dwr'
headers = {
'Accept':'*/*',
'Accept-Encoding':'gzip, deflate',
'Accept-Language':'zh-CN,zh;q=0.8,en;q=0.6,zh-TW;q=0.4',
'Connection':'keep-alive',
'Content-Length':'230',
'Content-Type':'text/plain',
'Cookie':'videoResolutionType=3;',
'Host':'study.163.com',
'Origin':'http://study.163.com',
'Referer':'http://study.163.com/course/courseLearn.htm?courseId=953005',
'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',
}
for line in data:
print('.', end="")
lesson_info = dict(re.findall(r"s\d+\.(?P<name>.*?)=(?P<value>.*?);",line))
if lesson_info:
if ('courseId' in lesson_info) and ('name' in lesson_info):
course_id = lesson_info['courseId']
if lessons:
course.append((cur_chapter, lessons))
lessons = []
cur_chapter = lesson_info['name'].decode('raw_unicode_escape')
elif 'lessonName' in lesson_info:
params = {
'callCount':'1',
'scriptSessionId':'${scriptSessionId}190', #* , but arbitrarily
'httpSessionId':'686777b732444cd2b43020d3fcddd0d1',
'c0-scriptName':'LessonLearnBean',
'c0-methodName':'getVideoLearnInfo',
'c0-id':'0',
'c0-param0':'string:' + lesson_info['id'],
'c0-param1':'string:' + course_id,
'batchId':'969403', #* , but arbitrarily
}
r = session.post(get_videoid_url, headers = headers, data = params, cookies = {'Cookie':'videoResolutionType=3;'})
if r.status_code is not 200:
print("Failed to get video ID.")
sys.exit(0)
s = re.search(r"remoteHandleCallback.+{(?P<content>.*)}", r.content)
if not s:
print("Failed to get video ID.")
sys.exit(0)
info = dict(re.findall(r"(?P<name>.*?):(?P<value>.*?),", s.group('content')))
for res in multi_resolution_flag:
if (res in info) and (info[res] != 'null'):
lesson_url = info[res].strip('\"')
break
lessons.append((lesson_url, lesson_info['lessonName'].strip('\"')))
course.append((cur_chapter, lessons))
return (course_id, course)
def main():
args = parse_args()
course_link = args.course_url[0]
path = args.path
overwrite = args.overwrite
regexs = [r'(?:https?://)study.163.com/course/introduction/(?P<courseid>\d+)\.htm',
r'(?:https?://)study.163.com/course/courseMain.htm\?courseId=(?P<courseid>\d+)',
r'(?:https?://)study.163.com/course/introduction.htm\?courseId=(?P<courseid>\d+)'
]
for regex in regexs:
m = re.match(regex, course_link)
if m is not None:
break
if m is None:
print ('The URL provided is not valid for study.163.com')
sys.exit(0)
path = os.path.join(path, m.group('courseid'))
headers = {
'Accept':'*/*',
'Accept-Encoding':'gzip, deflate, sdch',
'Accept-Language':'zh-CN,zh;q=0.8,en;q=0.6,zh-TW;q=0.4',
'Connection':'keep-alive',
'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36',
'X-Requested-With':'ShockwaveFlash/16.0.0.235',
}
post_data = {
'callCount':1,
'scriptSessionId':'${scriptSessionId}190',
'c0-scriptName':'PlanNewBean',
'c0-methodName':'getPlanCourseDetail',
'c0-id': 0,
'c0-param0':'string:' + m.group('courseid'),
'c0-param1':'number:0',
'c0-param2':'null:null',
'batchId':434820, #arbitrarily
}
course_detail_dwr_url = 'http://study.163.com/dwr/call/plaincall/PlanNewBean.getPlanCourseDetail.dwr'
session = requests.Session()
session.headers.update(headers)
r = session.post(course_detail_dwr_url, data = post_data)
if r.status_code is not 200:
print('Failed to get .dwr file.')
sys.exit(0)
print ('Parsing...', end="")
syllabus = parse_syllabus_study163(session, r.content)
if syllabus:
print ('Done.')
else:
print ('Failed. No course content on the page.')
sys.exit(0)
download_syllabus_study163(session, syllabus, path, overwrite)
if __name__ == '__main__':
main()