changeset 523:9f36a105adb3

fix vidref to allow playback from webcam Ignore-this: 68fb17fe13ea3905dd72de86fa9f7c9a
author drewp@bigasterisk.com
date Tue, 08 Jun 2010 07:09:57 +0000
parents e20419d637d5
children 880bfdd5deb0
files bin/vidref light9/vidref/main.py
diffstat 2 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/bin/vidref	Tue Jun 08 06:52:59 2010 +0000
+++ b/bin/vidref	Tue Jun 08 07:09:57 2010 +0000
@@ -1,5 +1,7 @@
 #!/usr/bin/python
 import gtk
+import sys
+sys.path.append(".")
 from light9.vidref.main import Main
 
 
--- a/light9/vidref/main.py	Tue Jun 08 06:52:59 2010 +0000
+++ b/light9/vidref/main.py	Tue Jun 08 07:09:57 2010 +0000
@@ -97,12 +97,12 @@
         
         tee = makeElem("tee")
 
-        source.link(csp)
-        csp.link(caps)
-        caps.link(tee)
-        tee.link(sink)
+        source.link(sink)#csp)
+#        csp.link(caps)
+#        caps.link(tee)
+#        tee.link(sink)
 
-        tee.link(recSink)
+#        tee.link(recSink)
 #        tee.link(sink2)
 
         mainwin.show_all()