Skip to content

sunls24/vidlp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vidlp - Free Video Downloader

Overview

vidlp is a robust video downloader, constructed on the yt-dlp library, It enables you to download videos from a variety of platforms.

Preview

Deploy

Docker

docker run --name vidlp -d --restart unless-stopped -e 'HOST=0.0.0.0' -p 3003:3003 sunls24/vidlp

cookies.txt

Some platforms require cookies to download clearer videos. Look here.

touch cookies.txt
docker run --name vidlp -d --restart unless-stopped -e 'HOST=0.0.0.0' -v $(pwd)/cookies.txt:/yt-dlp/cokoies.txt -p 3003:3003 sunls24/vidlp

Docker Compose & Caddy (Recommend)

The same requires cookies.txt

version: '3.0'

services:
  vidlp:
    container_name: vidlp
    image: sunls24/vidlp:latest
    network_mode: host
    restart: unless-stopped
    volumes:
    - ./cookies.txt:/yt-dlp/cookies.txt:rw

Caddyfile

dl.example.com {
    reverse_proxy 127.0.0.1:3003
}

Support

  • Douyin / TikTok
  • Youtube
  • BiliBili
  • More (Should be supported, no filter format and tested)