Re: Generate thumbnails from videos

2010-06-14 Thread Venkatraman S
Was just wondering whether there is any video player which would give me the frame number when i stop it? I mean, probably at the click of a button when the movie is playing i need the frame number. The idea is , i am working on a component which i want to release in open source by which online

RE: Generate thumbnails from videos

2010-06-09 Thread Joe Goldthwaite
You could also check into MTN - Movie Thumbnailer; http://moviethumbnail.sourceforge.net/ _ From: django-users@googlegroups.com [mailto:django-us...@googlegroups.com] On Behalf Of Venkatraman S Sent: Wednesday, June 09, 2010 4:50 AM To: django-users@googlegroups.com Subject: Generate

Re: Generate thumbnails from videos

2010-06-09 Thread Venkatraman S
On Wed, Jun 9, 2010 at 6:33 PM, Tom Evans wrote: > Oooh, theres also a python wrapper around ffmpeg, and their example on > their frontpage does precisely what you asked for: > > http://code.google.com/p/pyffmpeg/ > > Perfect. Wish they had Windows installs for python

Re: Generate thumbnails from videos

2010-06-09 Thread Tom Evans
On Wed, Jun 9, 2010 at 1:43 PM, Baurzhan Ismagulov wrote: > On Wed, Jun 09, 2010 at 05:20:07PM +0530, Venkatraman S wrote: >> Say, a user uploads a video in my website, then how can i generate a >> thumbnail version of the video on the go? > > Executing "mplayer -vo jpeg -frames

Re: Generate thumbnails from videos

2010-06-09 Thread Baurzhan Ismagulov
On Wed, Jun 09, 2010 at 05:20:07PM +0530, Venkatraman S wrote: > Say, a user uploads a video in my website, then how can i generate a > thumbnail version of the video on the go? Executing "mplayer -vo jpeg -frames 1 -ao null FILE" and using 0001.jpg is one way; I'm not aware of a python-only

Re: Generate thumbnails from videos

2010-06-09 Thread Dmitry Dulepov
Hi! Venkatraman S wrote: > Say, a user uploads a video in my website, then how can i generate a > thumbnail version of the video on the go? In addition to ffmpeg I would give user an option to provide a thumbnail. The reason is simple: you cannot automatically choose the best frame where to take

Re: Generate thumbnails from videos

2010-06-09 Thread Tom Evans
On Wed, Jun 9, 2010 at 12:50 PM, Venkatraman S wrote: > Hi, > > Say, a user uploads a video in my website, then how can i generate a > thumbnail version of the video on the go? > > -V- > http://twitter.com/venkasub > ffmpeg would be the best way. Use python subprocess module