play video file

Godson godson.g at gmail.com
Mon Dec 11 04:09:39 EST 2006


On 11 Dec 2006 00:10:59 -0800, fabri16 at inwind.it <fabri16 at inwind.it> 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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20061211/cdfc0d15/attachment.html>


More information about the Python-list mailing list