Ciarands / vidsrc-to-resolver

A simple cli for fetching content from vidsrc.to by resolving m3u8's from common sources used by the site
69 stars 24 forks source link

Search Result found but wont play #4

Closed ttx99 closed 10 months ago

ttx99 commented 10 months ago

Screenshot_2024-01-03_18-18-40 Screenshot_2024-01-03_18-18-59 Screenshot_2024-01-03_18-18-18 Screenshot_2024-01-03_18-25-57

Ciarands commented 10 months ago

This is expected behavior, the search functionality is querying tmdb not vidsrc.to, only after the tmdb id is retrieved will it attempt to fetch from vidsrc.to, however it looks like I made an oversight in my "query_tmdb" function leading to an edge case which is returning the incorrect media-id in your case. For now, please just manually pass the media-id, ill patch asap. e.g python3 vidsrc.py -src "Vidplay" --media-id 840326 --media-type movie

ttx99 commented 10 months ago

thx for clarifying

Ciarands commented 10 months ago

Should be resolved now, basically just forgot to account for the fact that there can be multiple forms of media that share the same name, i'll probably end up making a cleaner sln though since its fairly difficult to differentiate.