Hexer10 / youtube_explode_dart

Dart library to interact with many Youtube APIs
https://pub.dev/packages/youtube_explode_dart
BSD 3-Clause "New" or "Revised" License
299 stars 122 forks source link

Shorts filter added #269

Closed igormidev closed 8 months ago

igormidev commented 8 months ago

Shorts filter implemented

Fix to this issue

What changed?

Now developers can filter only for shorts videos in a channel Example:

 final YoutubeExplode _yt = YoutubeExplode();
await _yt.channels.getUploadsFromPage(
   channel.id,
   VideoSorting.newest,
   videoType: VideoType.shorts, // <= create this setting
)
Hexer10 commented 8 months ago

Thanks for the PR! Looks good