diff --git a/TikTok_ZH.py b/TikTok_ZH.py
deleted file mode 100644
index 937f7ad..0000000
--- a/TikTok_ZH.py
+++ /dev/null
@@ -1,616 +0,0 @@
-#!/usr/bin/env python
-# -*- encoding: utf-8 -*-
-# @Author: https://github.com/Evil0ctal/
-# @Time: 2021/11/06
-# @Update: 2022/03/07
-# 不再维护该文件
-# @Function:
-# 基于 PyWebIO、Requests、Flask,可实现在线批量解析抖音的无水印视频/图集。
-# 可用于下载作者禁止下载的视频,同时可搭配iOS的快捷指令APP配合本项目API实现应用内下载。
-# API请求参考
-# 抖音/TikTok解析请求参数
-# http://localhost(服务器IP):80/api?url="复制的(抖音/TikTok)的(分享文本/链接)" - 返回JSON数据
-# 抖音/TikTok视频下载请求参数
-# http://localhost(服务器IP):80/video?url="复制的抖音/TikTok链接" - 返回mp4文件下载请求
-# 抖音视频/图集音频下载请求参数
-# http://localhost(服务器IP):80/bgm?url="复制的抖音/TikTok链接" - 返回mp3文件下载请求
-
-from pywebio import config, session
-from pywebio.input import *
-from pywebio.output import *
-from pywebio.platform.flask import webio_view
-from retrying import retry
-from werkzeug.urls import url_quote
-from flask import Flask, request, jsonify, make_response
-import re
-import os
-import json
-import time
-import requests
-import unicodedata
-
-app = Flask(__name__)
-title = "抖音/TikTok无水印在线解析"
-description = "支持在线批量解析下载无水印抖音/TikTok的无水印视频/图集。支持API调用,开源,免费,无广告。"
-headers = {
- 'user-agent': 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Mobile Safari/537.36 Edg/87.0.664.66'
-}
-
-
-def find_url(string):
- # 解析抖音分享口令中的链接并返回列表
- url = re.findall('http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+', string)
- return url
-
-
-def valid_check(kou_ling):
- # 校验输入的内容
- url_list = find_url(kou_ling)
- # 对每一个链接进行校验
- if url_list:
- for i in url_list:
- if 'douyin.com' in i[:31]:
- if i == url_list[-1]:
- return None
- elif 'tiktok.com' in i[:31]:
- if i == url_list[-1]:
- return None
- else:
- return '请确保输入链接均为有效的抖音/TikTok链接!'
- elif kou_ling == 'wyn':
- return None
- else:
- return '抖音分享口令有误!'
-
-
-def clean_filename(string, author_name):
- # 替换不能用于文件名的字符
- rstr = r"[\/\\\:\*\?\"\<\>\|]" # '/ \ : * ? " < > |'
- new_title = re.sub(rstr, "_", string) # 替换为下划线
- filename = 'douyin.wtf_' + new_title + '_' + author_name
- return filename
-
-
-def error_do(e, func_name, input_value=''):
- # 输出一个毫无用处的信息
- put_html("
")
- put_error("出现了意料之的错误,请检查输入值是否有效!")
- put_html('⚠详情
')
- put_table([
- ['函数名', '原因'],
- [func_name, str(e)]])
- put_html("
")
- put_markdown(
- '大量解析TikTok可能导致其防火墙限流!\n请稍等1-2分钟后再次尝试!\n如果多次尝试后仍失败,请点击[反馈](https://github.com/Evil0ctal/TikTokDownloader_PyWebIO/issues).\n你可以在右上角的关于菜单中查看本站错误日志:)')
- put_link('返回主页', '/')
- # 将错误记录在logs.txt中
- date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
- with open('logs.txt', 'a') as f:
- f.write(date + ":\n" + func_name + ': ' + str(e) + '\n' + "Input value: " + input_value + '\n')
-
-
-def loading():
- # 写一个进度条装装样子吧 :)
- set_scope('bar', position=3)
- with use_scope('bar'):
- put_processbar('bar')
- for i in range(1, 4):
- set_processbar('bar', i / 3)
- time.sleep(0.1)
-
-
-def get_tiktok_url(tiktok_link):
- # 校验TikTok链接
- if tiktok_link[:12] == "https://www.":
- return tiktok_link
- else:
- try:
- # 从请求头中获取原始链接
- response = requests.get(url=tiktok_link, headers=headers, allow_redirects=False)
- true_link = response.headers['Location'].split("?")[0]
- # TikTok请求头返回的第二种链接类型
- if '.html' in true_link:
- response = requests.get(url=true_link, headers=headers, allow_redirects=False)
- true_link = response.headers['Location'].split("?")[0]
- return true_link
- except Exception as e:
- error_do(e, get_tiktok_url, tiktok_link)
-
-
-@retry(stop_max_attempt_number=3)
-def get_video_info(original_url):
- # 利用官方接口解析链接信息
- try:
- # 原视频链接
- r = requests.get(url=original_url, allow_redirects=False)
- try:
- # 2021/12/11 发现抖音做了限制,会自动重定向网址,不能用以前的方法获取视频ID了,但是还是可以从请求头中获取。
- long_url = r.headers['Location']
- except:
- # 报错后判断为长链接,直接截取视频id
- long_url = original_url
- key = re.findall('video/(\d+)?', long_url)[0]
- api_url = f'https://www.iesdouyin.com/web/api/v2/aweme/iteminfo/?item_ids={key}'
- print("Sending request to: " + '\n' + api_url)
- js = json.loads(requests.get(url=api_url, headers=headers).text)
- # 判断是否为图集
- if js['item_list'][0]['images'] is not None:
- print("Type = images")
- image_data = js['item_list'][0]['images']
- # 图集背景音频
- image_music = str(js['item_list'][0]['music']['play_url']['url_list'][0])
- # 图集标题
- image_title = str(js['item_list'][0]['desc'])
- # 图集作者昵称
- image_author = str(js['item_list'][0]['author']['nickname'])
- # 图集作者抖音号
- image_author_id = str(js['item_list'][0]['author']['unique_id'])
- if image_author_id == "":
- # 如果作者未修改过抖音号,应使用此值以避免无法获取其抖音ID
- image_author_id = str(js['item_list'][0]['author']['short_id'])
- # 去水印图集链接
- images_url = []
- for data in image_data:
- images_url.append(data['url_list'][0])
- image_info = [images_url, image_music, image_title, image_author, image_author_id, original_url]
- return image_info, 'image', api_url
- else:
- print("Type = video")
- # 去水印后视频链接(2022年1月1日抖音APi获取到的URL会进行跳转,需要在Location中获取直链)
- video_url = str(js['item_list'][0]['video']['play_addr']['url_list'][0]).replace('playwm', 'play')
- r = requests.get(url=video_url, headers=headers, allow_redirects=False)
- video_url = r.headers['Location']
- print(video_url)
- # 视频背景音频
- if 'play_url' in js:
- video_music = str(js['item_list'][0]['music']['play_url']['url_list'][0])
- print("Getting music from playlist" + '\n' + video_music)
- else:
- print("Music not found")
- video_music = "None"
- print(video_music)
- # 视频标题
- video_title = str(js['item_list'][0]['desc'])
- print(video_title)
- # 视频作者昵称
- video_author = str(js['item_list'][0]['author']['nickname'])
- print(video_author)
- # 视频作者抖音号
- video_author_id = str(js['item_list'][0]['author']['unique_id'])
- print(video_author_id)
- if video_author_id == "":
- # 如果作者未修改过抖音号,应使用此值以避免无法获取其抖音ID
- video_author_id = str(js['item_list'][0]['author']['short_id'])
- # 返回包含数据的列表
- video_info = [video_url, video_music, video_title, video_author, video_author_id, original_url]
- return video_info, 'video', api_url
- except Exception as e:
- # 异常捕获
- error_do(e, 'get_video_info', original_url)
-
-
-@retry(stop_max_attempt_number=3)
-def get_video_info_tiktok(tiktok_url):
- # 对TikTok视频进行解析
- tiktok_url = get_tiktok_url(tiktok_url)
- print(tiktok_url)
- try:
- tiktok_headers = {
- "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9",
- "authority": "www.tiktok.com",
- "Accept-Encoding": "gzip, deflate",
- "Connection": "keep-alive",
- "Host": "www.tiktok.com",
- "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) coc_coc_browser/86.0.170 Chrome/80.0.3987.170 Safari/537.36",
- }
- html = requests.get(url=tiktok_url, headers=tiktok_headers)
- res = re.search('