2014-12-31 03:35:35 +09:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import optparse
|
2023-07-25 08:22:54 +09:00
|
|
|
import os.path
|
2014-12-31 03:35:35 +09:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# Import youtube_dl
|
2023-07-25 08:22:54 +09:00
|
|
|
dirn = os.path.dirname
|
|
|
|
|
|
|
|
sys.path.insert(0, dirn(dirn(os.path.abspath(__file__))))
|
|
|
|
|
2014-12-31 03:35:35 +09:00
|
|
|
import youtube_dl
|
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
from utils import write_file
|
|
|
|
|
2014-12-31 03:35:35 +09:00
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = optparse.OptionParser(usage='%prog OUTFILE.md')
|
|
|
|
options, args = parser.parse_args()
|
|
|
|
if len(args) != 1:
|
|
|
|
parser.error('Expected an output filename')
|
|
|
|
|
|
|
|
outfile, = args
|
|
|
|
|
|
|
|
def gen_ies_md(ies):
|
|
|
|
for ie in ies:
|
2015-01-08 00:09:43 +09:00
|
|
|
ie_md = '**{0}**'.format(ie.IE_NAME)
|
2014-12-31 03:35:35 +09:00
|
|
|
ie_desc = getattr(ie, 'IE_DESC', None)
|
|
|
|
if ie_desc is False:
|
|
|
|
continue
|
|
|
|
if ie_desc is not None:
|
2015-01-08 00:09:43 +09:00
|
|
|
ie_md += ': {0}'.format(ie.IE_DESC)
|
2014-12-31 03:35:35 +09:00
|
|
|
if not ie.working():
|
|
|
|
ie_md += ' (Currently broken)'
|
|
|
|
yield ie_md
|
|
|
|
|
|
|
|
ies = sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME.lower())
|
|
|
|
out = '# Supported sites\n' + ''.join(
|
|
|
|
' - ' + md + '\n'
|
|
|
|
for md in gen_ies_md(ies))
|
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
write_file(outfile, out)
|
2014-12-31 03:35:35 +09:00
|
|
|
|
2016-11-17 20:42:56 +09:00
|
|
|
|
2014-12-31 03:35:35 +09:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|