[pypy-commit] extradoc extradoc: limit max framerate a bit

hakanardo noreply at buildbot.pypy.org
Fri Oct 19 11:06:10 CEST 2012


Author: Hakan Ardo <hakan at debian.org>
Branch: extradoc
Changeset: r4883:583d5cbd8c58
Date: 2012-10-19 11:05 +0200
http://bitbucket.org/pypy/extradoc/changeset/583d5cbd8c58/

Log:	limit max framerate a bit

diff --git a/talk/dls2012/demo/io.py b/talk/dls2012/demo/io.py
--- a/talk/dls2012/demo/io.py
+++ b/talk/dls2012/demo/io.py
@@ -47,7 +47,7 @@
             img = out
         if not self.width:
             w, h = img.width, img.height
-            self.mplayer = Popen(['mplayer', '-', '-benchmark',
+            self.mplayer = Popen(['mplayer', '-', '-fps', '200', #'-benchmark',
                                   '-demuxer', 'rawvideo',
                                  '-rawvideo', 'w=%d:h=%d:format=y8' % (w, h),
                                  '-really-quiet'],


More information about the pypy-commit mailing list