Thillai Srini
Thillai Srini

Reputation: 11

How to create thumbnail from videos using Python

My video formats are jpeg,yuy2 etc.Need to convert into thumbnails. Is there a default size for thumbnail.

Upvotes: 1

Views: 3390

Answers (1)

Saeed Farzian
Saeed Farzian

Reputation: 322

You can use ffmpeg to work with videos (converting, thumbnail creation, ...). There is a good package to work with ffpmeg in python named python-video-converter. You can have control over each parameter using ffmpeg. Also using great Pillow package on python, you can manipulate images easily.

Upvotes: 1

Related Questions