1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00

vimeo: support for thumbnail

This commit is contained in:
Johan Andersson 2014-01-26 01:52:11 +01:00
parent f3ede2ae15
commit dfe756afe9

View File

@ -5,12 +5,12 @@ import sys
import json import json
import re import re
from svtplay_dl.service import Service from svtplay_dl.service import Service, OpenGraphThumbMixin
from svtplay_dl.utils import get_http_data from svtplay_dl.utils import get_http_data
from svtplay_dl.fetcher.http import download_http from svtplay_dl.fetcher.http import download_http
from svtplay_dl.log import log from svtplay_dl.log import log
class Vimeo(Service): class Vimeo(Service, OpenGraphThumbMixin):
supported_domains = ['vimeo.com'] supported_domains = ['vimeo.com']
def get(self, options): def get(self, options):