从 Mac 版的 iTunes 里找到课程,通过分享链接,获取下面的地址, 其实就是一个 xml 文件
解析出所有的下载地址
import xml.etree.ElementTree as ET
import requests
root = ET.fromstring(requests.get('http://podcasts.apple.com/stanford/developing_ios11_apps.xml').text)
for enclosure in root.findall('.//enclosure'):
print(enclosure.get('url'))
网上找到的中文字幕
https://github.com/ApolloZhu/Developing-iOS-11-Apps-with-Swift
1
frozenthrone 2018-05-25 13:21:55 +08:00 via iPhone
👍
|
2
xi_lin 2018-05-25 13:23:19 +08:00
赞
|
3
heliang 2018-05-25 14:22:10 +08:00
赞
|
4
pingxing 2018-05-25 14:28:56 +08:00
赞
|
5
baozijun 2018-05-25 14:38:47 +08:00
赞👍
|
6
sobigfish 2018-05-25 14:54:18 +08:00
看样子是高清的, 可以直接放 不用下载😊
|
7
LagunAPaTa 2018-05-25 17:18:35 +08:00
再次感谢一下
|
8
crystone 2018-05-25 17:40:00 +08:00
这个不错,虽然不开发 iOS
|
9
wyanassert 2018-05-25 18:12:11 +08:00
赞👍
|
10
note286 2018-05-26 09:04:04 +08:00
|
11
note286 2018-05-26 09:18:39 +08:00
其实我是想下载 https://itunes.apple.com/us/tv-season/planet-of-the-apps/id1242614353 这个,问一下可以解决吗?
|
12
lianglin999 OP @note286 我是通过 mac 版本 iTunes 找到课程,通过分享链接获取的,你也可以试试
|
13
anym0us 2018-05-27 14:21:12 +08:00
赞~~~~~~~~~~~
|
14
hanangellove 2018-05-27 17:26:44 +08:00
为什么不直接在 itunes 里看。。
|
15
lianglin999 OP @hanangellove 方便外挂字幕
|