Skip to main content

a convenient Python library for capturing cover image from video

Project description

CoverSnap

A convenient Python library for capturing cover image from video.

codecov CI-test Release GitHub

Installation

You can install CoverSnap using pip (python >= 3.8):

pip install coversnap

CLI

usage: coversnap [-h] -i INPUT -o OUTPUT

Capture image from video and save it to file, return black image if failed

optional arguments:
  -h, --help            show this help message and exit
  -i INPUT, --INPUT INPUT
                        absolute path to input video
  -o OUTPUT, --OUTPUT OUTPUT
                        absolute path to output image

Python

To capture a cover image from a video, use the capture_image function provided by the CoverSnap library. Here's an example of how to use it:

import os
import cv2
from coversnap import capture_image

input_video = "path/to/video.mp4"
output_image = "path/to/output.jpg"

# Capture the cover image from the video
img = capture_image(input_video)

# Save the captured image to the specified file
_, file_extension = os.path.splitext(output_image)
cv2.imencode(file_extension, img)[1].tofile(output_image)

License

CoverSnap is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coversnap-0.0.2.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

coversnap-0.0.2-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page