mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
Add get_video_thumbnail example
This commit is contained in:
parent
6274e7abf9
commit
4a70f6a868
33
examples/get_video_thumbnail.py
Executable file
33
examples/get_video_thumbnail.py
Executable file
@ -0,0 +1,33 @@
|
||||
#!/usr/bin/env python
|
||||
from __future__ import unicode_literals, print_function
|
||||
import argparse
|
||||
import ffmpeg
|
||||
import sys
|
||||
|
||||
|
||||
parser = argparse.ArgumentParser(description='Extract video thumbnail')
|
||||
parser.add_argument('in_filename', help='Input filename')
|
||||
parser.add_argument('out_filename', help='Output filename')
|
||||
parser.add_argument(
|
||||
'--time', type=int, default=0.1, help='Time offset')
|
||||
parser.add_argument(
|
||||
'--width', type=int, default=120,
|
||||
help='Width of output thumbnail (height automatically determined by aspect ratio)')
|
||||
|
||||
|
||||
def generate_thumbnail(in_filename, out_filename, time, width):
|
||||
try:
|
||||
(
|
||||
ffmpeg
|
||||
.input(in_filename, ss=time)
|
||||
.filter_('scale', width, -1)
|
||||
.output(out_filename, vframes=1, format='image2', vcodec='mjpeg')
|
||||
.run(capture_stdout=True, capture_stderr=True, overwrite_output=True)
|
||||
)
|
||||
except ffmpeg.Error as e:
|
||||
print(e.stderr.decode(), file=sys.stderr)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
args = parser.parse_args()
|
||||
generate_thumbnail(args.in_filename, args.out_filename, args.time, args.width)
|
Loading…
x
Reference in New Issue
Block a user