mirror of
https://github.com/soimort/you-get.git
synced 2025-02-03 16:53:56 +03:00
25 lines
754 B
Python
25 lines
754 B
Python
#!/usr/bin/env python
|
|
|
|
__all__ = ['vine_download']
|
|
|
|
from ..common import *
|
|
|
|
def vine_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
|
|
html = get_html(url)
|
|
|
|
vid = r1(r'vine.co/v/([^/]+)', url)
|
|
title = r1(r'<title>([^<]*)</title>', html)
|
|
stream = r1(r'<meta property="twitter:player:stream" content="([^"]*)">', html)
|
|
if not stream: # https://vine.co/v/.../card
|
|
stream = r1(r'"videoUrl":"([^"]+)"', html).replace('\\/', '/')
|
|
|
|
mime, ext, size = url_info(stream)
|
|
|
|
print_info(site_info, title, mime, size)
|
|
if not info_only:
|
|
download_urls([stream], title, ext, size, output_dir, merge=merge)
|
|
|
|
site_info = "Vine.co"
|
|
download = vine_download
|
|
download_playlist = playlist_not_supported('vine')
|