Download the PHP package mrmysql/youtube-transcript without Composer
On this page you can find all versions of the php package mrmysql/youtube-transcript. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mrmysql/youtube-transcript
More information about mrmysql/youtube-transcript
Files in mrmysql/youtube-transcript
Package youtube-transcript
Short Description Retrieving transcripts for youtube videos.
License WTFPL
Informations about the package youtube-transcript
YouTube Transcript
YouTube Transcript is a PHP library designed to fetch transcripts for YouTube videos. It allows you to retrieve captions in multiple languages, including auto-generated captions, and provides functionality to translate transcripts into other available languages. Inspired by jdepoix/youtube-transcript-api. I've generated this readme using one of these fancy [A]utocompletion [I]nstruments, so it might be incorrect somewhere, but overall looks good.
Features
- Retrieve both manually created and auto-generated transcripts.
- Fetch transcripts in various languages.
- Translate transcripts to other available languages.
Requirements
- PHP 7.4 or higher (including support for PHP 8.2)
- PSR-18 HTTP Client (
psr/http-client
) and HTTP Factory (psr/http-factory
)
Installation
To include this library in your project, use Composer:
Usage
1. Initialize the Transcript Fetcher
To begin, you need to set up an HTTP client and a request factory that implements the PSR-18 and PSR-17 interfaces, respectively. These dependencies are required by the TranscriptListFetcher
class.
2. Fetch the Transcript List
You can fetch the transcript list for a given YouTube video ID:
3. Retrieve and Display Transcripts
You can iterate over the available transcripts and display them:
4. Fetch a Specific Transcript
To fetch a transcript in a specific language:
You can also take all available locale codes directly from the list:
5. Translate a Transcript
If translation is available, you can translate the transcript to another language:
Exception Handling
This library comes with a set of custom exceptions to handle different scenarios:
YouTubeRequestFailedException
: Thrown when the YouTube request fails.NoTranscriptFoundException
: Thrown when no transcript is found for the given language codes.NotTranslatableException
: Thrown when attempting to translate a transcript that is not translatable.TranscriptsDisabledException
: Thrown when transcripts are disabled for the video.TooManyRequestsException
: Thrown when YouTube imposes a rate limit.