mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
0fc0c02b99
Reference: #ep14boat
10 lines
242 B
Python
10 lines
242 B
Python
class VideoRetriever(object):
|
|
def __init__(self, options, url, bitrate=0, **kwargs):
|
|
self.options = options
|
|
self.url = url
|
|
self.bitrate = int(bitrate)
|
|
self.kwargs = kwargs
|
|
|
|
def name(self):
|
|
pass
|