-
Notifications
You must be signed in to change notification settings - Fork 9.6k
VideoExtractor
Mort Yao edited this page Nov 10, 2015
·
1 revision
Boilerplate for implementing your own VideoExtractor
:
#!/usr/bin/env python
from ..common import *
from ..extractor import VideoExtractor
class FooBar(VideoExtractor):
name = "Foo Bar"
stream_types = []
def prepare(self, **kwargs):
pass
def extract(self, **kwargs):
pass
site = FooBar()
download = site.download_by_url
download_playlist = playlist_not_supported('foo_bar')
See pinterest.py for a real-world example.