Mika Scraper / VideoResult
Interface: VideoResult
Defined in: src/downloader/tiktok.ts:30
Represents the structure of a video result when a video is successfully retrieved.
Properties
type
type:
"video"
Defined in:src/downloader/tiktok.ts:31
The type property indicates that the result is categorized as a video. This value is constant and will always return"video".
title
title:
string
Defined in:src/downloader/tiktok.ts:32
The title of the video. This provides a human-readable name, usually representing the content or subject of the video.
mp4Links
mp4Links:
DownloadLink[]
Defined in:src/downloader/tiktok.ts:33
An array of links to download the video in MP4 format. Each entry in the array is an object of typeDownloadLink, which contains the specific URL for downloading the video.
mp3Link?
optionalmp3Link:DownloadLink
Defined in:src/downloader/tiktok.ts:34
An optional property that provides a link to download the audio portion of the video in MP3 format. If the MP3 version is not available, this property will be undefined.