Skip to content

Latest commit

 

History

18 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SillyTavern YouTube Player

Also check out a companion UI extension! SillyTavern-YouTube-Videos-UI

Server plugin to extract a direct URL to a YouTube video using the yt-dlp library.

How to use

Tip

Both endpoints also support providing the URL as a query parameter.

Video URL

Send a message containing a video element with the source URL pre-wrapped with /api/plugins/youtube/play/.

For example

<video src="/api/plugins/youtube/play/https://youtu.be/zFfL0y3zyfc" autoplay controls></video>

Video info

Query the GET /api/plugins/youtube/info/ endpoint to fetch the video info.

interface VideoInfo {
    id: string;
    title: string;
    url: string;
    thumbnail: string;
    duration: number;
    description: string;
    uploader: string;
    view_count: number;
    upload_date: string;
}

Example: GET /api/plugins/youtube/info/https://youtu.be/zFfL0y3zyfc.

How to install

  1. Before you begin, make sure you set a config enableServerPlugins to true in the config.yaml file of SillyTavern.

  2. Open a terminal in your SillyTavern directory, then run the following:

cd plugins
git clone https://github.com/SillyTavern/SillyTavern-YouTube-Videos-Server
  1. Restart the SillyTavern server. The yt-dlp binary will be automatically downloaded from GitHub when you start the first video.

How to build

Clone the repository, then run npm install.

# Debug build
npm run build:dev
# Prod build
npm run build

License

AGPLv3

About

Server plugin to extract a direct URL to a YouTube video using the yt-dlp library.

Topics

Resources

Stars

16 stars

Watchers

1 watching

Forks

Used by

Contributors

Languages