CoolFace
Apppublic

cagide/yt-vid

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
App README

yt-dlp Video Extractor

FastAPI service wrapping yt-dlp for adult video platform extraction.

Usage

Health check

GET /

Extract video URL

GET /extract?url=<encoded_video_url>

Response

json
{
  "url": "https://cdn.example.com/video.mp4",
  "title": "Video title",
  "duration": 300,
  "thumbnail": "https://...",
  "ext": "mp4",
  "height": 1080,
  "width": 1920
}

Deploy to HuggingFace Spaces

  1. 1.Create a new Space on HuggingFace (SDK: Docker)
  2. 2.Push these files to the Space repo
  3. 3.Wait for the build to complete (~2 min)
  4. 4.Call /extract?url=... from your Vidnio backend