Back to Nuclear

yt-dlp

packages/docs/plugins/ytdlp.md

latest3.5 KB
Original Source

yt-dlp

yt-dlp API for Plugins

The yt-dlp API gives plugins access to the yt-dlp command-line tool for searching YouTube and resolving direct audio stream URLs.

Unless you want your plugin to integrate with Youtube, you probably won't need this API at all.

{% hint style="warning" %} yt-dlp is a system dependency. If it's not installed on the user's machine, this API won't be available. Always check api.Ytdlp.available before calling any methods. {% endhint %}


Availability

The yt-dlp host is only configured when Nuclear detects a working yt-dlp binary on the system. The available getter tells you whether you can use the API:

typescript
import type { NuclearPluginAPI } from '@nuclearplayer/plugin-sdk';

export default {
  async onEnable(api: NuclearPluginAPI) {
    if (!api.Ytdlp.available) {
      api.Logger.warn('yt-dlp is not installed, skipping YouTube features');
      return;
    }

    // Safe to call search() and getStream() here
  },
};

If you call search() or getStream() without a configured host, they throw Error('YtdlpAPI: No host configured').


Usage

{% tabs %} {% tab title="Searching" %}

typescript
import type { NuclearPluginAPI } from '@nuclearplayer/plugin-sdk';

export default {
  async onEnable(api: NuclearPluginAPI) {
    if (!api.Ytdlp.available) return;

    const results = await api.Ytdlp.search('Radiohead Paranoid Android', 5);

    for (const result of results) {
      api.Logger.info(`${result.title} (${result.id})`);

      if (result.duration) {
        api.Logger.info(`Duration: ${result.duration}s`);
      }
    }
  },
};

{% endtab %}

{% tab title="Getting streams" %}

typescript
import type { NuclearPluginAPI } from '@nuclearplayer/plugin-sdk';

export default {
  async onEnable(api: NuclearPluginAPI) {
    if (!api.Ytdlp.available) return;

    const results = await api.Ytdlp.search('Radiohead Paranoid Android', 1);
    if (results.length === 0) return;

    const stream = await api.Ytdlp.getStream(results[0].id);
    api.Logger.info(`Stream URL: ${stream.stream_url}`);
  },
};

{% endtab %} {% endtabs %}


Data types

YtdlpSearchResult

Returned by search(). Represents a YouTube video matching the query.

FieldTypeDescription
idstringYouTube video ID
titlestringVideo title
durationnumber | nullDuration in seconds, or null if unknown
thumbnailstring | nullThumbnail URL, or null if unavailable

YtdlpStreamInfo

Returned by getStream(). Contains the resolved audio stream URL.

FieldTypeDescription
stream_urlstringDirect audio stream URL
durationnumber | nullDuration in seconds
titlestring | nullVideo title

{% hint style="info" %} These types mirror the Rust types in packages/player/src-tauri/src/ytdlp.rs. {% endhint %}


Reference

typescript
// Availability
api.Ytdlp.available: boolean

// Search YouTube for videos
api.Ytdlp.search(query: string, maxResults?: number): Promise<YtdlpSearchResult[]>

// Resolve a video ID to a playable stream URL
api.Ytdlp.getStream(videoId: string): Promise<YtdlpStreamInfo>

Stream expiry

Audio stream URLs from YouTube are ephemeral. They expire after a few hours. Don't store them for later use. Resolve a fresh URL each time you need to play a track.

{% hint style="info" %} This API is primarily used by streaming providers. Most plugins won't need it. {% endhint %}