def watch_video(video_id): log('watch_video started with video_id=%s' % video_id) mobile = __mobile() video_url, title = scraper.get_video_url(video_id, mobile=mobile) log('watch_video finished with video_url=%s' % video_url) return plugin.set_resolved_url(video_url)
def watch_video(video_id): video_url = scraper.get_video_url(video_id) return plugin.set_resolved_url(video_url)