Upload videos and create thumbnails of videos in django

Is there any model field for video in django? Any suggestion for a plugin or snippets would be appreciated.

+5
source share
2 answers

You can watch django-video . It supports sketching .

+2
source

MoviePy does not handle loading in Django, but it can generate thumbnails very easily:

from moviepy.editor import *
clip = VideoFileClip("example.mp4")
clip.save_frame("thumbnail.jpg",t=1.00)

http://zulko.imtqy.com/moviepy/index.html

+5
source

All Articles