FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Mark Lin
Hello
using VPS - debian-6.0-x86_64

trying to install ffmpeg according to -
https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

Related regulations have been installed without any problem...
but when make is end I getting ERROR -

CC  cmdutils.o
CC  ffmpeg_opt.o
CC  ffmpeg_filter.o
LD  ffmpeg_g
/usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
X264_init:libavcodec/libx264.c:677: error: undefined reference to
'x264_encoder_open_142'
collect2: ld returned 1 exit status
make: *** [ffmpeg_g] Error 1

i tried several times to build ffmpeg with build x264 as the guide shown

so remove x264 and install it from the debian repository -
https://packages.debian.org/unstable/graphics/x264

but ending with the same result.

someone have an idea?

Thank you


Re: FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Maxim Solodovnik
I'm using this guide https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu


On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

 CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide shown

 so remove x264 and install it from the debian repository -
 https://packages.debian.org/unstable/graphics/x264

 but ending with the same result.

 someone have an idea?

 Thank you




-- 
WBR
Maxim aka solomax


hide/show user list screen

2014-09-01 Thread benoit . rousselle
hello,

I would like to cutomize my OM environment (debian squeezy / OM 3.0.2) and 
I would like to know if :
- it is possible to hide the user-list on the left screen when you enter in 
a room ? 
- it is possible to auto-close the user-list when you enter in the room
- it is possible to hide video window of administrator or user ?

I'm wondering if I can design all my screens very precisely. I know that I 
can modify custom.css  to modify colors, and hide/show part in Room layout 
Options. But is it possible to do more modifications ?

Ben


Re: hide/show user list screen

2014-09-01 Thread Maxim Solodovnik
CSS changes are only affects HTML part of OM.

It all possible, but require code modification


On 1 September 2014 22:17, benoit.rousse...@gmail.com wrote:

 hello,

 I would like to cutomize my OM environment (debian squeezy / OM 3.0.2) and
 I would like to know if :
 - it is possible to hide the user-list on the left screen when you enter
 in a room ?
 - it is possible to auto-close the user-list when you enter in the room
 - it is possible to hide video window of administrator or user ?

 I'm wondering if I can design all my screens very precisely. I know that I
 can modify custom.css  to modify colors, and hide/show part in Room
 layout Options. But is it possible to do more modifications ?

 Ben




-- 
WBR
Maxim aka solomax


Re: FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Mark Lin
Thank you Maxim
 i just finished the ffmpeg installation with sacces.

and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

result -

:~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
  built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
  configuration: --prefix=/root/ffmpeg_build
--extra-cflags=-I/root/ffmpeg_build/include
--extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
--enable-libass --enable-libfdk-aac --enable-libfreetype
--enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis
--enable-libvpx --enable-libx264 --enable-nonfree
  libavutil  54.  7.100 / 54.  7.100
  libavcodec 56.  1.100 / 56.  1.100
  libavformat56.  3.100 / 56.  3.100
  libavdevice56.  0.100 / 56.  0.100
  libavfilter 5.  0.103 /  5.  0.103
  libswscale  3.  0.100 /  3.  0.100
  libswresample   1.  1.100 /  1.  1.100
  libpostproc53.  0.100 / 53.  0.100
/root/input.mp4: No such file or directory

But can't see ffmpeg at /usr/local/bin

DO I NEED TO COMMAND

echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man  ~/.manpath
. ~/.profile

Thank you



2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu


 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide shown

 so remove x264 and install it from the debian repository -
 https://packages.debian.org/unstable/graphics/x264

 but ending with the same result.

 someone have an idea?

 Thank you




 --
 WBR
 Maxim aka solomax


Re: FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Maxim Solodovnik
you can copy or make symbolic links to get necessary applications in
/usr/local/bin/


On 1 September 2014 22:56, Mark Lin mlin40...@gmail.com wrote:

 Thank you Maxim
  i just finished the ffmpeg installation with sacces.

 and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

 result -

 :~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
 ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
   configuration: --prefix=/root/ffmpeg_build
 --extra-cflags=-I/root/ffmpeg_build/include
 --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
 --enable-libass --enable-libfdk-aac --enable-libfreetype
 --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis
 --enable-libvpx --enable-libx264 --enable-nonfree
   libavutil  54.  7.100 / 54.  7.100
   libavcodec 56.  1.100 / 56.  1.100
   libavformat56.  3.100 / 56.  3.100
   libavdevice56.  0.100 / 56.  0.100
   libavfilter 5.  0.103 /  5.  0.103
   libswscale  3.  0.100 /  3.  0.100
   libswresample   1.  1.100 /  1.  1.100
   libpostproc53.  0.100 / 53.  0.100
 /root/input.mp4: No such file or directory

 But can't see ffmpeg at /usr/local/bin

 DO I NEED TO COMMAND

 echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man  ~/.manpath
 . ~/.profile

 Thank you



 2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide shown

 so remove x264 and install it from the debian repository -
 https://packages.debian.org/unstable/graphics/x264

 but ending with the same result.

 someone have an idea?

 Thank you




 --
 WBR
 Maxim aka solomax




