mirror of
https://github.com/soimort/you-get.git
synced 2025-02-03 16:53:56 +03:00
20 lines
616 B
Python
20 lines
616 B
Python
#!/usr/bin/env python
|
|
|
|
__all__ = ['archive_download']
|
|
|
|
from ..common import *
|
|
|
|
def archive_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
|
|
html = get_html(url)
|
|
title = r1(r'<meta property="og:title" content="([^"]*)"', html)
|
|
source = r1(r'<meta property="og:video" content="([^"]*)"', html)
|
|
mime, ext, size = url_info(source)
|
|
|
|
print_info(site_info, title, mime, size)
|
|
if not info_only:
|
|
download_urls([source], title, ext, size, output_dir, merge=merge)
|
|
|
|
site_info = "Archive.org"
|
|
download = archive_download
|
|
download_playlist = playlist_not_supported('archive')
|