I have url of a video files and I want to generate the thumbnail each of this video source url.I'm using Django.
My application does this:-
1. Crawl the some webpage
2. Extract all the video link from it.
3. If there are thumbnails, get those thumbnails.
4. if not thumbnails:
#here I need to generate video thumbnails from the
#links I extracted in 2nd step.
Is there any way to do this without downloading the complete video and generating thumbnails.
If I download each video, then there will be lot of bandwidth wastage and require lot time.
Thanks