-- 
WBR
Maxim aka solomax


Re: FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Maxim Solodovnik
maybe you can increase user volume?


On 1 September 2014 23:35, Mark Lin mlin40...@gmail.com wrote:

 Ok i copied the ffmpeg to /local/usr/bin and i can record with OP,

 i can see the video
 but can't hear any sound,
 what i should take care of?


 2014-09-01 18:05 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 you can copy or make symbolic links to get necessary applications in
 /usr/local/bin/



 On 1 September 2014 22:56, Mark Lin mlin40...@gmail.com wrote:

 Thank you Maxim
  i just finished the ffmpeg installation with sacces.

 and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

 result -

 :~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
 ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
   configuration: --prefix=/root/ffmpeg_build
 --extra-cflags=-I/root/ffmpeg_build/include
 --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
 --enable-libass --enable-libfdk-aac --enable-libfreetype
 --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis
 --enable-libvpx --enable-libx264 --enable-nonfree
   libavutil  54.  7.100 / 54.  7.100
   libavcodec 56.  1.100 / 56.  1.100
   libavformat56.  3.100 / 56.  3.100
   libavdevice56.  0.100 / 56.  0.100
   libavfilter 5.  0.103 /  5.  0.103
   libswscale  3.  0.100 /  3.  0.100
   libswresample   1.  1.100 /  1.  1.100
   libpostproc53.  0.100 / 53.  0.100
 /root/input.mp4: No such file or directory

 But can't see ffmpeg at /usr/local/bin

 DO I NEED TO COMMAND

 echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man  ~/.manpath
 . ~/.profile

 Thank you



 2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide
 https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide shown

 so remove x264 and install it from the debian repository -
 https://packages.debian.org/unstable/graphics/x264

 but ending with the same result.

 someone have an idea?

 Thank you




 --
 WBR
 Maxim aka solomax




 --
 WBR
 Maxim aka solomax




-- 
WBR
Maxim aka solomax


Re: FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Mark Lin
I tried with increasing user volume but nothing
when i test recording in the edit record streampopup window, there is no
problem, i can hear sound very clearly,
but in the video there is no sound,
any idea? maybe it is related to VPS software installation

and when trying to add it to youtube - i can upload the flv file but not
proccing happen it is just stuck at 0%

Thank you


2014-09-01 18:40 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 maybe you can increase user volume?


 On 1 September 2014 23:35, Mark Lin mlin40...@gmail.com wrote:

 Ok i copied the ffmpeg to /local/usr/bin and i can record with OP,

 i can see the video
 but can't hear any sound,
 what i should take care of?


 2014-09-01 18:05 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 you can copy or make symbolic links to get necessary applications in
 /usr/local/bin/



 On 1 September 2014 22:56, Mark Lin mlin40...@gmail.com wrote:

 Thank you Maxim
  i just finished the ffmpeg installation with sacces.

 and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

 result -

 :~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
 ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
   configuration: --prefix=/root/ffmpeg_build
 --extra-cflags=-I/root/ffmpeg_build/include
 --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
 --enable-libass --enable-libfdk-aac --enable-libfreetype
 --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis
 --enable-libvpx --enable-libx264 --enable-nonfree
   libavutil  54.  7.100 / 54.  7.100
   libavcodec 56.  1.100 / 56.  1.100
   libavformat56.  3.100 / 56.  3.100
   libavdevice56.  0.100 / 56.  0.100
   libavfilter 5.  0.103 /  5.  0.103
   libswscale  3.  0.100 /  3.  0.100
   libswresample   1.  1.100 /  1.  1.100
   libpostproc53.  0.100 / 53.  0.100
 /root/input.mp4: No such file or directory

 But can't see ffmpeg at /usr/local/bin

 DO I NEED TO COMMAND

 echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man  ~/.manpath
 . ~/.profile

 Thank you



 2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide
 https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide shown

 so remove x264 and install it from the debian repository -
 https://packages.debian.org/unstable/graphics/x264

 but ending with the same result.

 someone have an idea?

 Thank you




 --
 WBR
 Maxim aka solomax




 --
 WBR
 Maxim aka solomax




 --
 WBR
 Maxim aka solomax



