docs: Added README."en".md translation via https://github.com/dephraiim/translate-readme

This commit is contained in:
github-actions[bot] 2022-08-30 02:04:47 +00:00
parent 8f1bbe7a10
commit 6803bee793

View file

@ -10,14 +10,14 @@ Language: \[[English](https://github.com/Evil0ctal/Douyin_TikTok_Download_API/b
## 👻Introduction ## 👻Introduction
> For stability reasons, temporarily close /video (returns mp4 files) and /music (returns mp3 files) of the demo station > For stability reasons, temporarily close /video (returns mp4 files) and /music (returns mp3 files) of the demo station
> These two functions, and the batch download function of the result page are also temporarily unavailable. If you need it, please deploy it yourself. Other functions can still be used normally on the demo site. The API server guarantees 99% of the time to run normally, but does not guarantee 100% resolution. Success, if parsing fails please wait a minute or two and try again. > These two functions, and the batch download function of the result page are also temporarily unavailable. If you need it, please deploy it yourself. Other functions can still be used normally on the demo site. The API server guarantees 99% of the time to run normally, but does not guarantee 100% parsing. Success, if parsing fails please wait a minute or two and try again.
🚀Demo address:<https://douyin.wtf/> 🚀Demo address:<https://douyin.wtf/>
🛰API demo:<https://api.douyin.wtf/> 🛰API demo:<https://api.douyin.wtf/>
💾iOS Shortcuts (Chinese):[Click to get](https://www.icloud.com/shortcuts/331073aca78345cf9ab4f73b6a457f97)( 💾iOS Shortcuts (Chinese):[Click to get](https://www.icloud.com/shortcuts/331073aca78345cf9ab4f73b6a457f97)(
Updated on 2022/07/18, the shortcut command can automatically check for updates, just install it once. ) Updated on 2022/07/18, the shortcut command can automatically check for updates, and you can install it once. )
🌎iOS Shortcut(English):[Click to get](https://www.icloud.com/shortcuts/83548306bc0c4f8ea563108f79c73f8d)(Updated on 🌎iOS Shortcut(English):[Click to get](https://www.icloud.com/shortcuts/83548306bc0c4f8ea563108f79c73f8d)(Updated on
2022/07/18, this shortcut will automatically check for updates, only need to install it once.) 2022/07/18, this shortcut will automatically check for updates, only need to install it once.)
@ -28,7 +28,7 @@ Updated on 2022/07/18, the shortcut command can automatically check for updates,
This project uses[PyWebIO](https://github.com/pywebio/PyWebIO)、[Flask](https://github.com/pallets/flask), using Python to implement online batch parsing of Douyin's watermark-free video/atlas. This project uses[PyWebIO](https://github.com/pywebio/PyWebIO)、[Flask](https://github.com/pallets/flask), using Python to implement online batch parsing of Douyin's watermark-free video/atlas.
It can be used to download videos that the author prohibits to download, or to perform data crawling, etc., and can be matched with[Shortcut APP that comes with iOS](https://apps.apple.com/cn/app/%E5%BF%AB%E6%8D%B7%E6%8C%87%E4%BB%A4/id915249334)Cooperate with this project API to realize in-app download. It can be used to download videos that the author prohibits to download, or to perform data crawling, etc., and can be matched with[Shortcut APP that comes with iOS](https://apps.apple.com/cn/app/%E5%BF%AB%E6%8D%B7%E6%8C%87%E4%BB%A4/id915249334)Cooperate with the API of this project to realize in-app download.
The shortcut command needs to be in the Douyin or TikTok app, select the video you want to save, click the share button, and then find "Douyin TikTok No Watermark Download" The shortcut command needs to be in the Douyin or TikTok app, select the video you want to save, click the share button, and then find "Douyin TikTok No Watermark Download"
This option, if you encounter a notification asking whether to allow shortcut commands to access xxxx (domain name or server), you need to click Allow before it can be used normally. The successfully downloaded video or gallery will be saved in a special album for easy browsing. This option, if you encounter a notification asking whether to allow shortcut commands to access xxxx (domain name or server), you need to click Allow before it can be used normally. The successfully downloaded video or gallery will be saved in a special album for easy browsing.
@ -54,7 +54,7 @@ This option, if you encounter a notification asking whether to allow shortcut co
- Parse the result page to download watermark-free videos in batches - Parse the result page to download watermark-free videos in batches
- Support API calls - Support API calls
- Support using proxy resolution - Support using proxy resolution
- 支持[iOS Shortcuts](https://apps.apple.com/cn/app/%E5%BF%AB%E6%8D%B7%E6%8C%87%E4%BB%A4/id915249334)Realize in-app download of video/atlas without watermark - support[iOS Shortcuts](https://apps.apple.com/cn/app/%E5%BF%AB%E6%8D%B7%E6%8C%87%E4%BB%A4/id915249334)Realize in-app download of video/atlas without watermark
* * * * * *
@ -197,7 +197,7 @@ The API can convert the request parameters into a watermark-free video/picture s
http://localhost(服务器IP):2333/api?url="复制的(抖音/TikTok)口令/链接" http://localhost(服务器IP):2333/api?url="复制的(抖音/TikTok)口令/链接"
``` ```
- return parameter - 返回参数
> Douyin video > Douyin video
@ -371,57 +371,35 @@ The project is deployed on a South Korean server, parsing TikTok errors, and vis
## 💾Deployment (Method 2 Docker) ## 💾Deployment (Method 2 Docker)
- Install docker (Ubuntu) - install docker
```console ```yaml
curl -fsSL get.docker.com -o get-docker.sh&&sh get-docker.sh &&systemctl enable docker&&systemctl start docker curl -fsSL get.docker.com -o get-docker.sh&&sh get-docker.sh &&systemctl enable docker&&systemctl start docker
``` ```
- Pull the docker image - Just leave the config.int and docker-compose.yml files
- Run the command to keep the container running in the background
```console ```yaml
docker pull evil0ctal/douyin_tiktok_download_api docker compose up -d
``` ```
- Containers for running web and API services (optional 1 or 2) - View container logs
> 1\. Mapping ports ```yaml
> API entry: http&#x3A;//localhost:2333 Web entry: http&#x3A;//localhost:80 docker logs -f douyin_tiktok_download_api
>
> ```console
> # 映射容器的5000端口到本机80
> docker run -d -p 80:5000 -p 2333:2333 evil0ctal/douyin_tiktok_download_api
> ```
> 2\. Do not map ports
> API entry: http&#x3A;//localhost:2333 Web entry: http&#x3A;//localhost:5000
>
> ```console
> docker run -d evil0ctal/douyin_tiktok_download_api
> ```
- View container ID
```console
docker ps
```
- stop container
```console
docker stop [容器ID]
``` ```
- delete container - delete container
```console ```yaml
docker rm --force [容器ID] docker rm -f douyin_tiktok_download_api
``` ```
- update mirror - renew
```console ```yaml
sudo docker pull evil0ctal/douyin_tiktok_download_api:latest docker compose pull && docker compose down && docker compose up -d
``` ```
## 🎉 Screenshot ## 🎉 Screenshot