mirror of
https://github.com/kunkunsh/kunkun-ext-youtube-downloader.git
synced 2025-04-03 17:56:45 +00:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import ytdl from "@distube/ytdl-core";
|
|
|
|
export async function getVideoName(url: string): Promise<string> {
|
|
try {
|
|
const info = await ytdl.getInfo(url);
|
|
return info.videoDetails.title;
|
|
} catch (error) {
|
|
throw new Error(`Failed to get video name: ${error.message}`);
|
|
}
|
|
}
|
|
|
|
console.log(await getVideoName("https://youtu.be/jcYuaAP4jec"));
|