博文

目前显示的是 三月, 2023的博文

修复抖音短视频下载失败FQA

图片
Q:  因为过了一段时间, json 数据中的 id 会改变,故失效导致找不到原来的 id 而下载失败; A:修复方法,使用遍历 id 的方式。 Q: 因视频名字含换行导致下载失败, 无法匹配换行符 A:  使用 [\s\S]*? 代替 .*? , [\s\S] 是可以匹配包括换行符的任意字符的。 title = re.findall('<title data-react-helmet="true">(.*?)</title>', response.text)[0] title = re.findall('<title data-react-helmet="true">([\s\S]*?)</title>', response.text)[0]