Re: Jnpl alternative

2014-09-01 Thread Scott Woods I

Hello...

Having a similar issue.

Using Firefox and maybe other browsers, when in a room and attempt to 
Share Screen, we are presented to download or run JNLP.


Neither option seems to do anything.  If I download it, and attempt to 
run it, it opens a new browser window to download it again.  If attempt 
to run it rather than download, it opens a new browser window.


Would installation of OpenJava 7 and Icedtea be the answer for this?

Will this overwrite Java 7?

Thank you!
On 8/5/2014 12:47 PM, Alvaro wrote:

Sorry, OpenJava 7 and Icedtea.


--

El mar, 05-08-2014 a las 18:39 +0200, Alvaro escribió:

..as say Maxim or install OpenJava 1.7.65 and then will have not
Application Blocked by Security Settings...




El mar, 05-08-2014 a las 22:56 +0700, Maxim Solodovnik escribió:

The only option I know is
get your own trusted SSL certificate (signed by valid CA)
and resign screen-sharing application. (still might not work,
unfortunately)
I hope things might be better as soon as will get valid certificate
from Apache and will set everything up properly


On 5 August 2014 22:51, Alexander Franca Fernandes affe...@gmail.com
wrote:
 Hi,
 
 
 I'm trying to share my screen but I've got two issues:
 
 
 On Windows I get the following message: Application Blocked by

 Security Settings
 
 
 On Linux I'm asked to download the jnlp file.
 
 
 I have to run Openmeetings to non skilled users, so, asking

 them for changing any windows configuration will be a bad
 idea.
 
 
 And anyway at this moment I'm not able to put this working.
 
 Any help?
 
 
 Is that normal? Is there any way to put this feature working

 automatically?
 
 
 
 []s
 
 Alexander
 





--
WBR
Maxim aka solomax




--
Best regards...

Scott Woods
989-424-5424

***

Be Excellent to Each Other
-- Bill  Ted

All that is necessary for the triumph of evil is that good men do nothing.
--  Edmund Burke

Never doubt that a small group of thoughtful committed people can change the world; 
indeed, it is the only thing that ever has.
-- Margaret Mead, anthropologist

Can't stop the spirits when they need you, this life is more than just a 
read-though...
-- Red Hot Chili Peppers

“I’m not in this world to live up to your expectations and you’re not in this 
world to live up to mine.”
-- Bruce Lee

===



Re: FFMPEG INSTALLATION ERROR make x264

2014-09-01 Thread Maxim Solodovnik
what type of room?
can you test with 2 participants? can you hear each other?
you can try to upload *.avi or *.mp4


