[openmeetings-user] Re: Quality in the recordings

2011-06-13 Thread lucimara julia
Hi Sebastian; I dont know; this is my log: Log:13.06.2011 20:22:16 generateFFMPEG process-generateFFMPEG error-FFmpeg version SVN-r13582, Copyright (c) 2000-2008 Fabrice Bellard, et al. configuration: --prefix=/usr --libdir=${prefix}/lib -- shlibdir=${prefix}/lib --bindir=${prefix}/bin --incdir=

[openmeetings-user] Changes Required to access a openmeetings installation from external ip

2011-06-13 Thread Anand Ayyappan
Good Day, I am a newbie to openmeetings and had done my first installation of openmeetings today on a windows xp machine. I had it working on the localhost:5080 do i have to make any changes to the installation to make it work from the external ips. I have tried access the same from external netwo

Re : Re: Re : Re: [openmeetings-user] Openmeetings : export files (svg)

2011-06-13 Thread Guillaume
Ok Sebastian thanks so much for your help and advices. -- You received this message because you are subscribed to the Google Groups "OpenMeetings User" group. To view this discussion on the web visit https://groups.google.com/d/msg/openmeetings-user/-/-nun730zyvAJ. To post to this group, send e

Re: Re : Re: [openmeetings-user] Openmeetings : export files (svg)

2011-06-13 Thread seba.wag...@gmail.com
no actually you have to rewrite NOTHING in the client side. You only need to comment IN those lines in the file *saveAsWmlWindow.lzx* to make the download buttons available in the file-save dialog again. Sebastian 2011/6/13 Guillaume : > I see the instruction addPrint.toCall in confirmSaveAsImage

Re : Re: [openmeetings-user] Openmeetings : export files (svg)

2011-06-13 Thread Guillaume
I see the instruction addPrint.toCall in confirmSaveAsImageTypeExport. It's necessary to rewrite netRemoteCallHib and place it after confirmSaveAsImageTypeExport or not ?? (baseDrawSave.lzx) -- You received this message because you are subscribed to the Google Groups "OpenMeetings User" group

Re: [openmeetings-user] Openmeetings : export files (svg)

2011-06-13 Thread seba.wag...@gmail.com
yes 2011/6/13 Guillaume : > Yes and PrintService is the method which is server side > (org.openmeetings.app.remote) ? > > -- > You received this message because you are subscribed to the Google Groups > "OpenMeetings User" group. > To view this discussion on the web visit > https://groups.google.c

[openmeetings-user] Openmeetings : export files (svg)

2011-06-13 Thread Guillaume
Yes and PrintService is the method which is server side (org.openmeetings.app.remote) ? -- You received this message because you are subscribed to the Google Groups "OpenMeetings User" group. To view this discussion on the web visit https://groups.google.com/d/msg/openmeetings-user/-/Oogbp8muQ

Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
yes, but as I have written earlier, you need to invoke this method in the PrintService first, to create the *hash* for the servlet. Otherwise the servlet cannot find out where to get the whiteboard-objects that it should render. Sebastian 2011/6/13 Guillaume : > Ok it's cool i understand well. >

Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
Ok it's cool i understand well. I suppose that the url in question in the client side is : ( var downloadurl = 'http://'+canvas.rtmphostlocal+':'+canvas.red5httpport+canvas.httpRootKey+'ExportToImage?' + 'fileName=' + parent.savefileName +

Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
you want a download, you cannot send any file to a user without requesting it with an URL. For the client when he invokes the servlet it looks like a usual file download, while on server side the file is actually created on the fly by the servlet. Sebastian 2011/6/13 Guillaume : > I'll try to lea

Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
I'll try to learn more informations about servlets before working on this feature. But i don't understand when it is necessary to invoke a servlet in order to export the files. Can you explain me rapidly this proceed please? Thanks -- You received this message because you are subscribed to t

Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
no, that is basically the use-case of a servlet => you always invoke it by an URL. Sebastian 2011/6/13 Guillaume : > Ok i have to invoke the servlet in order to activate the svg export. > > I've got a very few knowledge about servlet so it's a little difficult. > > It is possible to invoke a ser

Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
Ok i have to invoke the servlet in order to activate the svg export. I've got a very few knowledge about servlet so it's a little difficult. It is possible to invoke a servlet without urls ? -- You received this message because you are subscribed to the Google Groups "OpenMeetings User" group.

Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
yeah, because you never invoked the servlet you've of course never see that log in the console. Sebastian 2011/6/13 Guillaume : > For the moment, i don't succeed to activate the svg export according the > feature which i want to bring. > > I just want to see the call of functions in order to und

Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
For the moment, i don't succeed to activate the svg export according the feature which i want to bring. I just want to see the call of functions in order to understand better the functionnement. But in my console (terminal Ubuntu), I see the log when i save a file : DEBUG 06-13 15:19:02.614 Co

