<%*
videoUrl = await tp.system.prompt("URL del vídeo de YouTube");
async function getVideoData() {
const videoId = videoUrl.substring(32);
const apiKey = 'YOUR_API_KEY';
const url = `https://www.googleapis.com/youtube/v3/videos?part=snippet&id=${videoId}&key=${apiKey}`;
try {