Python application that can be used to generate video thumbnail for mp4 and mkv file types.
Project description
What is This?
This is a Python application that can be used to generate video thumbnail for mp4 and mkv file types.
Installation
You can use pip:
~$ pip3 install thumb-gen
Configurations
(These may change during the update)
The number of screen images that should be included in the final thumbnail image.
Thumbnail image quality
Font type in the video info panel. You can add a file path of a font file (.ttf) to this.
Font size in the video info panel
Custom text in the video info panel
Download font files : FontSquirrel
~$ thumb-gen -c
or
~$ thumb-gen --config
By program default:
IMAGES = 12
IMAGE_QUALITY = 80
FONT =
FONT_SIZE = 30
CUSTOM_TEXT =
Usage
Usage options:
-h, --help show this help message and exit
-c, --config configurations
-v, --version show program's version number and exit
-f, --file input a single video
-d, --dir input videos from a directory
Console
~$ thumb-gen -h
~$ thumb-gen --help
~$ thumb-gen -c
~$ thumb-gen --config
~$ thumb-gen -v
~$ thumb-gen --version
~$ thumb-gen -f input.mp4
~$ thumb-gen --file input.mp4
~$ thumb-gen --file "d:/videos/input.mp4"
~$ thumb-gen -d videos
~$ thumb-gen --dir videos
~$ thumb-gen --dir "d:/videos"
Python
If you don’t set an output folder, thumbnail images will be saved in the video folder (video_path).
If you don’t need a custom text and custom font file (including font size) and you have already set these for the configuration file (using console or defaults), it will be added automatically. To avoid this set the custom_text value to False and add a custom font file location.
Example 1
from thumb_gen.worker import Generator
#video_path, output_path='', custom_text=True
app = Generator("C:/input/video.mp4", "C:/output/", "www.example.com")
app.run()
Example 2
import os
from thumb_gen.worker import Generator
folder = 'C:/input'
for video in os.listdir(folder):
if video.endswith('.mp4') or video.endswith('.mkv'):
app = Generator(os.path.join(folder, video), custom_text=False)
app.run()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for thumb_gen-1.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 467453c0252500066749306e256c89fd88a99dff889ac82e42f058ff73062519 |
|
MD5 | 6aec846815964a968ca86c26c0173ed7 |
|
BLAKE2b-256 | 77e47383fe915e01655c87a2ef48f2a862e819c8a73d032111cb1ebe9e04f153 |