Mattia
Mattia
Currently is not possible to get only the playlist videos from a channel
I can try to parse the html page to retrieve those videos, note that they might change every time since youtube dynamically generate those videos
> @Hexer10 By using this package, will the view count of the videos be updated? What do you mean? The view count is taken directly from the YouTube video page,...
Just to update this issue status, seems like all the related videos are provided from a json string when the page is first loaded, so I won't even need to...
@Twapa i don't get what do you want achieve can you provide an example? Maybe open a new issue if it doesn't regard strictly this argument
@Twapa I've made an example here https://github.com/Hexer10/YouTube-Downloader-Flutter/tree/master on how to do exactly that and a bit more, it uses flutter_bloc if you need more assistance please contact me on Telegram...
If it is fine for you to pause a download while still have the stream subscription open you can use the stream `pause` and `resume` methods: ``` final _sub =...
Hi, could you send a video id which causes this issue? I've just tried the follwing code and got the duration correctly: ``` var short = await yt.videos.get('e22Nj4aS0J8'); print(short.duration); ```
Seems like Youtube update the request body (and the response) that is needed to fetch the comments.
Hi, I've introduced some more tests that should explain how to use them. Since v`1.11.0` you can either use `yt.search()` or `yt.search.search()` to search *only* videos and use a filter,...