Mika Scraper / Metadata
Interface: Metadata
Defined in: src/youtube/ytdl.ts:18
The Metadata
interface represents the essential details about a video, providing access to its title, duration, and thumbnail information.
Properties
title
title:
string
Defined in:src/youtube/ytdl.ts:19
The title of the video.
duration
duration:
string
Defined in:src/youtube/ytdl.ts:20
The duration of the video, represented as a string (e.g., βPT2M34Sβ for 2 minutes and 34 seconds).
thumbnail
thumbnail:
null
|string
Defined in:src/youtube/ytdl.ts:21
The URL of the videoβs thumbnail image. This property can either be a string representing the URL ornull
if no thumbnail is available.
Last updated on