ytmusicapi/ytmusicapi

Unofficial API for YouTube Music

v1.6.0 2024-04-11 07:41 UTC

This package is auto-updated.

Last update: 2024-04-11 07:44:17 UTC


README

About

This is a port of the ytmusicapi package available for Python. It tries to stay as close to the original as possible. All API function names, parameter names, and public methods have been kept the same as in their original Python library. Keeping everything the same should make it easy to reference their documentation. This package is currently feature compatable with YtMusicAPI v1.6.0.

Requirements

This package was developed and tested in PHP 8.2 and the testing library requires 8.1+ so I have not tested in anything lower than PHP 8.2. That being said, I have tried to keep the code compatible with PHP 7.4+.

This package uses the requests package for communication with YouTube Music.

Known Differences From Python Version

  • The option to open the web browser from the command line is not available in OAuth setup.

  • No support for locales or languages.

  • You can pass a cookie string from your browser as the $auth parameter in the YTMusic constructor in the PHP version.

  • Addition of get_account() function to get information about the authorized account. This was developed before the Python version's get_account_info() function.

  • Addition of get_transcript() function, which is basically timestamped lyrics. Not all songs have this available.

  • Addition of get_playlist_continuation() which allows pagniated results of tracks. Useful when wanting to provide a progress indicator while loading a playlist.

  • Addition of get_song_info() to get basic information about a track, include if the track is a music video or not.

  • Addition of get_track() to get regular track information about a track. This function is useful to get track information in the form of a Track type with the addition of IDs to get lyrics and related tracks.

  • There are various minor differences throughout. They have been labeled in the code with "Known differences."

  • Typehints were added for your text editor.

Installation

composer require ytmusicapi/ytmusicapi

Setup

To do anything specific with your own data, such as view private playlists or edit your playlist, you will need to authenticate to YouTube Music. There are several ways to authenticate:

OAuth

OAuth is the simplest and recommended form of authorization. Run:

php vendor/bin/setup-ytmusicapi oauth

Go to the URL provided and go through Google's authorization procedure. When complete, press enter. A file named oauth.json will be created. You can then use that file to authenticate to YouTube Music.

$yt = new Ytmusicapi\YTMusic("oauth.json");

You can optionally specify a filename if you don't want to use the default oauth.json.

php vendor/bin/setup-ytmusicapi oauth --filename=youtubemusic.json

Browser

Please note that this method requires Firefox to work correctly.

  • Open a new tab
  • Open the developer tools (Ctrl-Shift-I or Cmd-Shift-I) and select the “Network” tab
  • Go to https://music.youtube.com and ensure you are logged in
  • Find an authenticated POST request to a /browse or /next endpoint. The simplest way is to filter by browse or next using the search bar of the developer tools. If you don’t see the request, try scrolling down a bit or clicking on the library button in the top bar. If you still don't find a request, play a song and one should show up.
  • Once you've found a request, right click on it, select Copy Value then Copy Request Headers.

Run the following command:

php vendor/bin/setup-ytmusicapi browser

Paste the headers and press enter twice to continue. A file named browser.json will be created. You can then use that file to authenticate to YouTube Music.

$yt = new Ytmusicapi\YTMusic("browser.json");

Cookies

You can use your dev tools in your browser while on YouTube Music to fetch your cookie value. In Network Tools, find a browse or next endpoint and click the Headers option to view the request headers. Copy your cookie value to the clipboard. Also make note of the value of X-Goog-Authuser value. In your PHP script, you can then use the following:

$cookie = "...Paste Cookie value from YouTube Music...";
$user = "...Value of X-Goog-Authuser from YouTube Music...";

$yt = new Ytmusicapi\YTMusic($cookie, $user);

Manual Configuration File

Create a JSON file with the cookies and user value from headers found in the Network tab within developer tools. You can do this by searching for a request to a browse or next endpoint from within YouTube Music. Once found, click the Headers tab and copy/paste the Cookie and X-Goog-Authuser values into a JSON file which looks like:

{
    "cookie": "PASTE COOKIE VALUE HERE",
    "x-goog-authuser": "PASTE X-GOOG-AUTHUSER VALUE HERE"
}

Examples

// Fetch information about a song

require "vendor/autoload.php";

$yt = new Ytmusicapi\YTMusic();
$song = $yt->get_song('kJQP7kiw5Fk');
print_r($song);
// Display tracks from liked music list, displaying a progress indicator.
// Since the liked music playlist is private, you need to be authenticated.
// This example requires PHP 8.0+ due to usage of named parameters.

$yt = new Ytmusicapi\YTMusic("oauth.json");

try {
    $playlist = $yt->get_playlist("LM", get_continuations: false);
    $tracks = $playlist->tracks;

    // This is the number of tracks YouTube says is in the playlist.
    // However, hidden or deleted tracks may make your actual
    // count a bit lower.
    $count = $playlist->track_count;

    while ($playlist->continuation) {
        echo "Loaded " . count($tracks) . " of approximately $count tracks\n";

        $playlist = $yt->get_playlist_continuation("LM", $playlist->continuation);

        $tracks = array_merge($tracks, $playlist->tracks);
    }
    echo "Loaded " . count($tracks) . PHP_EOL;

    foreach ($tracks as $track) {
        $artists = array_map(fn ($artist) => $artist->name, $track->artists);
        echo $track->title . " - " . implode(", ", $artists) . PHP_EOL;
    }
} catch (Exception $ex) {
    echo $ex->getMessage() . PHP_EOL;
}
// Fetch information about a podcast episode

$yt = new Ytmusicapi\YTMusic();
$result = $yt->get_episode("nDnLSYCOg7E");

echo "Author: {$result->author->name}\n";
echo "Title: {$result->title}\n";
echo "Date: {$result->date}\n";
echo "Duration: {$result->duration}\n";
echo "Playlist ID: {$result->playlistId}\n";
echo "Description: {$result->description}\n";

Usage

View the files in the tests/Features to view example usage of many functions.

Reference

The following functions have been implemented. A link to the original python documentation is provided for reference. In addition, your editor's Intellisense may be able to provide reference documentation.

Search

Browsing

Explore

Watch

Library

Playlists

Uploads

Podcasts

Credits

This library is based almost 100% on sigma67's ytmusicapi library for python. https://github.com/sigma67/ytmusicapi. And when I say almost entirely, I mean it. Same function names, same parameter names, same variable names, same logic except where PHP neccessitates different logic.

OpenAI's GPT-4 and GitHub CoPilot helped a lot in converting code from Python to PHP. It's not perfect, but it certainly made things easier and faster. It wasn't very good at writing tests.