Is there any model field for video in django? Any suggestion for a plugin or snippets would be appreciated.
You can watch django-video . It supports sketching .
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