Updated README.md
This commit is contained in:
parent
6a92cf9ec9
commit
41ddc14af5
2 changed files with 4 additions and 2 deletions
|
|
@ -14,13 +14,16 @@ YTPTube started as a fork of [meTube](https://github.com/alexta69/metube), Since
|
||||||
* Support per link `yt-dlp JSON config or cli options`, `cookies` & `output format`.
|
* Support per link `yt-dlp JSON config or cli options`, `cookies` & `output format`.
|
||||||
* Queue multiple URLs separated by comma.
|
* Queue multiple URLs separated by comma.
|
||||||
* A built in video player that can play any video file regardless of the format. **With support for sidecar external subtitles**.
|
* A built in video player that can play any video file regardless of the format. **With support for sidecar external subtitles**.
|
||||||
* New `/api/add_batch` endpoint that allow multiple links to be sent.
|
* New `POST /api/history` endpoint that allow one or multiple links to be sent at the same time.
|
||||||
|
* New `GET /api/history/add?url=http://..` endpoint that allow to add single item via GET request.
|
||||||
* Completely redesigned the frontend UI.
|
* Completely redesigned the frontend UI.
|
||||||
* Switched out of binary file storage in favor of SQLite.
|
* Switched out of binary file storage in favor of SQLite.
|
||||||
* Basic Authentication support.
|
* Basic Authentication support.
|
||||||
* Support for curl_cffi, see [yt-dlp documentation](https://github.com/yt-dlp/yt-dlp?tab=readme-ov-file#impersonation)
|
* Support for curl_cffi, see [yt-dlp documentation](https://github.com/yt-dlp/yt-dlp?tab=readme-ov-file#impersonation)
|
||||||
* Support for both advanced and basic mode for WebUI.
|
* Support for both advanced and basic mode for WebUI.
|
||||||
|
|
||||||
|
For more API endpoints, please refer to the [API documentation](API.md).
|
||||||
|
|
||||||
### Tips
|
### Tips
|
||||||
Your `yt-dlp` config should include the following options for optimal working conditions.
|
Your `yt-dlp` config should include the following options for optimal working conditions.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
import asyncio
|
import asyncio
|
||||||
import errno
|
import errno
|
||||||
import functools
|
import functools
|
||||||
import json
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import pty
|
import pty
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue