Re: Generate thumbnails from videos

2010-06-14 Thread Venkatraman S
--- > > *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 thumbnails from videos > > > > Hi, > &

RE: Generate thumbnails from videos

2010-06-09 Thread Joe Goldthwaite
thumbnails from videos 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 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

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 2.6 :( -V- http://twitter.c

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 1 -ao null FILE" a

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 s

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 to call to the comman

Generate thumbnails from videos

2010-06-09 Thread Venkatraman S
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 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us..