Hexer10 / youtube_explode_dart

Dart library to interact with many Youtube APIs

Home Page:https://pub.dev/packages/youtube_explode_dart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there any way to get uploadDate/publishDate from channel or Playlist?

yuryilyich opened this issue · comments

Discussed in #239

Originally posted by yuryilyich May 24, 2023
When I enumerate all videos in channel, all I get is:

uploadDate: null, 
uploadDateRaw: null, 
publishDate: null, 

code snippet is as below:

 var yt = YoutubeExplode();
 await for (var video in yt.channels.getUploads(channelID))  {

 //do something
}

```</div>

You can try to get the video id (video.id) and download it again using yt.videos.get(video.id)