Metadata-Version: 1.1
Name: yturl
Version: 1.19.0
Summary: Gets direct media URLs to YouTube media
Home-page: https://github.com/cdown/yturl
Author: Chris Down
Author-email: chris@chrisdown.name
License: ISC
Description: |Build status|
        
        .. |Build status| image:: https://travis-ci.org/cdown/yturl.svg?branch=develop
           :target: https://travis-ci.org/cdown/yturl
        
        yturl gets direct media URLs to YouTube media, freeing you having to
        view them in your browser.
        
        Usage
        =====
        
        By default, yturl prints the media URL to standard output.
        
        ::
        
            $ yturl 'http://www.youtube.com/watch?v=8TCxE0bWQeQ'
            Using itag 43.
            http://r2---sn-uphxqvujvh-30al.googlevideo.com/videoplayback?source=[...]
        
        This means that you can do something like the following to watch it in
        `mpv`_:
        
        ::
        
            $ mpv "$(yturl 'http://www.youtube.com/watch?v=8TCxE0bWQeQ')"
        
        Or something like the following to download it (using `curl`_):
        
        ::
        
            $ curl -Lo bill "$(yturl 'http://www.youtube.com/watch?v=8TCxE0bWQeQ')"
        
        There is also a ``-q`` option for controlling the quality (for example ``-q
        high``), see the program help for more information.
        
        .. _mpv: http://mpv.io
        .. _curl: http://curl.haxx.se
        
        Installation
        ============
        
        Installation requires `setuptools`_.
        
        .. _setuptools: https://pypi.python.org/pypi/setuptools
        
        Stable version
        --------------
        
        ::
        
            $ pip install yturl
        
        Development version
        -------------------
        
        ::
        
            $ git clone git://github.com/cdown/yturl.git
            $ cd yturl
            $ python setup.py install
        
        Testing
        =======
        
        ::
        
            $ python setup.py test
        
        License
        =======
        
        yturl is licensed under an `ISC license`_. Full information is in the
        `LICENSE`_ file.
        
        .. _ISC license: https://en.wikipedia.org/wiki/ISC_license
        .. _LICENSE: LICENSE
        
Keywords: youtube media video
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Multimedia
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
