Use Docker with shortcut commands to achieve one-click download of Douyin/Tiktok watermark-free video

foreword

When we browse Douyin or Tiktok, we often need to save videos and share them on other social platforms, but Douyin’s own download function often brings watermarks and endings to videos, which is annoying and increases later use. The difficulty of the material.

At present, existing watermark-free saving tools are usually built on web pages or using Python, which requires users to copy and share links and then operate on other pages, which is not convenient enough. Especially for iOS users, saving a video on a web page is extremely complicated.

Therefore, the author Evil0ctal proposed a new project on Github: Douyin_TikTok_Download_API , which can quickly analyze and process video links and save watermark-free videos in the form of Api. It can be used to download videos prohibited by the author from downloading, and can be used with the iOS shortcut APP to cooperate with the project to achieve in-app download.

Application Features

  • Support Douyin video/atlas parsing
  • Support overseas TikTok video analysis (no atlas analysis)
  • Support batch parsing (support Douyin/TikTok hybrid parsing)
  • Support batch download of watermark-free videos on the result page
  • Support API calls
  • Support iOS shortcuts to download watermark-free videos/atlas within the app

Example of use

1. Homepage

2. Batch parsing results

installation method

Here, the blogger introduces the use of Docker for deployment, which is convenient for everyone to install quickly on devices such as servers, NAS, and soft routers.

Saving Tiktok videos requires a special network environment. If you need a special server, please refer to –> Portal

Server installation method

1. Install Docker
Install the corresponding version of Docker according to the currently running system. For details, please refer to the official documentation or the rookie tutorial, which will not be repeated here.

2. Get the Docker image

 docker pull jre0/tiktokwebdownload

3. Run the image

 docker run -p 5000:5000 -d jre0/tiktokwebdownload

At this point, visit http://ip:5000 to use

Other equipment installation methods

If you are using NAS, soft routing, etc. with Docker management functions, you can install and manage them more quickly and easily. Here, the QNAP QTS system of QNAP is used as an example, and Synology is the same.

1. Install the image <br />Open Container Station, select Create and search for jre0/tiktokwebdownload
获取镜像

2. Modify the network port <br />In the Create Container interface, select Advanced Settings, Network, Port Forwarding, and Add. Set the host port to the port you want to access (do not use the 5000 port, it may conflict with the QTS system), and the Container port to 5000 , as shown in the following figure.
设置端口

Then click Create, after completion, use the browser to open the设备ip:端口to access

Shortcuts

Shortcut download address: click to download

After installing the shortcut command, click Share on the Douyin/Tiktok interface, more sharing, and then select the current shortcut command to save the watermark-free video to the album with one click.
分享

Due to network environment problems, there may be errors in saving Tiktok videos, and you can try several times at this time.

This article is reproduced from: https://www.jiyiblog.com/archives/0419256.html
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment