You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to get info.videoDetails.author.name, it returns undefined. This is some basic code that I use to try to get it. const ytdl = require('ytdl-core'); ytdl.getBasicInfo('https://www.youtube.com/watch?v=QHVREB6fdvI').then(info => console.log(info.videoDetails.author.name));
What it's supposed to do is to get the author name, however instead it returns undefined with no error. All the videos that I test it with just return undefined using info.videoDetails.author.name. My current ytdl-core version is 4.1.2.
The text was updated successfully, but these errors were encountered:
When I try to get info.videoDetails.author.name, it returns undefined. This is some basic code that I use to try to get it.
const ytdl = require('ytdl-core'); ytdl.getBasicInfo('https://www.youtube.com/watch?v=QHVREB6fdvI').then(info => console.log(info.videoDetails.author.name));
What it's supposed to do is to get the author name, however instead it returns undefined with no error. All the videos that I test it with just return undefined using
info.videoDetails.author.name
. My current ytdl-core version is 4.1.2.The text was updated successfully, but these errors were encountered: