playwright和requests下载网站视频方法

import time

from playwright.sync_api import sync_playwright, Page, expect
from tqdm import tqdm

# def on_response(response):
#     #print(response.url)
#     if 'dataManage/getTagMaxNum.do' in response.url:
# 
#         with open('cookies/headers.txt', 'w') as f:
#             f.write(str(response.request.headers))
#         print(response.request.headers)
import requests
def download_video(video_url,name):
    # 视频的 URL

    # 请求头部,有些服务器会检查 User-Agent
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'
    }

    # 发送请求
    response = requests.get(video_url, headers=headers, stream=True)

    # 检查响应状态码是否为 200(成功)
    if response.status_code == 200:
        # 获取文件大小
        total_size = int(response.headers.get('Content-Length', 0))

        # 设置保存路径和文件名
        file_path = f"shipin/{name}.mp4"

        # 写入文件
        with open(file_path, "wb") as f:
            for chunk in tqdm(response.iter_content(chunk_size=8192)):
                if chunk:
                    f.write(chunk)

        print(f"Video downloaded successfully to {file_path}")
    else:
        print(f"Failed to download the video. Status code: {response.status_code}")


def run():
    with sync_playwright() as playwright:
        # 启动 chromium 浏览器
        browser = playwright.chromium.launch_persistent_context(
            # 指定本机用户缓存地址
            user_data_dir=r"Chrome/Application/Default",
            # 指定本机google客户端exe的路径
            executable_path='E:\zyx_project\wanmi3\Chrome\Application\chrome1.exe',#要换自己的路径
            # C:\Program Files\Google\Chrome\Application\chrome.exe
            # r"C:\Users\Administrator\AppData\Local\ms-playwright\chromium-1071\chrome-win\chrome.exe"# 要想通过这个下载文件这个必然要开  默认是False
            accept_downloads=True,
            headless=False,            # 设置无头模式
            bypass_csp=True,
            no_viewport=True,
            ignore_https_errors=True,
            # 跳过检测
            args=['--disable-blink-features=AutomationControlled',
                  '--remote-debugging-port={}'.format(9970), '--start-maximized']
        )
        page = browser.new_page()
        #page.on('response', on_response)
        e=0
        video_urls,name=[],[]
        #视频来源列表
        shipin_list=['https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2949843125022261249&__biz=MzkzNzMxODYxMA==&mid=2247488060&idx=1&sn=f2ab312dd3258f8a8821c07ac0e999b6&vidsn=&sharer_shareinfo_first=271d059ff544827b35ed30cf7e6efc3d&sharer_shareinfo=271d059ff544827b35ed30cf7e6efc3d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2929394132354105349&__biz=MzkzNzMxODYxMA==&mid=2247487956&idx=1&sn=6a982b4b3915c7baa09e3e1d87f83f6f&vidsn=&sharer_shareinfo_first=a30a9afd7b16466ca9fa824050851230&sharer_shareinfo=a30a9afd7b16466ca9fa824050851230#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2929394132354105349&__biz=MzkzNzMxODYxMA==&mid=2247487956&idx=1&sn=6a982b4b3915c7baa09e3e1d87f83f6f&vidsn=&sharer_shareinfo_first=c26b47ea820713017bddb95a9fde5e2c&sharer_shareinfo=c26b47ea820713017bddb95a9fde5e2c#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2929393327081291777&__biz=MzkzNzMxODYxMA==&mid=2247487954&idx=1&sn=48ae58ebb581161cb4cf9876edb3b3d5&vidsn=&sharer_shareinfo_first=798feb495a7650ab5038e892679f02b7&sharer_shareinfo=798feb495a7650ab5038e892679f02b7#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2929392998952501252&__biz=MzkzNzMxODYxMA==&mid=2247487952&idx=1&sn=1fb3c2498352782f28bb43af06f673f0&vidsn=&sharer_shareinfo_first=60ef1136cf19f272ebd09e006162d772&sharer_shareinfo=60ef1136cf19f272ebd09e006162d772#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2929392167540785155&__biz=MzkzNzMxODYxMA==&mid=2247487950&idx=1&sn=c7f63d572b8c502afb202893f7f04a42&vidsn=&sharer_shareinfo_first=529bded8ca77733a1f83502338c5ee3d&sharer_shareinfo=529bded8ca77733a1f83502338c5ee3d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2929391239106428930&__biz=MzkzNzMxODYxMA==&mid=2247487948&idx=1&sn=e02bb898fd39758d70d56187c2f142dc&vidsn=&sharer_shareinfo_first=08fcce31fb2bf507f83a60fb93f9a170&sharer_shareinfo=08fcce31fb2bf507f83a60fb93f9a170#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2922128416374554626&__biz=MzkzNzMxODYxMA==&mid=2247487860&idx=1&sn=6880c32ea9487d16816d2cecf9fc61b4&vidsn=&sharer_shareinfo_first=60f180fefc966bb58d895c0f68605268&sharer_shareinfo=60f180fefc966bb58d895c0f68605268#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2912027907978461187&__biz=MzkzNzMxODYxMA==&mid=2247487847&idx=1&sn=778cc25f0a8871edc7bb21cfa302e637&vidsn=&sharer_shareinfo_first=762cc8b395331a716d6f479e282c5966&sharer_shareinfo=762cc8b395331a716d6f479e282c5966#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2912022427885404161&__biz=MzkzNzMxODYxMA==&mid=2247487845&idx=1&sn=b2f407b509350d03728ceb58296fc88a&vidsn=&sharer_shareinfo_first=0d8be1fb9722ddff352373f5641bb444&sharer_shareinfo=0d8be1fb9722ddff352373f5641bb444#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2901839567400501251&__biz=MzkzNzMxODYxMA==&mid=2247487756&idx=1&sn=9a2c4e1812b4ccd4dd8f08233ec7fc29&vidsn=&sharer_shareinfo_first=6506946c817443d58f5fe4133427bb9f&sharer_shareinfo=6506946c817443d58f5fe4133427bb9f#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2897523334983221249&__biz=MzkzNzMxODYxMA==&mid=2247487634&idx=1&sn=db3bee40712650ead766ad19e8ee7993&vidsn=&sharer_shareinfo_first=b78b516aa6dc1b93dbd530e71834f73a&sharer_shareinfo=b78b516aa6dc1b93dbd530e71834f73a#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2897523757584515077&__biz=MzkzNzMxODYxMA==&mid=2247487632&idx=1&sn=a2d818ffa357c1aab6d0eacb7a0d1bea&vidsn=&sharer_shareinfo_first=e9d033e9684ceaedbe3f3ea96569640f&sharer_shareinfo=e9d033e9684ceaedbe3f3ea96569640f#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2887364984819712002&__biz=MzkzNzMxODYxMA==&mid=2247487557&idx=1&sn=4e45e89b60ac5fc4a72e81cf073a9666&vidsn=&sharer_shareinfo_first=f0ab50786102bb5808c87c12d9f338a4&sharer_shareinfo=f0ab50786102bb5808c87c12d9f338a4#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2877333195749359617&__biz=MzkzNzMxODYxMA==&mid=2247487490&idx=1&sn=269f0905e5c0cbc5fa4ee7853cfd4551&vidsn=&sharer_shareinfo_first=dff7a6cc978dc35385e1b55f378c34c2&sharer_shareinfo=dff7a6cc978dc35385e1b55f378c34c2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2877332102059425795&__biz=MzkzNzMxODYxMA==&mid=2247487486&idx=1&sn=c1fb040b6b88a71b971dd41b0377380f&vidsn=&sharer_shareinfo_first=6b5b2631c7838400b7066a28a6cb4d1e&sharer_shareinfo=6b5b2631c7838400b7066a28a6cb4d1e#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2867224644020371457&__biz=MzkzNzMxODYxMA==&mid=2247487445&idx=1&sn=eac60ca8aaa391f38e259714b884bc34&vidsn=&sharer_shareinfo_first=16a374a38955403845ea5b617a3e65ba&sharer_shareinfo=16a374a38955403845ea5b617a3e65ba#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2856943805567107072&__biz=MzkzNzMxODYxMA==&mid=2247487363&idx=1&sn=3c49961463eb20649b6771527c35d48f&vidsn=&sharer_shareinfo_first=163247a6f7a8a8ec82350b3fd9877342&sharer_shareinfo=163247a6f7a8a8ec82350b3fd9877342#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2856942348918882305&__biz=MzkzNzMxODYxMA==&mid=2247487361&idx=1&sn=77594b64876ed504c1a733f1afb2b031&vidsn=&sharer_shareinfo_first=de521222fa18e27cbf4cf78830be81e2&sharer_shareinfo=de521222fa18e27cbf4cf78830be81e2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2856941559517315079&__biz=MzkzNzMxODYxMA==&mid=2247487359&idx=1&sn=f3048f5179c2c1fa9abde14d1db0c76c&vidsn=&sharer_shareinfo_first=c7b780ba448632eca5dd69f4ccb7b232&sharer_shareinfo=c7b780ba448632eca5dd69f4ccb7b232#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2846785565361471492&__biz=MzkzNzMxODYxMA==&mid=2247487311&idx=1&sn=ebd882a509ada181762385f61d937b51&vidsn=&sharer_shareinfo_first=9d1af1e584c8d7f173b9a17d8cf24034&sharer_shareinfo=9d1af1e584c8d7f173b9a17d8cf24034#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2846786721697529858&__biz=MzkzNzMxODYxMA==&mid=2247487309&idx=1&sn=767a7a9e522fcb998de2b779e26bfddf&vidsn=&sharer_shareinfo_first=973de0ac6f9b9876614359e114c02133&sharer_shareinfo=973de0ac6f9b9876614359e114c02133#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2836783005087072260&__biz=MzkzNzMxODYxMA==&mid=2247487258&idx=1&sn=809fff233eaab7ac0b713652a937a03f&vidsn=&sharer_shareinfo_first=ddd263b7669b3a9babb1cc033301e4d4&sharer_shareinfo=ddd263b7669b3a9babb1cc033301e4d4#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2836782648269242368&__biz=MzkzNzMxODYxMA==&mid=2247487256&idx=1&sn=3d756e1e187a61a6e2d7fd9717be52d0&vidsn=&sharer_shareinfo_first=3b6ba424a011bfde66bd6763311915b2&sharer_shareinfo=3b6ba424a011bfde66bd6763311915b2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2836782496821313541&__biz=MzkzNzMxODYxMA==&mid=2247487254&idx=1&sn=032e42f0d8d33519f1eba4869f4d75bd&vidsn=&sharer_shareinfo_first=c33fa880b36b0fae7534977115aaebf2&sharer_shareinfo=c33fa880b36b0fae7534977115aaebf2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2826497961894608897&__biz=MzkzNzMxODYxMA==&mid=2247487208&idx=1&sn=49ade2c231e01c29a5312a74e9539d63&vidsn=&sharer_shareinfo_first=f4042537fdd2d09f33e7de7d27c965f2&sharer_shareinfo=f4042537fdd2d09f33e7de7d27c965f2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2832279812793729027&__biz=MzkzNzMxODYxMA==&mid=2247487207&idx=1&sn=b608df5d72c13ea8f56cd16a0c2a2cd5&vidsn=&sharer_shareinfo_first=c769482272f0f3daeb34113b7af40b06&sharer_shareinfo=c769482272f0f3daeb34113b7af40b06#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2826497814775201796&__biz=MzkzNzMxODYxMA==&mid=2247487099&idx=1&sn=3024a20cf59a97b7a989b57ebae33656&vidsn=&sharer_shareinfo_first=3d86b0a6efb186f568305686df50f1fa&sharer_shareinfo=3d86b0a6efb186f568305686df50f1fa#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2826496645755568128&__biz=MzkzNzMxODYxMA==&mid=2247487095&idx=1&sn=04d0d1ea4aa4e30508b351612e578dc2&vidsn=&sharer_shareinfo_first=1fdfc2d970b66136e180dc3adcaa1feb&sharer_shareinfo=1fdfc2d970b66136e180dc3adcaa1feb#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2816595320393695234&__biz=MzkzNzMxODYxMA==&mid=2247487042&idx=1&sn=976d07f9ac7e94175d1f5a71b550d643&vidsn=&sharer_shareinfo_first=644495e70465c25ac3fdcc87ebcdacf2&sharer_shareinfo=644495e70465c25ac3fdcc87ebcdacf2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2816595171378462722&__biz=MzkzNzMxODYxMA==&mid=2247487040&idx=1&sn=45f368c6cd2d33d48ec3bcb8dc28adae&vidsn=&sharer_shareinfo_first=35ee77e60abbd9bb667e48860be1d45a&sharer_shareinfo=35ee77e60abbd9bb667e48860be1d45a#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2806191579874197505&__biz=MzkzNzMxODYxMA==&mid=2247487002&idx=1&sn=e79e1cf58175508b39916d30be4e890c&vidsn=&sharer_shareinfo_first=fd794bbb3ec5943988d927a6cdaf1f81&sharer_shareinfo=fd794bbb3ec5943988d927a6cdaf1f81#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2806191101136338945&__biz=MzkzNzMxODYxMA==&mid=2247487000&idx=1&sn=1779024a7e1a2e7d21a1e584be3528d2&vidsn=&sharer_shareinfo_first=96402a453c0c314cabb11b73d55a86d4&sharer_shareinfo=96402a453c0c314cabb11b73d55a86d4#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2806190199209984004&__biz=MzkzNzMxODYxMA==&mid=2247486998&idx=1&sn=96ac1f4b9d685ef445e3db688ed1657e&vidsn=&sharer_shareinfo_first=6ee9228df1feb50a0eae9b229bc7d1fe&sharer_shareinfo=6ee9228df1feb50a0eae9b229bc7d1fe#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2806190050563850241&__biz=MzkzNzMxODYxMA==&mid=2247486996&idx=1&sn=92ee68ea1e09a7ea53b390762e23b0d5&vidsn=&sharer_shareinfo_first=9c5550e551dc8a4113d9cb768613d361&sharer_shareinfo=9c5550e551dc8a4113d9cb768613d361#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2796056871861485569&__biz=MzkzNzMxODYxMA==&mid=2247486950&idx=1&sn=5e884836a4e6f7ab30a33fae1f2e2db6&vidsn=&sharer_shareinfo_first=7c34cc62c3c6b5aaa181777746ddd0c5&sharer_shareinfo=7c34cc62c3c6b5aaa181777746ddd0c5#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2796055401036513282&__biz=MzkzNzMxODYxMA==&mid=2247486948&idx=1&sn=8bce8dd8e81d9c814a4453dc35e3ab42&vidsn=&sharer_shareinfo_first=2bd87ab25dd5d628e144cd459acbb1c6&sharer_shareinfo=2bd87ab25dd5d628e144cd459acbb1c6#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2796056145324146690&__biz=MzkzNzMxODYxMA==&mid=2247486946&idx=1&sn=b4539653a4d97322c56d5a734f919e83&vidsn=&sharer_shareinfo_first=7606a2c6a01bd10808841663a8b6090d&sharer_shareinfo=7606a2c6a01bd10808841663a8b6090d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2791694066244911105&__biz=MzkzNzMxODYxMA==&mid=2247486888&idx=1&sn=6b1fedeb797b26b2dbe66472f6014fe4&vidsn=&sharer_shareinfo_first=36508b8667654a1de6a9b514a22d75ae&sharer_shareinfo=36508b8667654a1de6a9b514a22d75ae#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2785906576590372865&__biz=MzkzNzMxODYxMA==&mid=2247486878&idx=1&sn=c9fa9dc79e9ccec11468b45a5eab8eda&vidsn=&sharer_shareinfo_first=fee2e105bf8f13b7c18c36a5d5069014&sharer_shareinfo=fee2e105bf8f13b7c18c36a5d5069014#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2790238055990558720&__biz=MzkzNzMxODYxMA==&mid=2247486880&idx=1&sn=c4c46acbd5deee372c1906a63f7f5ec4&vidsn=&sharer_shareinfo_first=3e413730b8db78aac90fee4be00cdeb7&sharer_shareinfo=3e413730b8db78aac90fee4be00cdeb7#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2785900768385302530&__biz=MzkzNzMxODYxMA==&mid=2247486869&idx=1&sn=b3d5d31bbe49c074950ee808662f541e&vidsn=&sharer_shareinfo_first=3e90f9e810008e260bad4db186a3aeae&sharer_shareinfo=3e90f9e810008e260bad4db186a3aeae#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2785898880495517699&__biz=MzkzNzMxODYxMA==&mid=2247486867&idx=1&sn=f06d46b3a28dbddc5974a25d6a295ac9&vidsn=&sharer_shareinfo_first=c657e0a147098d1fafa6e34a135b2c29&sharer_shareinfo=c657e0a147098d1fafa6e34a135b2c29#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2785898880495517699&__biz=MzkzNzMxODYxMA==&mid=2247486867&idx=1&sn=f06d46b3a28dbddc5974a25d6a295ac9&vidsn=&sharer_shareinfo_first=6e1f5f44fc26caf13e4c58304a610a7a&sharer_shareinfo=6e1f5f44fc26caf13e4c58304a610a7a#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2785898626236809218&__biz=MzkzNzMxODYxMA==&mid=2247486865&idx=1&sn=fa53627fc9f23cd9ce9b118c8f5f5c07&vidsn=&sharer_shareinfo_first=ab6c8f508eb8a85b14e9655b48ab7adf&sharer_shareinfo=ab6c8f508eb8a85b14e9655b48ab7adf#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2771917614402240513&__biz=MzkzNzMxODYxMA==&mid=2247486830&idx=1&sn=863ec4ead480868a90d4dc83c73e4a5c&vidsn=&sharer_shareinfo_first=07b32354f41e768b051c9959a7a835f7&sharer_shareinfo=07b32354f41e768b051c9959a7a835f7#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2771917250101772289&__biz=MzkzNzMxODYxMA==&mid=2247486826&idx=1&sn=e75c4477760a1e5ba8f4abb4b9f131e8&vidsn=&sharer_shareinfo_first=294d5bc72a09155d3bf46dfb1efd4e37&sharer_shareinfo=294d5bc72a09155d3bf46dfb1efd4e37#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2771916831409569794&__biz=MzkzNzMxODYxMA==&mid=2247486799&idx=1&sn=3c5395c861befdf0d5a3e89aa35f3be2&vidsn=&sharer_shareinfo_first=376de417976653106adc9b5467284e29&sharer_shareinfo=376de417976653106adc9b5467284e29#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2771916620939395074&__biz=MzkzNzMxODYxMA==&mid=2247486797&idx=1&sn=8d13b2c4e4f210871b482e96479a7d1f&vidsn=&sharer_shareinfo_first=e911fa38d6c62c4838ba0d2a2135979d&sharer_shareinfo=e911fa38d6c62c4838ba0d2a2135979d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2755472467691044865&__biz=MzkzNzMxODYxMA==&mid=2247486713&idx=1&sn=74a408da9215767eccd1ff8ebf43bae1&vidsn=&sharer_shareinfo_first=c6afc3bf2aa6430518d8640e00652696&sharer_shareinfo=c6afc3bf2aa6430518d8640e00652696#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2755471990043705345&__biz=MzkzNzMxODYxMA==&mid=2247486711&idx=1&sn=e09b790b9a79c0b221efac7424ba6c8a&vidsn=&sharer_shareinfo_first=afbf124d1f3395b59def52fa7a39b029&sharer_shareinfo=afbf124d1f3395b59def52fa7a39b029#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2745345852638232576&__biz=MzkzNzMxODYxMA==&mid=2247486683&idx=1&sn=779c2cce6ee95366f7cfc0cc4eb25a6c&vidsn=&sharer_shareinfo_first=1d202216cffa94d72b9986ebecdcb60f&sharer_shareinfo=1d202216cffa94d72b9986ebecdcb60f#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2745345696274579459&__biz=MzkzNzMxODYxMA==&mid=2247486681&idx=1&sn=c3d1f328a3cf5f943986e44ede37a819&vidsn=&sharer_shareinfo_first=5ceba3a1326f31fae2463f794373ffc5&sharer_shareinfo=5ceba3a1326f31fae2463f794373ffc5#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2745345492716617729&__biz=MzkzNzMxODYxMA==&mid=2247486679&idx=1&sn=e78dcef769a06d98d6dd039aa645a57e&vidsn=&sharer_shareinfo_first=66f9c4dc6110a9678b14da6167f91ae4&sharer_shareinfo=66f9c4dc6110a9678b14da6167f91ae4#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2725017108551827457&__biz=MzkzNzMxODYxMA==&mid=2247486578&idx=1&sn=0c133d6712f77bf538ea9a94ed660a18&vidsn=&sharer_shareinfo_first=09e9478c1c8df75726a305fdc77c0947&sharer_shareinfo=09e9478c1c8df75726a305fdc77c0947#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2725015536526688257&__biz=MzkzNzMxODYxMA==&mid=2247486574&idx=1&sn=718a153643491bc91d7928d9beea42f9&vidsn=&sharer_shareinfo_first=1495b4c45553db0615ce7cdb82b0de21&sharer_shareinfo=1495b4c45553db0615ce7cdb82b0de21#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2725014327845715969&__biz=MzkzNzMxODYxMA==&mid=2247486572&idx=1&sn=429fef20a23cffc0c9cd3b6d4e71f04f&vidsn=&sharer_shareinfo_first=97b2a1184e5966ee9db0b6b17391d7cc&sharer_shareinfo=97b2a1184e5966ee9db0b6b17391d7cc#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2714892626352930817&__biz=MzkzNzMxODYxMA==&mid=2247486554&idx=1&sn=2d85f92f34024731c60db6e1e4e70b61&vidsn=&sharer_shareinfo_first=3812d5bd16f0166165767dde88cce870&sharer_shareinfo=3812d5bd16f0166165767dde88cce870#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2714892412997074945&__biz=MzkzNzMxODYxMA==&mid=2247486518&idx=1&sn=d9152b1ea42649e4bdbe7e8472af264f&vidsn=&sharer_shareinfo_first=3625948d159e66af241bef2f69ca99b6&sharer_shareinfo=3625948d159e66af241bef2f69ca99b6#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2714891427805396996&__biz=MzkzNzMxODYxMA==&mid=2247486516&idx=1&sn=da85179ff5a56267e1ffdbacd5926120&vidsn=&sharer_shareinfo_first=edc0f8bbfbff1d4a55574750ad2f843a&sharer_shareinfo=edc0f8bbfbff1d4a55574750ad2f843a#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2716314154865000449&__biz=MzkzNzMxODYxMA==&mid=2247486513&idx=1&sn=5d8b2370eeb138db5c65916206640ce0&vidsn=&sharer_shareinfo_first=eabae0cc0c7631d016bc88cd4244ec8d&sharer_shareinfo=eabae0cc0c7631d016bc88cd4244ec8d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2704773550662221827&__biz=MzkzNzMxODYxMA==&mid=2247486450&idx=1&sn=40aac2d9665b05b8c36544d24963f752&vidsn=&sharer_shareinfo_first=918563d62eeda7a335971e6de0869653&sharer_shareinfo=918563d62eeda7a335971e6de0869653#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2704770392217092096&__biz=MzkzNzMxODYxMA==&mid=2247486420&idx=1&sn=ba4c8842980fb3604bf52dd4e3a8613c&vidsn=&sharer_shareinfo_first=a959116fc6346057436ffc7bcae3539a&sharer_shareinfo=a959116fc6346057436ffc7bcae3539a#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2704769014941876225&__biz=MzkzNzMxODYxMA==&mid=2247486418&idx=1&sn=2666257a1c65092a9a38f3f233290a15&vidsn=&sharer_shareinfo_first=b4352c365612ef0475e4d3edb5153e9d&sharer_shareinfo=b4352c365612ef0475e4d3edb5153e9d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2694589879535796224&__biz=MzkzNzMxODYxMA==&mid=2247486374&idx=1&sn=556bcd1ba75ce03b54362f8a450e0d58&vidsn=&sharer_shareinfo_first=70e89e95844a4d9ba717b030d29c66ba&sharer_shareinfo=70e89e95844a4d9ba717b030d29c66ba#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2694590155470667779&__biz=MzkzNzMxODYxMA==&mid=2247486372&idx=1&sn=15cf3689324f16d7cef2e68515f8ca29&vidsn=&sharer_shareinfo_first=e65335ddf2dbbeeb50d6a0b4fa491ac8&sharer_shareinfo=e65335ddf2dbbeeb50d6a0b4fa491ac8#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2664181112990334977&__biz=MzkzNzMxODYxMA==&mid=2247486224&idx=1&sn=115648abab3b45531b0f96042eb1d787&vidsn=&sharer_shareinfo_first=364fac3b11ae6648e54d7d513a83bc52&sharer_shareinfo=364fac3b11ae6648e54d7d513a83bc52#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2664178225245585410&__biz=MzkzNzMxODYxMA==&mid=2247486216&idx=1&sn=95c93ccd380dcc4ce51ca43483c08919&vidsn=&sharer_shareinfo_first=511e866c948256ae3e66cef2b19f09c6&sharer_shareinfo=511e866c948256ae3e66cef2b19f09c6#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2655696175182118913&__biz=MzkzNzMxODYxMA==&mid=2247486184&idx=1&sn=cac15ec59dda343a5a4ff96a96569f3a&vidsn=&sharer_shareinfo_first=edbc2e56105d727d47e278e45d69ca55&sharer_shareinfo=edbc2e56105d727d47e278e45d69ca55#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2655697075179094016&__biz=MzkzNzMxODYxMA==&mid=2247486182&idx=1&sn=8097398e9312e700a243afaa0b2d76c9&vidsn=&sharer_shareinfo_first=d3dadb318747d3e74dffdebf15253f0f&sharer_shareinfo=d3dadb318747d3e74dffdebf15253f0f#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2655696823738957824&__biz=MzkzNzMxODYxMA==&mid=2247486180&idx=1&sn=97b7f86856b31d81998afae9029a9323&vidsn=&sharer_shareinfo_first=a006b76966d89b21c3b36fbbdae87670&sharer_shareinfo=a006b76966d89b21c3b36fbbdae87670#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2655695733656125441&__biz=MzkzNzMxODYxMA==&mid=2247486177&idx=1&sn=8a4010b3784a1d075825d939b44d713b&vidsn=&sharer_shareinfo_first=b6a30ba68ba1140d4e26b067964eec82&sharer_shareinfo=b6a30ba68ba1140d4e26b067964eec82#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2652575435704500225&__biz=MzkzNzMxODYxMA==&mid=2247486140&idx=1&sn=b09386d53d7fca2fe410a70f304cfbc5&vidsn=&sharer_shareinfo_first=d1d444269963b9f315659e92bf0f5399&sharer_shareinfo=d1d444269963b9f315659e92bf0f5399#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2652576241094754304&__biz=MzkzNzMxODYxMA==&mid=2247486132&idx=1&sn=3b3efd5022142d4f16210918792b9e24&vidsn=&sharer_shareinfo_first=1417f4230df48002a3f570dae47e0c66&sharer_shareinfo=1417f4230df48002a3f570dae47e0c66#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2633695341087031302&__biz=MzkzNzMxODYxMA==&mid=2247486071&idx=1&sn=1403a765d7734f0cc6c5e00621b47c42&vidsn=&sharer_shareinfo_first=02b0cea789cb7f8e481836152cb2dc5b&sharer_shareinfo=02b0cea789cb7f8e481836152cb2dc5b#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2633694638876655622&__biz=MzkzNzMxODYxMA==&mid=2247486067&idx=1&sn=e83ea1db17fbb090c6def07144e43c69&vidsn=&sharer_shareinfo_first=8ee4fbbeb5e23b1d35652dbf321a18ef&sharer_shareinfo=8ee4fbbeb5e23b1d35652dbf321a18ef#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2633694638876655622&__biz=MzkzNzMxODYxMA==&mid=2247486067&idx=1&sn=e83ea1db17fbb090c6def07144e43c69&vidsn=&sharer_shareinfo_first=ba3a54499cf4d3a0663cbef20771243e&sharer_shareinfo=ba3a54499cf4d3a0663cbef20771243e#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2626436815134392321&__biz=MzkzNzMxODYxMA==&mid=2247486013&idx=1&sn=30a42675a2a89878ecac1ab8e3cd9404&vidsn=&sharer_shareinfo_first=5845eb84a9b84baeff93c9ce5da7673f&sharer_shareinfo=5845eb84a9b84baeff93c9ce5da7673f#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2614940256525877249&__biz=MzkzNzMxODYxMA==&mid=2247485971&idx=1&sn=e35d5bb4e4733562ec1f4a32924b5f8b&vidsn=&sharer_shareinfo_first=aef0b1e3aa75b1566df6f1b448540eb2&sharer_shareinfo=aef0b1e3aa75b1566df6f1b448540eb2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2614939904036569091&__biz=MzkzNzMxODYxMA==&mid=2247485969&idx=1&sn=312020c43b6f389da4120c46df21db4f&vidsn=&sharer_shareinfo_first=48c24e056223a11e76fdcf9d3569e43d&sharer_shareinfo=48c24e056223a11e76fdcf9d3569e43d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2614939194008010753&__biz=MzkzNzMxODYxMA==&mid=2247485965&idx=1&sn=7949db4e8d5d693748ec9445c828ed36&vidsn=&sharer_shareinfo_first=a7b951fa4317498ee052eb6f08a9eb4e&sharer_shareinfo=a7b951fa4317498ee052eb6f08a9eb4e#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2606204215233085441&__biz=MzkzNzMxODYxMA==&mid=2247485928&idx=1&sn=839d05038e4093e754bee35d0eea30bf&vidsn=&sharer_shareinfo_first=89a59cce4576a32bea2e94ad87577d75&sharer_shareinfo=89a59cce4576a32bea2e94ad87577d75#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2606202168513396739&__biz=MzkzNzMxODYxMA==&mid=2247485926&idx=1&sn=a7089810e77485a7582b1f627940c9f7&vidsn=&sharer_shareinfo_first=6a2da28d49c5fc905cf77991dbccf31e&sharer_shareinfo=6a2da28d49c5fc905cf77991dbccf31e#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2606199935600164869&__biz=MzkzNzMxODYxMA==&mid=2247485924&idx=1&sn=2511fac29f3a4a7ca7569fd7f9cc7e73&vidsn=&sharer_shareinfo_first=fc8f7e85b804f9d1a51e63bf6576ab5e&sharer_shareinfo=fc8f7e85b804f9d1a51e63bf6576ab5e#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2594682669142376450&__biz=MzkzNzMxODYxMA==&mid=2247485894&idx=1&sn=bd17025945e61b2dd92a3d86d7dd4485&vidsn=&sharer_shareinfo_first=2dd0ca3f87f6b156cfeb664f856fcda1&sharer_shareinfo=2dd0ca3f87f6b156cfeb664f856fcda1#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2527928629201469441&__biz=MzkzNzMxODYxMA==&mid=2247485510&idx=1&sn=2e367af70ee8fcb63b3d279a835d4d19&vidsn=&sharer_shareinfo_first=ba4d0a4a955893fc32de3cbded5f7c37&sharer_shareinfo=ba4d0a4a955893fc32de3cbded5f7c37#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2527919239933198336&__biz=MzkzNzMxODYxMA==&mid=2247485480&idx=1&sn=d286a63286c3b5a6131dd50bca190b1a&vidsn=&sharer_shareinfo_first=6df947e3bb1f619af13d50bff1187a71&sharer_shareinfo=6df947e3bb1f619af13d50bff1187a71#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2517756468453179393&__biz=MzkzNzMxODYxMA==&mid=2247485454&idx=1&sn=1739d1052ef44aa1fbd61a114080e4e7&vidsn=&sharer_shareinfo_first=6fc4dce3670a539f17d06f3739708754&sharer_shareinfo=6fc4dce3670a539f17d06f3739708754#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2517754013862592514&__biz=MzkzNzMxODYxMA==&mid=2247485449&idx=1&sn=5192d142353d37888fab01795c1bf57e&vidsn=&sharer_shareinfo_first=8440910b4fe4780aa5e05a5209a0d56d&sharer_shareinfo=8440910b4fe4780aa5e05a5209a0d56d#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2517750970911817732&__biz=MzkzNzMxODYxMA==&mid=2247485445&idx=1&sn=4cf73695b1de82f645040c500ffc4a30&vidsn=&sharer_shareinfo_first=76eab5f797741f06d861fbecf89d9bc2&sharer_shareinfo=76eab5f797741f06d861fbecf89d9bc2#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2507597739091034113&__biz=MzkzNzMxODYxMA==&mid=2247485284&idx=1&sn=71288be1016855af893c154088ffc2a8&vidsn=&sharer_shareinfo_first=92929263ab64a790eb33b11499571bc8&sharer_shareinfo=92929263ab64a790eb33b11499571bc8#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2497438822260277249&__biz=MzkzNzMxODYxMA==&mid=2247485247&idx=1&sn=ce2a1d9a6eea3fa2d8f312a3ccca64c2&vidsn=&sharer_shareinfo_first=9960ea1f7f4ace8a9af6f337ea769709&sharer_shareinfo=9960ea1f7f4ace8a9af6f337ea769709#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2497439990709485569&__biz=MzkzNzMxODYxMA==&mid=2247485244&idx=1&sn=1e657856de8c272c1647efbe61bd9ad9&vidsn=&sharer_shareinfo_first=dae232d37dd9cbd814012fe119fa0969&sharer_shareinfo=dae232d37dd9cbd814012fe119fa0969#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2485851274702487553&__biz=MzkzNzMxODYxMA==&mid=2247485178&idx=1&sn=8d14fb279f149204e6c1131892b8de15&vidsn=&sharer_shareinfo_first=120c8137946979d37ce1a58b3a643fe8&sharer_shareinfo=120c8137946979d37ce1a58b3a643fe8#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2478574980403036160&__biz=MzkzNzMxODYxMA==&mid=2247485118&idx=1&sn=d8ada045420be4d14d64382760e86bd9&vidsn=&sharer_shareinfo_first=2a744248b675418c9fc06289c198e676&sharer_shareinfo=2a744248b675418c9fc06289c198e676#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2461195551720128517&__biz=MzkzNzMxODYxMA==&mid=2247484956&idx=1&sn=deeade569f866494a506a439321e7c7c&vidsn=&sharer_shareinfo_first=d0817ca0270eebe5074f475924095308&sharer_shareinfo=d0817ca0270eebe5074f475924095308#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2461194496349356034&__biz=MzkzNzMxODYxMA==&mid=2247484954&idx=1&sn=31c2a95662eca354bd3a331c78ea767b&vidsn=&sharer_shareinfo_first=99cd44909293ca9a96be7b9a740e6620&sharer_shareinfo=99cd44909293ca9a96be7b9a740e6620#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2461190617339576323&__biz=MzkzNzMxODYxMA==&mid=2247484952&idx=1&sn=da9e661b8aa0317aca17644ce90733e8&vidsn=&sharer_shareinfo_first=36291960cd208d14d6d1fcb42bb6506c&sharer_shareinfo=36291960cd208d14d6d1fcb42bb6506c#wechat_redirect', 'https://mp.weixin.qq.com/s?t=pages/video_detail_new&scene=1&vid=wxv_2455677389247397891&__biz=MzkzNzMxODYxMA==&mid=2247484935&idx=1&sn=f274e7b1d0fd817a350f21c2e6547fd6&vidsn=&sharer_shareinfo_first=58290410d44ee954d31736747f903bc7&sharer_shareinfo=58290410d44ee954d31736747f903bc7#wechat_redirect'][80:]
        for url in tqdm(shipin_list):
            page.goto(url)
            time.sleep(3)
            #获取MP4视频地址
            video_url=page.query_selector("div > div.js_inner.inner.not_fullscreen > div.js_video_poster.video_poster > video").get_attribute("src")
            #输出视频和网页标题
            print((video_url, str(page.title())))
            #将视频和网页标题添加到列表中
            video_urls.append(video_url)
            name.append(str(page.title()))
        #关闭浏览器
        browser.close()
        #输出列表
        print(video_urls)
        print(name)
        # 将视频地址和网页标题写入txt文件
        with open("video_urls.txt", "w", encoding="utf-8") as f:
            for i in range(len(video_urls)):
                f.write(name[i] + "\n")
                f.write(video_urls[i] + "\n")
        # 返回视频地址和网页标题列表
        return video_urls, name





if __name__ == '__main__':
    video_urls, name=run()
    for video_url,iname in zip(video_urls, name):
        # 下载视频
        download_video(video_url,iname)

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值