On 2 September 2014 02:25, Mark Lin mlin40...@gmail.com wrote:

 I tried with increasing user volume but nothing
 when i test recording in the edit record streampopup window, there is no
 problem, i can hear sound very clearly,
 but in the video there is no sound,
 any idea? maybe it is related to VPS software installation

 and when trying to add it to youtube - i can upload the flv file but not
 proccing happen it is just stuck at 0%

 Thank you


 2014-09-01 18:40 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 maybe you can increase user volume?



 On 1 September 2014 23:35, Mark Lin mlin40...@gmail.com wrote:

 Ok i copied the ffmpeg to /local/usr/bin and i can record with OP,

 i can see the video
 but can't hear any sound,
 what i should take care of?


 2014-09-01 18:05 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 you can copy or make symbolic links to get necessary applications in
 /usr/local/bin/



 On 1 September 2014 22:56, Mark Lin mlin40...@gmail.com wrote:

 Thank you Maxim
  i just finished the ffmpeg installation with sacces.

 and command - cd ~/bin  ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv

 result -

 :~/bin# ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
 ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  1 2014 18:36:06 with gcc 4.4.5 (Debian 4.4.5-8)
   configuration: --prefix=/root/ffmpeg_build
 --extra-cflags=-I/root/ffmpeg_build/include
 --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl
 --enable-libass --enable-libfdk-aac --enable-libfreetype
 --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis
 --enable-libvpx --enable-libx264 --enable-nonfree
   libavutil  54.  7.100 / 54.  7.100
   libavcodec 56.  1.100 / 56.  1.100
   libavformat56.  3.100 / 56.  3.100
   libavdevice56.  0.100 / 56.  0.100
   libavfilter 5.  0.103 /  5.  0.103
   libswscale  3.  0.100 /  3.  0.100
   libswresample   1.  1.100 /  1.  1.100
   libpostproc53.  0.100 / 53.  0.100
 /root/input.mp4: No such file or directory

 But can't see ffmpeg at /usr/local/bin

 DO I NEED TO COMMAND

 echo MANPATH_MAP $HOME/bin $HOME/ffmpeg_build/share/man  ~/.manpath
 . ~/.profile

 Thank you



 2014-09-01 16:20 GMT+02:00 Maxim Solodovnik solomax...@gmail.com:

 I'm using this guide
 https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



 On 1 September 2014 21:02, Mark Lin mlin40...@gmail.com wrote:

 Hello
 using VPS - debian-6.0-x86_64

 trying to install ffmpeg according to -
 https://trac.ffmpeg.org/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20mp3,%20aac%2B%20and%20x264

 Related regulations have been installed without any problem...
 but when make is end I getting ERROR -

  CC  cmdutils.o
 CC  ffmpeg_opt.o
 CC  ffmpeg_filter.o
 LD  ffmpeg_g
 /usr/bin/ld: libavcodec/libavcodec.a(libx264.o): in function
 X264_init:libavcodec/libx264.c:677: error: undefined reference to
 'x264_encoder_open_142'
 collect2: ld returned 1 exit status
 make: *** [ffmpeg_g] Error 1

 i tried several times to build ffmpeg with build x264 as the guide shown

 so remove x264 and install it from the debian repository -
 https://packages.debian.org/unstable/graphics/x264

 but ending with the same result.

 someone have an idea?

 Thank you




 --
 WBR
 Maxim aka solomax




 --
 WBR
 Maxim aka solomax




 --
 WBR
 Maxim aka solomax




-- 
WBR
Maxim aka solomax


Re: Jnpl alternative

2014-09-01 Thread Maxim Solodovnik
here is the description http://en.wikipedia.org/wiki/Java_Web_Start
you should associate/run *.jnlp files with javaws executable


On 2 September 2014 06:20, Scott Woods I sc...@growitonline.com wrote:

 Hello...

 Having a similar issue.

 Using Firefox and maybe other browsers, when in a room and attempt to
 Share Screen, we are presented to download or run JNLP.

 Neither option seems to do anything.  If I download it, and attempt to run
 it, it opens a new browser window to download it again.  If attempt to run
 it rather than download, it opens a new browser window.

 Would installation of OpenJava 7 and Icedtea be the answer for this?

 Will this overwrite Java 7?

 Thank you!
 On 8/5/2014 12:47 PM, Alvaro wrote:

 Sorry, OpenJava 7 and Icedtea.


 --

 El mar, 05-08-2014 a las 18:39 +0200, Alvaro escribió:

 ..as say Maxim or install OpenJava 1.7.65 and then will have not
 Application Blocked by Security Settings...

 


 El mar, 05-08-2014 a las 22:56 +0700, Maxim Solodovnik escribió:

 The only option I know is
 get your own trusted SSL certificate (signed by valid CA)
 and resign screen-sharing application. (still might not work,
 unfortunately)
 I hope things might be better as soon as will get valid certificate
 from Apache and will set everything up properly


 On 5 August 2014 22:51, Alexander Franca Fernandes affe...@gmail.com
 wrote:
  Hi,
I'm trying to share my screen but I've got
 two issues:
On Windows I get the following message:
 Application Blocked by
  Security Settings
On Linux I'm asked to download the jnlp file.
I have to run Openmeetings to non skilled
 users, so, asking
  them for changing any windows configuration will be a bad
  idea.
And anyway at this moment I'm not able to
 put this working.
   Any help?
Is that normal? Is there any way to put this
 feature working
  automatically?
 []s
   Alexander




 --
 WBR
 Maxim aka solomax



 --
 Best regards...

 Scott Woods
 989-424-5424

 ***

 Be Excellent to Each Other
 -- Bill  Ted

 All that is necessary for the triumph of evil is that good men do
 nothing.
 --  Edmund Burke

 Never doubt that a small group of thoughtful committed people can change
 the world; indeed, it is the only thing that ever has.
 -- Margaret Mead, anthropologist

 Can't stop the spirits when they need you, this life is more than just a
 read-though...
 -- Red Hot Chili Peppers

 “I’m not in this world to live up to your expectations and you’re not in
 this world to live up to mine.”
 -- Bruce Lee

 ===




-- 
WBR
Maxim aka solomax