diff --git a/web_zh.py b/web_zh.py
deleted file mode 100644
index f5cc2b9..0000000
--- a/web_zh.py
+++ /dev/null
@@ -1,334 +0,0 @@
-#!/usr/bin/env python
-# -*- encoding: utf-8 -*-
-# @Author: https://github.com/Evil0ctal/
-# @Time: 2021/11/06
-# @Update: 2022/04/05
-# @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文件下载请求
-
-
-import os
-import re
-import time
-import requests
-from scraper import Scraper
-from pywebio import config, session
-from pywebio.input import *
-from pywebio.output import *
-from pywebio.platform.flask import webio_view
-from flask import Flask, request, jsonify
-
-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 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 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 error_do(reason, function, value):
- # 输出一个毫无用处的信息
- put_html("
")
- put_error("发生了了意料之外的错误,输入值已被记录。")
- put_html('⚠详情
')
- put_table([
- ['函数名', '原因', '输入值'],
- [function, str(reason), value]])
- put_markdown('可能的原因:')
- put_markdown('服务器可能被目标主机的防火墙限流(稍等片刻后再次尝试)')
- put_markdown('输入了错误的链接(暂不支持主页链接解析)')
- put_markdown('该视频已经被删除或屏蔽(你看的都是些啥(⊙_⊙)?)')
- put_markdown('你可以在右上角的关于菜单中查看本站错误日志。')
- put_markdown('[点击此处在GayHub上进行反馈](https://github.com/Evil0ctal/TikTokDownloader_PyWebIO/issues)')
- put_html("
")
- # 将错误记录在logs.txt中
- error_date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
- with open('logs.txt', 'a') as f:
- f.write(error_date + ":\n" + function + ': ' + str(reason) + '\n' + "Input value: " + value + '\n')
-
-
-def put_douyin_result(item):
- # 向前端输出表格
- api = Scraper()
- # 抖音数据
- douyin_date = api.douyin(item)
- # API链接
- short_api_url = 'https://api.douyin.wtf/api?url=' + item
- download_video = 'https://api.douyin.wtf/video?url=' + item
- download_bgm = 'https://api.douyin.wtf/music?url=' + item
- if douyin_date['status'] == 'success':
- if douyin_date['url_type'] == 'video':
- put_table([
- ['类型', '内容'],
- ['格式:', douyin_date['url_type']],
- ['视频直链: ', put_link('点击打开视频', douyin_date['nwm_video_url'], new_window=True)],
- ['视频下载:', put_link('点击下载', download_video, new_window=True)],
- ['背景音乐直链: ', put_link('点击打开音频', douyin_date['video_music'], new_window=True)],
- ['背景音乐下载:', put_link('点击下载', download_bgm, new_window=True)],
- ['视频标题: ', douyin_date['video_title']],
- ['作者昵称: ', douyin_date['video_author']],
- ['作者抖音ID: ', douyin_date['video_author_id']],
- ['原视频链接: ', put_link('点击打开原视频', item, new_window=True)],
- ['当前视频API链接: ', put_link('点击浏览API数据', douyin_date['api_url'], new_window=True)],
- ['当前视频精简API链接: ', put_link('点击浏览API数据', short_api_url, new_window=True)]
- ])
- return 'success'
- else:
- put_table([
- ['类型', '内容'],
- ['格式:', douyin_date['url_type']],
- ['背景音乐直链: ', put_link('点击打开音频', douyin_date['url_type'], new_window=True)],
- ['背景音乐下载:', put_link('点击下载', download_bgm, new_window=True)],
- ['视频标题: ', douyin_date['album_title']],
- ['作者昵称: ', douyin_date['album_author']],
- ['作者抖音ID: ', douyin_date['album_author_id']],
- ['原视频链接: ', put_link('点击打开原视频', douyin_date['original_url'], new_window=True)],
- ['当前视频API链接: ', put_link('点击浏览API数据', douyin_date['api_url'], new_window=True)],
- ['当前视频精简API链接: ', put_link('点击浏览API数据', 'short_api_url', new_window=True)]
- ])
- for i in douyin_date['album_list']:
- put_table([
- ['图片直链: ', put_link('点击打开图片', i, new_window=True), put_image(i)]
- ])
- return 'success'
- else:
- # {'status': 'failed', 'reason': e, 'function': 'API.tiktok()', 'value': original_url}
- reason = douyin_date['reason']
- function = douyin_date['function']
- value = douyin_date['value']
- error_do(reason, function, value)
- return 'failed'
-
-
-def put_tiktok_result(item):
- # 将TikTok结果显示在前端
- api = Scraper()
- # TikTok数据
- tiktok_date = api.tiktok(item)
- if tiktok_date['status'] == 'success':
- # API链接
- short_api_url = 'https://api.douyin.wtf/api?url=' + item
- download_video = 'https://api.douyin.wtf/video?url=' + item
- download_bgm = 'https://api.douyin.wtf/music?url=' + item
- put_table([
- ['类型', '内容'],
- ['视频标题: ', tiktok_date['video_title']],
- ['视频直链(有水印): ', put_link('点击打开视频', tiktok_date['wm_video_url'], new_window=True)],
- ['视频直链(无水印): ', put_link('点击打开视频', tiktok_date['nwm_video_url'], new_window=True)],
- ['视频下载(无水印):', put_link('点击下载', download_video, new_window=True)],
- ['音频(名称-作者):', tiktok_date['video_music_title'] + " - " + tiktok_date['video_music_author']],
- ['音频播放:', put_link('点击播放', tiktok_date['video_music_url'], new_window=True)],
- ['作者昵称: ', tiktok_date['video_author_nickname']],
- ['作者ID: ', tiktok_date['video_author']],
- ['粉丝数量: ', tiktok_date['video_author_followerCount']],
- ['关注他人数量: ', tiktok_date['video_author_followingCount']],
- ['获赞总量: ', tiktok_date['video_author_heartCount']],
- ['视频总量: ', tiktok_date['video_author_videoCount']],
- ['原视频链接: ', put_link('点击打开原视频', item, new_window=True)],
- ['当前视频API链接: ', put_link('点击浏览API数据', short_api_url, new_window=True)]
- ])
- return 'success'
- else:
- # {'status': 'failed', 'reason': e, 'function': 'API.tiktok()', 'value': original_url}
- reason = tiktok_date['reason']
- function = tiktok_date['function']
- value = tiktok_date['value']
- error_do(reason, function, value)
- return 'failed'
-
-
-def ios_pop_window():
- with popup("iOS快捷指令"):
- put_text('快捷指令需要在抖音或TikTok的APP内,浏览你想要无水印保存的视频或图集。')
- put_text('点击分享按钮,然后下拉找到 "抖音TikTok无水印下载" 这个选项。')
- put_text('如遇到通知询问是否允许快捷指令访问xxxx (域名或服务器),需要点击允许才可以正常使用。')
- put_text('该快捷指令会在你相册创建一个新的相薄方便你浏览保存到内容。')
- put_html('
')
- put_link('[点击获取快捷指令]', 'https://www.icloud.com/shortcuts/e8243369340548efa0d4c1888dd3c170',
- new_window=True)
-
-
-def api_document_pop_window():
- with popup("API文档"):
- put_markdown("💽API文档")
- put_markdown("API可将请求参数转换为需要提取的无水印视频/图片直链,配合IOS捷径可实现应用内下载。")
- put_link('[中文文档]', 'https://github.com/Evil0ctal/TikTokDownloader_PyWebIO#%EF%B8%8Fapi%E4%BD%BF%E7%94%A8',
- new_window=True)
- put_html('
')
- put_link('[English doc]',
- 'https://github.com/Evil0ctal/TikTokDownloader_PyWebIO/blob/main/README.en.md#%EF%B8%8Fapi-usage',
- new_window=True)
- put_html('
')
- put_markdown("🛰️API参考")
- put_markdown('抖音/TikTok解析请求参数')
- put_code('http://localhost(服务器IP):2333/api?url="复制的(抖音/TikTok)的(分享文本/链接)"\n#返回JSON')
- put_markdown('抖音/TikTok视频下载请求参数')
- put_code('http://localhost(服务器IP):2333/video?url="复制的抖音/TikTok链接"\n'
- '# 返回mp4文件下载请求\n'
- '# 大量请求时很吃服务器内存,容易崩,慎用。')
- put_markdown('抖音视频/图集音频下载请求参数')
- put_code('http://localhost(服务器IP):2333/music?url="复制的抖音/TikTok链接"\n'
- '# 返回mp3文件下载请求\n'
- '# 大量请求时很吃服务器内存,容易崩,慎用。')
-
-
-def log_popup_window():
- with popup('错误日志'):
- put_html('⚠️关于解析失败可能的原因
')
- put_markdown('服务器可能被目标主机的防火墙限流(稍等片刻后再次尝试)')
- put_markdown('输入了错误的链接(暂不支持主页链接解析)')
- put_markdown('该视频已经被删除或屏蔽(你看的都是些啥(⊙_⊙)?)')
- put_markdown('你可以在右上角的关于菜单中查看本站错误日志。')
- put_markdown('[点击此处在GayHub上进行反馈](https://github.com/Evil0ctal/TikTokDownloader_PyWebIO/issues)')
- put_html('
')
- put_text('点击logs.txt可下载日志:')
- content = open(r'./logs.txt', 'rb').read()
- put_file('logs.txt', content=content)
- with open('./logs.txt', 'r') as f:
- content = f.read()
- put_text(str(content))
-
-
-def about_popup_window():
- with popup('更多信息'):
- put_html('👀访问记录
')
- put_image('https://views.whatilearened.today/views/github/evil0ctal/TikTokDownload_PyWebIO.svg',
- title='访问记录')
- put_html('
')
- put_html('⭐Github
')
- put_markdown('[TikTokDownloader_PyWebIO](https://github.com/Evil0ctal/TikTokDownloader_PyWebIO)')
- put_html('
')
- put_html('🎯反馈
')
- put_markdown('提交:[issues](https://github.com/Evil0ctal/TikTokDownloader_PyWebIO/issues)')
- put_html('
')
- put_html('🌐视频/图集批量下载
')
- put_markdown('可以使用[IDM](https://www.zhihu.com/topic/19746283/hot)之类的工具对结果页面的链接进行嗅探。')
- put_markdown('如果你有更好的想法欢迎PR')
- put_html('
')
- put_html('💖WeChat
')
- put_markdown('微信:[Evil0ctal](https://mycyberpunk.com/)')
- put_html('
')
-
-
-@config(title=title, description=description)
-def main():
- # 设置favicon
- favicon_url = "https://raw.githubusercontent.com/Evil0ctal/TikTokDownloader_PyWebIO/main/favicon/android-chrome-512x512.png"
- session.run_js("""
- $('#favicon32,#favicon16').remove();
- $('head').append('')
- """ % favicon_url)
- # 修改footer
- session.run_js("""$('footer').remove()""")
- # 访问记录
- view_amount = requests.get("https://views.whatilearened.today/views/github/evil0ctal/TikTokDownload_PyWebIO.svg")
- put_markdown("""😼抖音/TikTok无水印在线解析
""")
- put_html('
')
- put_row([put_button("快捷指令", onclick=lambda: ios_pop_window(), link_style=True, small=True),
- put_button("API", onclick=lambda: api_document_pop_window(), link_style=True, small=True),
- put_button("日志", onclick=lambda: log_popup_window(), link_style=True, small=True),
- put_button("关于", onclick=lambda: about_popup_window(), link_style=True, small=True)
- ])
- placeholder = "批量解析请直接粘贴多个口令或链接,无需使用符号分开,支持抖音和TikTok链接混合,暂时不支持作者主页链接批量解析。"
- kou_ling = textarea('请将抖音或TikTok的分享口令或网址粘贴于此', type=TEXT, validate=valid_check, required=True,
- placeholder=placeholder,
- position=0)
- if kou_ling:
- if kou_ling == 'wyn':
- # 好想你(小彩蛋)
- with popup('给 WYN💖'):
- put_text('我大约真的没有什么才华,只是因为有幸见着了你,于是这颗庸常的心中才凭空生出好些浪漫。')
- put_text('真的好爱你呀!')
- put_link('WYN&THB', 'https://www.wynthb.com/')
- else:
- url_lists = find_url(kou_ling)
- total_urls = len(url_lists)
- # 解析开始时间
- start = time.time()
- # 放一个毫无意义的进度条
- loading()
- # 成功/失败统计
- success_count = 0
- failed_count = 0
- # 遍历链接
- for url in url_lists:
- if 'douyin.com' in url:
- if put_douyin_result(url) == 'failed':
- failed_count += 1
- continue
- else:
- success_count += 1
- else:
- if put_tiktok_result(url) == 'failed':
- failed_count += 1
- continue
- else:
- success_count += 1
- clear('bar')
- # 解析结束时间
- end = time.time()
- put_html("
")
- put_text('总共收到' + str(total_urls) + '个链接')
- put_text('成功: ' + str(success_count) + ' ' + '失败: ' + str(failed_count))
- put_text('解析共耗时: %.4f秒' % (end - start))
- put_link('返回主页', '/')
-
-
-if __name__ == "__main__":
- # 初始化logs.txt
- date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
- with open('logs.txt', 'a') as f:
- f.write("时间: " + date + " " + "程序重载完毕!" + '\n')
- app.add_url_rule('/', 'webio_view', webio_view(main), methods=['GET', 'POST', 'OPTIONS'])
- # 获取空闲端口
- if os.environ.get('PORT'):
- port = int(os.environ.get('PORT'))
- else:
- # 在这里修改默认端口(记得在防火墙放行该端口)
- port = 5000
- app.run(host='0.0.0.0', port=port)
-