On 11 Dec 2006 00:10:59 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

hi...
plase take me a simple code for a run a video file with tkinter???

or pymedia...

thanks

fabri

--
http://mail.python.org/mailman/listinfo/python-list


It cant be more simple than this but with pygame! most of the pymedia
examples use pygame for overlay.

http://godsongera.blogspot.com/2006/12/play-mpeg-file-with-python.html

from pygame import display,movie

overlay = display.set_mode((800,600))
m=movie.Movie("some.mpg")
m.set_display(overlay)
m.paly()
--
Godson Gera,
http://godson.auroinfo.com
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to