A simple and efficient tool to download TikTok videos without any watermark. This project is hosted on the Firebase Cloud Function platform.
- No Watermark: Downloads TikTok videos without the distracting watermark.
- Hosted on Firebase Cloud Function
- Send a
POST
request to the Firebase function endpoint with the desired TikTok video URL. - Receive the video media file in the response.
This project is deployed on Firebase Cloud Functions. Ensure you've done the following:
-
Create a project on firebase console
-
Install python firebase SDK
pip install firebase-admin
-
Install Firebase CLI
-
Initialize firebase cloud function project ( This repo is missing some files )
firebase init functions
-
Ensure all used dependencies are in 'requirements.txt'
-
Deploy to firebase
firebase deploy --only functions
import requests
url = 'YOUR_CLOUD_FUNCTION_ENDPOINT'
data = {'url': 'TIKTOK_VIDEO_URL'}
response = requests.post(url, data=data)
with open('video.mp4', 'wb') as f:
f.write(response.content)
- Download Shortcut
NOTE: Replace the API endpoint with your own cloud function endpoint
- Add Shortcut to Quick Actions
