Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 117291 | Differences between
and this patch

Collapse All | Expand All

(-)pyvnc2swf-0.9.5.org/bin/recordwin.sh (-2 / +2 lines)
Lines 6-18 Link Here
6
##  Quick recording script for UNIX.
6
##  Quick recording script for UNIX.
7
##
7
##
8
##  usage:
8
##  usage:
9
##     recordwin.sh [-display disp] [-name winname] [-id winid] output.swf
9
##     recordwin [-display disp] [-name winname] [-id winid] output.swf
10
##
10
##
11
##  Requires: x11vnc, xwininfo, awk
11
##  Requires: x11vnc, xwininfo, awk
12
##
12
##
13
13
14
PYTHON=python
14
PYTHON=python
15
VNC2SWF=pyvnc2swf/vnc2swf.py
15
VNC2SWF=vnc2swf
16
X11VNC=x11vnc
16
X11VNC=x11vnc
17
XWININFO=xwininfo
17
XWININFO=xwininfo
18
AWK=awk
18
AWK=awk
(-)pyvnc2swf-0.9.5.org/pyvnc2swf/edit.py (+2 lines)
Lines 24-29 Link Here
24
##
24
##
25
25
26
import sys, re
26
import sys, re
27
# We want the auxiliary Python files in /usr/lib/pyvnc2swf.
28
sys.path.insert(0, "/usr/lib/pyvnc2swf")
27
from movie import SWFInfo, MovieContainer
29
from movie import SWFInfo, MovieContainer
28
from output import FLVVideoStream, MPEGVideoStream, SWFVideoStream, \
30
from output import FLVVideoStream, MPEGVideoStream, SWFVideoStream, \
29
     SWFShapeStream, ImageSequenceStream, MovieBuilder
31
     SWFShapeStream, ImageSequenceStream, MovieBuilder
(-)pyvnc2swf-0.9.5.org/pyvnc2swf/play.py (+2 lines)
Lines 25-30 Link Here
25
25
26
import sys, os.path, subprocess
26
import sys, os.path, subprocess
27
import pygame
27
import pygame
28
# We want the auxiliary Python files in /usr/lib/pyvnc2swf.
29
sys.path.insert(0, "/usr/lib/pyvnc2swf")
28
from image import create_image_from_string_argb
30
from image import create_image_from_string_argb
29
from movie import SWFInfo, MovieContainer
31
from movie import SWFInfo, MovieContainer
30
from output import SWFScreen, MovieOutputStream, MovieBuilder
32
from output import SWFScreen, MovieOutputStream, MovieBuilder
(-)pyvnc2swf-0.9.5.org/pyvnc2swf/vnc2swf.py (-1 / +2 lines)
Lines 28-34 Link Here
28
from tkSimpleDialog import Dialog
28
from tkSimpleDialog import Dialog
29
from struct import pack, unpack
29
from struct import pack, unpack
30
import threading
30
import threading
31
31
# We want the auxiliary Python files in /usr/lib/pyvnc2swf.
32
sys.path.insert(0, "/usr/lib/pyvnc2swf")
32
from movie import SWFInfo
33
from movie import SWFInfo
33
from output import StreamFactory
34
from output import StreamFactory
34
from rfb import RFBError, RFBNetworkClient, RFBFileParser, RFBNetworkClientForRecording, RFBStreamConverter
35
from rfb import RFBError, RFBNetworkClient, RFBFileParser, RFBNetworkClientForRecording, RFBStreamConverter

Return to bug 117291