mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
84ee181f5b
still need some more work
14 lines
343 B
Python
14 lines
343 B
Python
from __future__ import absolute_import
|
|
from svtplay_dl.utils import HTTP
|
|
|
|
class VideoRetriever(object):
|
|
def __init__(self, options, url, bitrate=0, **kwargs):
|
|
self.options = options
|
|
self.url = url
|
|
self.bitrate = int(bitrate)
|
|
self.kwargs = kwargs
|
|
self.http = HTTP()
|
|
|
|
def name(self):
|
|
pass
|