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

21 lines
666 B
Python
Raw Normal View History

# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
from __future__ import absolute_import
import re
import copy
from svtplay_dl.service import Service, OpenGraphThumbMixin
from svtplay_dl.error import ServiceError
from svtplay_dl.fetcher.http import HTTP
class Filmarkivet(Service, OpenGraphThumbMixin):
supported_domains = ["filmarkivet.se"]
def get(self):
match = re.search(r'[^/]file: "(http[^"]+)', self.get_urldata())
if not match:
yield ServiceError("Can't find the video file")
return
yield HTTP(copy.copy(self.config), match.group(1), 480, output=self.output)