vnc2swf-users Mailing List for vnc2swf (Page 25)
Status: Alpha
Brought to you by:
euske
You can subscribe to this list here.
2005 |
Jan
|
Feb
(1) |
Mar
(11) |
Apr
(9) |
May
(2) |
Jun
(2) |
Jul
(7) |
Aug
(32) |
Sep
(22) |
Oct
(31) |
Nov
(54) |
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(11) |
Feb
(14) |
Mar
(2) |
Apr
(6) |
May
(13) |
Jun
(10) |
Jul
(14) |
Aug
(12) |
Sep
(13) |
Oct
(62) |
Nov
(18) |
Dec
(12) |
2007 |
Jan
(13) |
Feb
(10) |
Mar
(27) |
Apr
(1) |
May
(10) |
Jun
(1) |
Jul
|
Aug
(10) |
Sep
(21) |
Oct
(15) |
Nov
(3) |
Dec
(4) |
2008 |
Jan
(4) |
Feb
(24) |
Mar
(1) |
Apr
(9) |
May
(7) |
Jun
(11) |
Jul
(10) |
Aug
(11) |
Sep
(4) |
Oct
|
Nov
(13) |
Dec
|
2009 |
Jan
(3) |
Feb
(4) |
Mar
(6) |
Apr
(37) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(20) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
From: Yusuke S. <yu...@cs...> - 2005-08-05 05:49:09
|
Hello, It seems there's something wrong in the mp3 file. If you can edit the ID3 tag of that file, please try removing all ID3 info. If it still doesn't work, just send me the mp3 file (if you don't mind). Yusuke Javier Rojas Go?i/Parse <jr...@pa...> wrote: > Hi Yusuke, > > First of all, congratulations for your great work, vnc2swf is great !! > > I have a problem and hope you can help, I am trying to add MP3 sound to my > recorded swf. > > I am working in Windows XP, using Python 2.4.1 My Mp3 was recorded with > Windows Sound Recorder and converted using LAME 3.93.1. > > Here is the screen I got... > > C:\python>edit.py -d -o salida.swf -a j.mp3 -S 1000 freddy.swf > Using pygame 1.7.0 > Reading mp3 file: j.mp3... > Traceback (most recent call last): > File "C:\python\edit.py", line 144, in ? > if __name__ == "__main__": main(sys.argv[1:]) > File "C:\python\edit.py", line 112, in main > info.reg_mp3blocks(fp) > File "C:\python\movie.py", line 76, in reg_mp3blocks > MP3Reader(self.mp3).read_mp3file(fp, length, nsamples, seeksamples) > File "C:\python\mp3.py", line 137, in read_mp3file > assert (h & 0xffe00000L) == 0xffe00000L, '!Frame Sync: %r' % x > AssertionError: !Frame Sync: 'j\xb3P#' > > Thanks in advance !! > > Javier Rojas |
From: <jr...@pa...> - 2005-08-05 00:41:42
|
Hi Yusuke, First of all, congratulations for your great work, vnc2swf is great !! I have a problem and hope you can help, I am trying to add MP3 sound to my recorded swf. I am working in Windows XP, using Python 2.4.1 My Mp3 was recorded with Windows Sound Recorder and converted using LAME 3.93.1. Here is the screen I got... C:\python>edit.py -d -o salida.swf -a j.mp3 -S 1000 freddy.swf Using pygame 1.7.0 Reading mp3 file: j.mp3... Traceback (most recent call last): File "C:\python\edit.py", line 144, in ? if __name__ == "__main__": main(sys.argv[1:]) File "C:\python\edit.py", line 112, in main info.reg_mp3blocks(fp) File "C:\python\movie.py", line 76, in reg_mp3blocks MP3Reader(self.mp3).read_mp3file(fp, length, nsamples, seeksamples) File "C:\python\mp3.py", line 137, in read_mp3file assert (h & 0xffe00000L) == 0xffe00000L, '!Frame Sync: %r' % x AssertionError: !Frame Sync: 'j\xb3P#' Thanks in advance !! Javier Rojas |
From: Yusuke S. <yu...@cs...> - 2005-07-27 16:19:33
|
Could you try adding 'server_result = 0' just after the "auth" (l.126) function in rfb.py by hand? ... def auth(self): + server_result = 0 if self.server_version.startswith('RFB 003.003'): ... I'll fix this in the next version. Thanks Yusuke Florian Sailer <Flo...@no...> wrote: > Hi Everyone, > > i'm trying to use pyvnc2swf but at startup i get the following message: > > ------------------------------------------------------------------------------------------ > Connected: 149.44.174.220:5900, preferred_encoding=(0,) > Traceback (most recent call last): > File "./vnc2swf.py", line 332, in ? > if __name__ == "__main__": main(sys.argv[1:]) > File "./vnc2swf.py", line 327, in main > subprocess=subprocess, debug=debug) > File "./vnc2swf.py", line 239, in vnc2swf > client.init().auth().start() > File "/tmp/pyvnc2swf-0.6.2/rfb.py", line 161, in auth > if server_result != 0: > UnboundLocalError: local variable 'server_result' referenced before assignment > ------------------------------------------------------------------------------------------ > > I'm running a SUSE 9.3 (Python 3.4, pygame 1.6.2) > > Any ideas? > > > thanks, > > Florian > > > -- > Florian Sailer, Linux Curriculum Developer > Novell Worldwide Training Services |
From: Florian S. <Flo...@no...> - 2005-07-27 16:08:53
|
Hi Everyone, i'm trying to use pyvnc2swf but at startup i get the following message: ------------------------------------------------------------------------------------------ Connected: 149.44.174.220:5900, preferred_encoding=(0,) Traceback (most recent call last): File "./vnc2swf.py", line 332, in ? if __name__ == "__main__": main(sys.argv[1:]) File "./vnc2swf.py", line 327, in main subprocess=subprocess, debug=debug) File "./vnc2swf.py", line 239, in vnc2swf client.init().auth().start() File "/tmp/pyvnc2swf-0.6.2/rfb.py", line 161, in auth if server_result != 0: UnboundLocalError: local variable 'server_result' referenced before assignment ------------------------------------------------------------------------------------------ I'm running a SUSE 9.3 (Python 3.4, pygame 1.6.2) Any ideas? thanks, Florian -- Florian Sailer, Linux Curriculum Developer Novell Worldwide Training Services |
From: <pol...@ho...> - 2005-07-24 08:35:45
|
Hi it look great this new level of vnc2swf, now pyvnc2swf the only problem, in my case is the missing frames of the video tutorials in the screen of Blender wen the capture playing only the first 50 frames are animated the res I can only see the cursor moving around to the scene & until the last frame the screen changes. this is my problem, I hope in the next release of pyvnc2swf this problen can be resolve & one more time great job. thanks _________________________________________________________________ T1msn Search. Todo lo que buscas ahora más rapido http://search.t1msn.com.mx/ |
From: <js...@vi...> - 2005-07-21 01:18:23
|
RGVhciBTaXI6DQpXZSBhcmUgdGhlIG1vbnVmYWN0dXJlciBvZiBBQlMgUGxhc3RpYyBhbmQgV29v ZGVuIFJlY29yZGVyLE1lbG9kaWNhcyBhbmQgSGFybW9uaWNhcy6hr1FpIE1laaGvIEJyYW5kIFBy b2R1Y2VzIFJhbmdlIGFzIGZvd2xvd3M6DQpSZWNvcmRlcjpzZXJpZXMgb2YgQUJTIFBsYXN0aWMg YW5kIFdvb2RlbiBSZWNvcmRlci4NCkhhcm1vbmljYTo0LUhvbGUgOC1Ub25lIEhhcm1vbmljYTsx MC1Ib2xlIDIwLVRvbmUgSGFybW9uaWNhOzE2LUhvbGUgSGFybW9uaWNhOzIwLUhvbGUgSGFybW9u aWNhIGFuZCAyNC1Ib2xlIEhhcm1vbmljYSxldGMuDQpNZWxvZGljYToxMy1rZXkgTWVsb2RpY2E7 MjUta2V5IE1lbG9kaWNhOzI3LWtleSBNZWxvZGljYTszMi1rZXkgTWVsb2RpY2E7Mzcta2V5IE1l bG9kaWNhLGV0Yy4NCkFsYXNvIHdlIHByb2R1Y2UgY2hpbGRyZW4gUGVyY3Vzc2lvbiBXZSBjYW4g ZG8gT0VNLElmIHlvdSBhcmUgaW50ZXJlc3RpbmcscGxlYXNlIGNvbnRhY3QgdXMuSHR0cDovL3d3 dy5jaGluYS1xaW1laS5jb20NCg0KDQqhoaGhoaGhoaGhoaGhoaGhanNxbUB2aXAuMTYzLmNvbQ0K oaGhoaGhoaGhoaGhoaGhoaGhoaEyMDA1LTA3LTE3DQo= |
From: Yusuke S. <yu...@cs...> - 2005-07-18 06:07:13
|
Hi guys, I've just released the first version of pyvnc2swf, another vnc2swf implementation which is written completely in Python (and Pygame). Now this supports several non-unix platforms, including OSX and Windows. It is available from the vnc2swf webpage: http://www.unixuser.org/~euske/vnc2swf/index.html Note that this is still a preliminary release. I'm interested in hearing questions/comments/bug reports. Thank you, Yusuke |
From: Alvaro L. O. <al...@al...> - 2005-07-05 08:44:21
|
Hi all, It seems like there is a bug in vnc2swf-0.4.2. vncviewer.h defines gc, srcGC, dstGC and desktopWin as "extern" but these variables are instanced on desktop.c as "static" which makes compilation to fail. A patch for fix this problem is attached. -- Greetings, alo. http://www.alobbs.com |
From: qimei <js...@vi...> - 2005-07-05 02:08:29
|
RGVhciBTaXI6DQpXZSBhcmUgdGhlIG1vbnVmYWN0dXJlciBvZiBBQlMgUGxhc3RpYyBhbmQgV29v ZGVuIFJlY29yZGVyLE1lbG9kaWNhcyBhbmQgSGFybW9uaWNhcy6hr1FpIE1laaGvIEJyYW5kIFBy b2R1Y2VzIFJhbmdlIGFzIGZvd2xvd3M6DQpSZWNvcmRlcjpzZXJpZXMgb2YgQUJTIFBsYXN0aWMg YW5kIFdvb2RlbiBSZWNvcmRlci4NCkhhcm1vbmljYTo0LUhvbGUgOC1Ub25lIEhhcm1vbmljYTsx MC1Ib2xlIDIwLVRvbmUgSGFybW9uaWNhOzE2LUhvbGUgSGFybW9uaWNhOzIwLUhvbGUgSGFybW9u aWNhIGFuZCAyNC1Ib2xlIEhhcm1vbmljYSxldGMuDQpNZWxvZGljYToxMy1rZXkgTWVsb2RpY2E7 MjUta2V5IE1lbG9kaWNhOzI3LWtleSBNZWxvZGljYTszMi1rZXkgTWVsb2RpY2E7Mzcta2V5IE1l bG9kaWNhLGV0Yy4NCkFsYXNvIHdlIHByb2R1Y2UgY2hpbGRyZW4gUGVyY3Vzc2lvbiBXZSBjYW4g ZG8gT0VNLElmIHlvdSBhcmUgaW50ZXJlc3RpbmcscGxlYXNlIGNvbnRhY3QgdXMuSHR0cDovL3d3 dy5jaGluYS1xaW1laS5jb20NCg0KDQogCQkJCQ0KDQqhoaGhoaGhoaGhoaGhoaGhcWltZWkNCqGh oaGhoaGhoaGhoaGhoaFqc3FtQHZpcC4xNjMuY29tDQqhoaGhoaGhoaGhoaGhoaGhoaGhoTIwMDUt MDctMDUNCg== |
From: Yair L. <vze...@ve...> - 2005-06-24 02:39:51
|
Hi, I'm looking for a tool that will perform the same task as vnc2swf - but = in "real time". - something that will allow a VNC sessions to be = duplicated into a flash-based viewer, without having to build the swf = file. Does anyone know if it's possible ? If possible, please cc me directly yai...@gm... Thanks Yair |
From: Bob M. <dav...@ho...> - 2005-06-06 17:26:55
|
Has anyone been successful running with TightVNC? bob |
From: Felix E. K. <fel...@in...> - 2005-05-02 10:54:26
|
The documentation of VNC2SWF is missing a pointer to the popup menu feature. Please add something like the following: Pressing F8 brings up a popup menu allowing you to start/stop recording and more. Also, documentation is missing that tells one how to get out of full screen mode. The problem is that the popup menu doesn't appear in full screen mode. -- Felix E. Klee |
From: Felix E. K. <fel...@in...> - 2005-05-02 10:38:28
|
I'd like to have mouse clicks and drags be indicated visibly, for example by a colored circle as seen in the example behind the following URL: <URL:http://www.rhino3d.tv/Trade_shows/photos_siggraph2004/ video%208%20ring%20udt.html> How could such a feature be implemented? Currently, I see the following possibilities: * Include it into the VNC server. * Include it into SWF2VNC (probably most reliable). * Have the window manager pass the click event to an application that draws a colored circle at the mouse cursor. What do you think? Please note that, at the moment, I hardly have the time to realize such a thing, but nevertheless I'd like to know what possibilities are feasible. -- Felix E. Klee |
From: <pol...@ho...> - 2005-04-26 06:55:23
|
Hi, congratulations for this exelent program & I have a problem with the files. My english is not good enougth, but I got a question I'm workin in a series of Blender tutorial on Linux & I wrote this little script: #!/bin/sh x11vnc -notruecolor & /usr/lib/blender/blender -p 290, 100 720 480 /home/francisco/Blender/Tutorial.blend & cd /usr/X11R6/bin ./recordwin /home/francisco/Tutorial.swf This appears on the terminal window: Settings: display: null authfile: null subwin: 0x0 -sid mode: 0 flashcmap: 0 force_idx: 1 visual: null overlay: 0 ovl_cursor: 1 scaling: 0 1.00000 viewonly: 0 shared: 0 conn_once: 1 timeout: 0 inetd: 0 connect: null connectfile null vnc_conn: 1 allow: null input: null passfile: null accept: null gone: null users: null using_shm: 1 flipbytes: 0 onetile: 0 solid: null blackout: null xinerama: 0 xrandr: 0 xrandrmode: null padgeom: null logfile: null logappend: 0 rc_file: "" norc: 0 bg: 0 mod_tweak: 1 isolevel3: 0 xkb: 0 skipkeys: null addkeysyms: 0 xkbcompat: 0 clearmods: 0 remap: null norepeat: 1 nofb: 0 watchbell: 1 watchsel: 1 watchprim: 1 cursor: 1 multicurs: 0 curs_mode: null xfixes: 1 alphacut: 240 alphafrac: 0.33 alpharemove:0 alphablend: 1 cursorshape:1 cursorpos: 1 xwarpptr: 0 buttonmap: null dragging: 1 ptr_mode: 2 inputskip: 10 speeds: null debug_ptr: 0 debug_key: 0 defer: 30 waitms: 30 take_naps: 1 sb: 60 sigpipe: null threads: 0 fs_frac: 0.75 gaps_fill: 4 grow_fill: 3 tile_fuzz: 2 snapfb: 0 gui: 1 gui_mode: null noremote: 0 safemode: 0 deny_all: 0 26/04/2005 01:45:55 x11vnc version: 0.7.1 lastmod: 2005-02-23 26/04/2005 01:45:55 Using X display :0.0 26/04/2005 01:45:55 XFIXES available on display, resetting cursor mode 26/04/2005 01:45:55 to: '-cursor most'. 26/04/2005 01:45:55 to disable this behavior use: '-cursor arrow' 26/04/2005 01:45:55 or '-noxfixes'. 26/04/2005 01:45:55 using XFIXES for cursor drawing. 26/04/2005 01:45:55 default visual ID: 0x21 gui: pinging :0.0 try=1 ... sending remote command: "qry=ping" via VNC_CONNECT X property. 26/04/2005 01:45:56 Read initial data from X display into framebuffer. 26/04/2005 01:45:56 X display :0.0 is 32bpp depth=24 true color FrameBuffer Info: width: 1024 height: 768 scaled_width: 1024 scaled_height: 768 indexed_color: 0 bits_per_pixel: 32 depth: 24 red_mask: 0x00ff0000 00000000111111110000000000000000 green_mask: 0x0000ff00 00000000000000001111111100000000 blue_mask: 0x000000ff 00000000000000000000000011111111 red: max: 255 shift: 16 green: max: 255 shift: 8 blue: max: 255 shift: 0 mainfb_bytes_per_line: 4096 rfb_fb_bytes_per_line: 4096 format: ZPixmap byte_order: LSBFirst bitmap_pad: 32 bitmap_unit: 32 bitmap_bit_order: LSBFirst 26/04/2005 01:45:56 setting up 32 cursors... 26/04/2005 01:45:56 done. 26/04/2005 01:45:56 Autoprobing TCP port 26/04/2005 01:45:56 Autoprobing selected port 5900 26/04/2005 01:45:57 created 32 tile_row shm polling images. 26/04/2005 01:45:57 screen setup finished. 26/04/2005 01:45:57 26/04/2005 01:45:57 The VNC desktop is localhost.localdomain:0 PORT=5900 vnc2swf version 0.4.1 - built Mar 29 2005 20:05:16 Copyright (C) 2002-2004 Yusuke Shinyama <yusuke at cs dot nyu dot edu> - Based on VNC viewer version 3.3.7 Copyright (C) 2002-2003 RealVNC Ltd. Copyright (C) 1994-2000 AT&T Laboratories Cambridge. See http://www.realvnc.com for information on VNC. error: could not connect to an x11vnc server at :0.0 (rc=1) 26/04/2005 01:46:00 Got connection from client 127.0.0.1 26/04/2005 01:46:00 other clients: VNC server supports protocol version 3.3 (viewer 3.3) gui: pinging :0.0 try=2 ... sending remote command: "qry=ping" via VNC_CONNECT X property. 26/04/2005 01:46:01 Disabled X server key autorepeat. (you can run the 26/04/2005 01:46:01 command: 'xset r on' to force it back on) 26/04/2005 01:46:01 read VNC_CONNECT: qry=ping ans=ping:localhost.localdomain:0.0 gui: ping succeeded. could not exec wish: wish - execlp: No such file or directory 26/04/2005 01:46:02 Protocol version 3.3 No authentication needed 26/04/2005 01:46:02 read VNC_CONNECT: ans=ping:localhost.localdomain:0.0 Desktop name "localhost.localdomain:0.0" Connected to VNC server, using protocol version 3.3 VNC server default format: 32 bits per pixel. Least significant byte first in each pixel. True colour: max red 255 green 255 blue 255, shift red 16 green 8 blue 0 Using default colormap and visual, TrueColor, depth 24. Using viewer's native pixel format: 32 bits per pixel. Least significant byte first in each pixel. True colour: max red 255 green 255 blue 255, shift red 16 green 8 blue 0 === WriteInitMovie: Warning: file /home/francisco/Tutorial.swf already exists, overwriting. === WriteInitMovie: Pid=4709, Opening file: "/home/francisco/Tutorial.swf" for a movie size (720, 480), frame rate 12... === Start Recording (RECORD_IMMEDIATELY) 26/04/2005 01:46:02 Pixel format for client 127.0.0.1: 26/04/2005 01:46:02 32 bpp, depth 24, little endian 26/04/2005 01:46:02 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0 26/04/2005 01:46:02 no translation needed 26/04/2005 01:46:02 Using raw encoding for client 127.0.0.1 What's wrong? The depth of the files are 24 bit , but I dont'n want this depth, I want a make ligth flash files for internet web page. I tried changing the depth in the monitor, but is the same. I'm usin a Nvidia GeForce2 64 bit graphic card, could this be the problem? 1 How can I make a 16 bit depth? 2 In the past version of x11vnc the gui appears, but not now, why? 3 How change the frame rate to 10? Thanks. _________________________________________________________________ T1msn Fotos: Todo lo que quieres saber sobre fotografía digital http://search.t1msn.com.mx/ |
From: Varun S. <var...@mp...> - 2005-04-23 20:02:46
|
Just curious..=20 =20 Is there a vnc live recorder plugin which I can use to install on a windows machine=20 And then the flash would recognize it as a recorder.=20 =20 I would like to then use it in a flash communication server to broadcast the screen (screen sharing I mean) =20 Regards, VARUN SHETTY =20 =20 |
From: Ian F. <ian...@gm...> - 2005-04-20 17:47:59
|
I've reached exactly the same point on hoary for x86. Strangely, I have vnc2swf compiled on hoard for AMD64... Has anyone come up with a solution for T.Meyarivan's problem? Ian On 4/6/05, MF <Mag...@gm...> wrote: > T.Meyarivan a =E9crit : >=20 > > the following packages are missing: > > > > x-dev libxt-dev libxmu-dev >=20 > Thanks to all who replied. Ubuntu already has a VNC server installed > but I won't be using it (locally). I would be using vnc2swf with VNC > sessions off other machines. >=20 > No, I can't find /usr/include/X11/IntrinsicP.h on this machine. >=20 > Following the advice of installing the missing libs, I also had to > install libxaw8-dev. Despite having installed libxmu-dev, it's > complaining it can't find -lXmu ... >=20 > Now make's output is: > root@tania:/home/admin/vnc2swf-0.4.2 # make > rm -f vnc2swf > c++ -O2 -Wall -g -o vnc2swf argsresources.o colour.o desktop.o > dialogs.o fullscreen.o listen.o misc.o popup.o rfbproto.o > selection.o shm.o vnc2swf.o writeswf.o sockets.o zrle.o > buildtime.o rfb/librfb.a rdr/librdr.a -lming -lz -lXmu -lXaw > -lXt -lX11 -lXext > /usr/bin/ld: cannot find -lXmu > collect2: ld returned 1 exit status > make: *** [vnc2swf] Error 1 >=20 > ldconfig -p | grep "Xmu" reports: > libXmuu.so.1 (libc6) =3D> /usr/X11R6/lib/libXmuu.so.1 > libXmu.so.6 (libc6) =3D> /usr/X11R6/lib/libXmu.so.6 >=20 > Thanks for any other hints on how to get this working :) >=20 > Cheers, >=20 > F. >=20 > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=3D6595&alloc_id=3D14396&op=3Dclick > _______________________________________________ > Vnc2swf-users mailing list > Vnc...@li... > https://lists.sourceforge.net/lists/listinfo/vnc2swf-users > |
From: Krystian <opt...@o2...> - 2005-04-08 06:40:04
|
Hi I have a Fedora 2 instalation (or F1 ;-)) and wanted to compile your program, this is what I get; writeswf.c:525: error: too few arguments to function `newSWFSound' writeswf.c:525: warning: passing arg 2 of `SWFMovie_setSoundStream' from incompatible pointer type writeswf.c: In function `WriteFinishMovie': writeswf.c:608: error: `fileOutputMethod' undeclared (first use in this function) writeswf.c:608: error: (Each undeclared identifier is reported only once writeswf.c:608: error: for each function it appears in.) make: *** [writeswf.o] Error 1 Can u help me? :) |
From: MF <Mag...@gm...> - 2005-04-06 18:07:38
|
T.Meyarivan a écrit : > the following packages are missing: > > x-dev libxt-dev libxmu-dev Thanks to all who replied. Ubuntu already has a VNC server installed but I won't be using it (locally). I would be using vnc2swf with VNC sessions off other machines. No, I can't find /usr/include/X11/IntrinsicP.h on this machine. Following the advice of installing the missing libs, I also had to install libxaw8-dev. Despite having installed libxmu-dev, it's complaining it can't find -lXmu ... Now make's output is: root@tania:/home/admin/vnc2swf-0.4.2 # make rm -f vnc2swf c++ -O2 -Wall -g -o vnc2swf argsresources.o colour.o desktop.o dialogs.o fullscreen.o listen.o misc.o popup.o rfbproto.o selection.o shm.o vnc2swf.o writeswf.o sockets.o zrle.o buildtime.o rfb/librfb.a rdr/librdr.a -lming -lz -lXmu -lXaw -lXt -lX11 -lXext /usr/bin/ld: cannot find -lXmu collect2: ld returned 1 exit status make: *** [vnc2swf] Error 1 ldconfig -p | grep "Xmu" reports: libXmuu.so.1 (libc6) => /usr/X11R6/lib/libXmuu.so.1 libXmu.so.6 (libc6) => /usr/X11R6/lib/libXmu.so.6 Thanks for any other hints on how to get this working :) Cheers, F. |
From: habana <abc...@fr...> - 2005-04-06 17:21:54
|
Did you install a vnc server before install swf2vnc ? habana Le mercredi 6 Avril 2005 17:09, MF a =E9crit=A0: > vncviewer.h =2D-=20 mon site perso :=20 Abc de la s=E9curit=E9 informatique http://abcdelasecurite.free.fr |
From: Yusuke S. <yu...@cs...> - 2005-04-06 17:15:20
|
I think you need to install an additional package, called x11-devel or something. Can you find /usr/include/X11/IntrinsicP.h on your disk? Yusuke MF <Mag...@gm...> wrote: > Hello, > > I am trying to build vnc2swf on Ubuntu Hoary 5.04 but I am stuck at make > . Usually I manage to find what's missing but I can't seem to make sense > of make's output. > > ./configure finished OK but make gives me this output: > > root@tania:/home/admin/vnc2swf-0.4.2 # make > gcc -DX_DISPLAY_MISSING=1 -DHAVE_LIBZ=1 -DHAVE_LIBMING=1 -I. > -DVNC_SOCKLEN_T=socklen_t -O2 -Wall -g -c argsresources.c > In file included from argsresources.c:25: > vncviewer.h:31:28: X11/IntrinsicP.h: No such file or directory > vncviewer.h:32:28: X11/StringDefs.h: No such file or directory > vncviewer.h:33:23: X11/Shell.h: No such file or directory > vncviewer.h:34:21: X11/Xmd.h: No such file or directory > vncviewer.h:35:24: X11/keysym.h: No such file or directory > vncviewer.h:36:23: X11/Xatom.h: No such file or directory > vncviewer.h:37:28: X11/Xmu/StdSel.h: No such file or directory > In file included from vncviewer.h:38, > from argsresources.c:25: > rfbproto.h:59: error: syntax error before "CARD16" > rfbproto.h:59: warning: no semicolon at end of struct or union > rfbproto.h:60: warning: type defaults to `int' in declaration of `y' > rfbproto.h:60: warning: data definition has no type or storage > classmake: *** [argsresources.o] Interrupt > > What am I missing here ? > > Tx for any help, > > Fabian |
From: T.Meyarivan <ma...@sa...> - 2005-04-06 17:15:13
|
> root@tania:/home/admin/vnc2swf-0.4.2 # make > gcc -DX_DISPLAY_MISSING=1 -DHAVE_LIBZ=1 -DHAVE_LIBMING=1 -I. > -DVNC_SOCKLEN_T=socklen_t -O2 -Wall -g -c argsresources.c > In file included from argsresources.c:25: > vncviewer.h:31:28: X11/IntrinsicP.h: No such file or directory > vncviewer.h:32:28: X11/StringDefs.h: No such file or directory > vncviewer.h:33:23: X11/Shell.h: No such file or directory > vncviewer.h:34:21: X11/Xmd.h: No such file or directory > vncviewer.h:35:24: X11/keysym.h: No such file or directory > vncviewer.h:36:23: X11/Xatom.h: No such file or directory > vncviewer.h:37:28: X11/Xmu/StdSel.h: No such file or directory > In file included from vncviewer.h:38, > from argsresources.c:25: the following packages are missing: x-dev libxt-dev libxmu-dev -- i guess installing them should do.. |
From: MF <Mag...@gm...> - 2005-04-06 17:09:27
|
Hello, I am trying to build vnc2swf on Ubuntu Hoary 5.04 but I am stuck at make . Usually I manage to find what's missing but I can't seem to make sense of make's output. ./configure finished OK but make gives me this output: root@tania:/home/admin/vnc2swf-0.4.2 # make gcc -DX_DISPLAY_MISSING=1 -DHAVE_LIBZ=1 -DHAVE_LIBMING=1 -I. -DVNC_SOCKLEN_T=socklen_t -O2 -Wall -g -c argsresources.c In file included from argsresources.c:25: vncviewer.h:31:28: X11/IntrinsicP.h: No such file or directory vncviewer.h:32:28: X11/StringDefs.h: No such file or directory vncviewer.h:33:23: X11/Shell.h: No such file or directory vncviewer.h:34:21: X11/Xmd.h: No such file or directory vncviewer.h:35:24: X11/keysym.h: No such file or directory vncviewer.h:36:23: X11/Xatom.h: No such file or directory vncviewer.h:37:28: X11/Xmu/StdSel.h: No such file or directory In file included from vncviewer.h:38, from argsresources.c:25: rfbproto.h:59: error: syntax error before "CARD16" rfbproto.h:59: warning: no semicolon at end of struct or union rfbproto.h:60: warning: type defaults to `int' in declaration of `y' rfbproto.h:60: warning: data definition has no type or storage classmake: *** [argsresources.o] Interrupt What am I missing here ? Tx for any help, Fabian |
From: Jimmy B. <ji...@dw...> - 2005-03-25 13:31:19
|
Hi Yusuke! I remember the other day you said that your upgrade for vnc2swf would include writing new data to disk rather than keeping it all in memory. That is a very good idea, however it would be nice if you would make it write to a file different than what the client specified then once the capture or edit was done it would move the tmp file to the name the user specified. The reason for my request is that if I want a backup file, I'll make one otherwise I want the program to follow my directions if possible. During my use of this program I have been realizing I prefer to not keep backups of the files I am working with so my typical commands are. FYI: I symlinked edit_vnc2swf to eswf. ?> recordwin ea_login.swf ?> eswf ea_login.swf ?> eswf -o ea_login.swf -f 6- ea_login.swf ?> eswf -o ea_login.swf -a ea_login.mp3 ea_login.swf Also I figured out why the timing was so far off, the python swf player is playing the swf file to fast. Jimmy |
From: Daniel S. <ds...@gm...> - 2005-03-24 21:50:32
|
Hey all, I've been trying to get vnc2swf compiling under cygwin, with no luck. I have compiled ming 0.2a (using the make, make install incantation in the readme) and I end up with a file called libming.so (plus a few symlinks) in /usr/lib. When I try to run ./configure in the vnc2swf directory, I receive the following output: loading cache ./config.cache checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... (cached) no checking for c++... c++ checking whether the C++ compiler (c++ ) works... yes checking whether the C++ compiler (c++ ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ accepts -g... (cached) no checking for ranlib... ranlib checking whether make sets ${MAKE}... yes checking how to run the C++ preprocessor... c++ -E checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for deflate in -lz... yes checking for Ming_init in -lming... no configure: error: *** ming missing - please install first or check config.log *** I have tried running configure with --with-ming=/usr/lib as well as --with-ming/usr/lib/libming.so. I'm not sure what's going on. Any ideas? |
From: Jimmy B. <ji...@dw...> - 2005-03-24 18:34:51
|
okee dokee ... i know nothing about python -- but if you need help with PHP I would be glad to help jimmy Yusuke Shinyama wrote: >Hi, > >Yes, synchronized sound recording is tough. >Instead, I recommend to record audio separately (but simultaneously >with other programs) and combine them after recording using >edit_vnc2swf. > >As for time concern, vnc2swf can record up to about 5minutes in my >experience. But you can make a longer movie than that by >concatenating multiple movies with edit_vnc2swf, too. > >Here is a sample where I used both ideas described above: > >http://www.unixuser.org/~euske/doc/pygame/pygameintro1.html (about 11min.) >(sorry the speech is in Japanese, but you can get the point.) > >The future version of vnc2swf will integrate this function >and also it will write a movie directly to a file without >holding everything on memory. > >Yusuke > > >Jimmy Brake <ji...@dw...> wrote: > > >>Hi! >> >>I record the audio for a movie as I am recording the screen. When I go >>to add the mp3 to the movie the sound gets further and further out of >>sync as the seconds pass. Presently for "Movie size: 785x716, >>framerate=12fps, frames=1639, duration=136.6s." but the sound I recorded >>is about 215s. >> >>How do fix this :-) or can I fix this? >> >>Thanks! >> >>FYI, I have been using this program for a while but i have only been >>making 30 second movies .... so the time issue has never been a major >>problem. Generally I think the program ROCKs. >> >>Jimmy >> >> > > >------------------------------------------------------- >SF email is sponsored by - The IT Product Guide >Read honest & candid reviews on hundreds of IT Products from real users. >Discover which products truly live up to the hype. Start reading now. >http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click >_______________________________________________ >Vnc2swf-users mailing list >Vnc...@li... >https://lists.sourceforge.net/lists/listinfo/vnc2swf-users > > |