joetats / youtube_search

Tool for searching for youtube videos to avoid using their heavily rate-limited API
MIT License
221 stars 64 forks source link

Need an option to filter live streams #36

Closed AnonymCodeGit15 closed 2 years ago

AnonymCodeGit15 commented 3 years ago

Need an option to filter live streams

AnonymCodeGit15 commented 2 years ago

I figured out that live streams can be filtered by checking if video duration views or publish time are equal to zero in this way `if video["duration"]==0 or video["views"]==0 or video["publish_time"]==0:

code to handle live streams`