Re: Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
Did you succeed to activate the SVG Export functionality and invoke the Servlet with some URLs ? Or how do you managed to be able to work with the servlet? Does it change anything if you write System.out.println instead of log.debug ? Sebastian 2011/6/13 Guillaume : > In the file ExporttoImage,

Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
In the file ExporttoImage, there is some instructions of logs but I never see logs of this file in the console debug. For example : ("log.debug("pBean.getWidth(),pBean.getHeight()"+pBean.getWidth()+","+pBean.getHeight()) ); line 115 ExporttoImage It is normally? -- You received this messag

Re: [openmeetings-user] issue installing

2011-06-13 Thread seba.wag...@gmail.com
http://ask.debian.net/questions/how-to-install-liblamemp3-in-debian-squeeze or simply http://www.google.de/search?q=debian+liblame&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:de:official&client=firefox-a#sclient=psy&hl=de&client=firefox-a&hs=3eR&rls=org.mozilla:de%3Aofficial&source=hp&q=debian+lame&aq

Re: [openmeetings-user] issue installing

2011-06-13 Thread shawn wilson
btw, i couldn't find lame in debian... don't know what openmeetings uses instead for audio (or what feature i'm missing - i didn't compile it). maybe there is a package that was installed in the debian tutorial that meets that dependency? also, you'll have to compile swftools if you're on debian s

Re: [openmeetings-user] issue installing

2011-06-13 Thread shawn wilson
so, as i noted, i followed the debian instructions (which they noted were pretty old). however, i switched over to the cent instructions at some point near the end of the debian instructions. what i'd recommend is to try to follow the centos instructions from start to end. use apt-cache search to

Re : Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
Thanks a lot Sebastian i'll concentrate on this part today with your recomandations. Guillaume -- You received this message because you are subscribed to the Google Groups "OpenMeetings User" group. To view this discussion on the web visit https://groups.google.com/d/msg/openmeetings-user/-/B

Re: Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
no its: org.openmeetings.servlet.outputhandler.ExportToImage.java have a look at the file baseDrawSave.lzx Line 179/186 a function called "addPrintList" is called. This function stores the current whiteboard Object-List in a Java Bean in the memory of the server in a static var. The Servlet "Expo

Re: [openmeetings-user] issue installing

2011-06-13 Thread manu balraj singh
Hello wilson, did you use xampp for the same? if you did not , then please give me the steps you used to configure my sql in dsetail. i also am facing the same problem and can not get things working. -- You received this message because you are subscribed to the Google Groups "OpenMeetings User"

Re : Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
Ok Sebastian I try to understand your recommandations. *So that is the thing todo for you => extract the image out of the document and then implement the SVG export so that it includes the documents as single page into the export file.* If I want to extract the image out of the document and then

Re: Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
Hi Guillaume, *i have to convert this image before the conversion in SWF* => No that would mean that you would have to convert every document into single pages. Actually you only need ONE page TEMPORARY, after you've exported the JPG you should delete that single page again. Otherwise you have xxx

Re : Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
Ok if understood well i have to convert this image before the conversion in SWF ? I'll try to follow your precious instructions Sebastian. Thanks a lot -- You received this message because you are subscribed to the Google Groups "OpenMeetings User" group. To view this discussion on the web v

Re: Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
Hi Guillaume, basically this feature already exists. You can save any drawing as SVG and then convert the SVG to JPG, GIF, PNG or PDF. The problem is with the documents, they are converted to SWF to show them in the browser. If you want to save the whiteboard as PDF/JPG you have to extract one p

Re : Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread Guillaume
Ok I understand. Do you think it is possible to modify a little the code source in order to permit to save files after a loading in the whiteboard ? For example, I've got a file named test.pdf . I load in the whiteboard, i do my modifications on it (print , line etc) and now i want to save this

Re: Re : Re: [openmeetings-user] Re : Openmeetings : import and export files (PDF)

2011-06-13 Thread seba.wag...@gmail.com
no the files are always stored as XML. And you can load this XML into the whiteboard again. Sebastian 2011/6/12 Guillaume : > OK and if i want to retrieve a file saved in PDF, it's not possible in this > case ? > > In the directory stored/, there is somes files *.wml. > > Guillaume > > -- > You r