From 9aa9515e6693802015375b0cd9f9f2ab9d1ae8cc Mon Sep 17 00:00:00 2001 From: Raynoxis <34026291+Raynoxis@users.noreply.github.com> Date: Sat, 6 Dec 2025 19:32:09 +0100 Subject: [PATCH] Update README.md --- README.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/README.md b/README.md index bf22e18..563ba18 100644 --- a/README.md +++ b/README.md @@ -62,42 +62,6 @@ docker run -d -p 5000:5000 --name ytdlp-web raynoxis/yt-dlp-web-interface 3. Click **Download** and follow live progress (speed, ETA, executed yt-dlp command). 4. Download the generated file when it completes. -### API (if you automate) -```bash -POST /api/analyze -{ "url": "https://www.youtube.com/watch?v=VIDEO_ID" } - -POST /api/download -{ - "url": "https://www.youtube.com/watch?v=VIDEO_ID", - "video_format": "299", - "audio_format": "140", - "output_container": "mp4", - "audio_codec": "aac", - "audio_bitrate": "192k", - "audio_only": false -} - -GET /api/progress/ -GET /api/download-file// -POST /api/cleanup/ -POST /api/cleanup-all -``` - -### Permissions tips -- Keep the container non-root (default). Do not set `user: root`. -- If `downloads/` was created by root, recreate it or `chown` it to your user. -- On Podman rootless, run `./fix-permissions.sh` (or `podman unshare chown 1000:1000 downloads/`) if you hit permission errors. - -## 🤝 Contributing - -Contributions are welcome! Feel free to: - -1. Fork the project -2. Create a branch (`git checkout -b feature/improvement`) -3. Commit your changes (`git commit -am 'Add new feature'`) -4. Push the branch (`git push origin feature/improvement`) -5. Open a Pull Request ## 📝 License