def test_get_thumbnail_url(self): """ get_thubmanil_url() should return the thumbnail URL for the Vimeo video. """ self.assertTrue(vimeo.get_thumbnail_url(BASE_URL).endswith( '228/979/22897998_640.jpg'))
def set_values(self, video_obj): if vimeo.VIMEO_API_KEY and vimeo.VIMEO_API_SECRET: video_obj.thumbnail = vimeo.get_thumbnail_url(self.url, self.shortmem) video_obj.title = vimeo.scrape_title(self.url, self.shortmem) video_obj.description = strip_tags(vimeo.scrape_description(self.url, self.shortmem)) video_obj.save() return video_obj
def test_get_thumbnail_url(self): """ get_thubmanil_url() should return the thumbnail URL for the Vimeo video. """ self.assertTrue( vimeo.get_thumbnail_url(BASE_URL).endswith( '228/979/22897998_640.jpg'))
def set_values(self, video_obj): if vimeo.VIMEO_API_KEY and vimeo.VIMEO_API_SECRET: try: video_obj.thumbnail = vimeo.get_thumbnail_url( self.url, self.shortmem) or '' video_obj.small_thumbnail = vimeo.get_small_thumbnail_url( self.url, self.shortmem) or '' video_obj.title = vimeo.scrape_title(self.url, self.shortmem) video_obj.description = strip_tags( vimeo.scrape_description(self.url, self.shortmem)) except Exception: # in case the Vimeo video is private. pass
def set_values(self, video_obj): if vimeo.VIMEO_API_KEY and vimeo.VIMEO_API_SECRET: try: video_obj.thumbnail = vimeo.get_thumbnail_url( self.url, self.shortmem) or '' video_obj.small_thumbnail = vimeo.get_small_thumbnail_url( self.url, self.shortmem) or '' video_obj.title = vimeo.scrape_title(self.url, self.shortmem) video_obj.description = strip_tags( vimeo.scrape_description(self.url, self.shortmem)) except Exception: # in case the Vimeo video is private. pass r = requests.get("https://player.vimeo.com/video/{}/config".format( self.video_id)) if r.status_code == requests.codes.ok: try: video_obj.duration = r.json[u"video"]["duration"] except: pass