Metadata-Version: 2.0
Name: thumbup
Version: 0.2.0rc2
Summary: a convenient video thumbnails generator, based on ffmpeg
Home-page: https://github.com/bl4ck5un/thumbup.py
Author: Fan Zhang
Author-email: bl4ck5unxx@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: video thumbnail snapshot
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: pillow
Requires-Dist: av

thumbup
=======

video thumbnails generator written in Python, based on ffmpeg.

Getting thumbup
---------------

.. code-block:: 

  pip install thumbup

You'll need ``ffmpeg`` before you can use ``thumbup``, which can be installed by

.. code-block:: shell

  # on macOS
  brew install ffmpeg
  # on ubuntu
  sudo apt-get install ffmpeg

``ffmpeg`` is also widely available for many other distros. Please refer to the official website https://www.ffmpeg.org/download.html.

Usage
-----

To generate thumbnails for video files, use

.. code-block::

  thumbup file1 file2

The above will create ``file1.jpg`` and ``file2.jpg``.

To generate thumbnails for all video files in directory ``dir``, use ``-R`` option. ``thumbup`` will recursively go through every video in directory ``dir`` and generate thumbnails next to them.

.. code-block::

  thumbup -R dir


