#!/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'([^<]*)', html) stream = r1(r'', 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')