Re: Native RTMPS in Openmeetings

2010-08-12 Thread nexus
Sebastian,

Thanks a lot for pointing me in the right direction. I was able to get
it to work by adding this line:

this._nc = new NetConnection();

// local reference to rtmpconnection
this._nc.t = this;

this._nc.proxyType = "best";   line I added here

So far, everythings seems to be working using native RTMPS except the
screensharer. According to the Adobe documentation, it should default
to tunneled RTMPS if native RTMPS is not enabled. As far as the
screensharer, the app opens up, but the start sharing or start
recording buttons don't work.

On Aug 12, 3:00 pm, Sebastian Wagner  wrote:
> Hi,
>
> sure that Line can be found 
> here:http://code.google.com/p/openmeetings/source/browse/trunk/singlewebap...
>
> But I am not sure if that will work. I think this requires to compile the
> Source Code as ActionScript3, and we still compile to ActionScript2.
>
> Sebastian
>
> 2010/8/12 nexus 
>
>
>
>
>
> > In our environment, we have all windows clients with the exeption of 2
> > MAC clients. To get native RTMPS working, we did purchase a valid SSL
> > cert from godaddy. I had no problem connecting using Windows clients
> > with a valid SSL cert. Today I did some testing and I was able to get
> > native RTMPS working in the MAC clients as well as a Centos 32-bit
> > client, but I had to import the certificates first. I have been using
> > native RTMPS for the publisher application and have noticed quite a
> > performance difference over the usual RTMPS.  All I had to do to get
> > it working in the Red5 Publisher was to add "proxyType=best" in the
> > application. What I was looking into doing was to add the proxyType
> > variable to the Openmeetings client code. Then, in the config.xml file
> > add  to allow you to change between the two
> > types. I was having some trouble finding where the NetConnection code
> > is in the .lzx files though. This is pretty much the last piece I was
> > looking into getting working before we put the server into production.
> > Love the project by the way and I would be willing to assist in
> > development in this area where I can.
>
> > On Aug 12, 3:55 am, Sebastian Wagner  wrote:
> > > Hallo Nexus,
>
> > > rtmps is available in OpenMeetings you just need to enable it in the
> > > config.xml and its as you say: The usual rtmps, not the native rtmps.
>
> > > But rtmps does only work for the Windows Flash Player. OSx and Linux
> > Flash
> > > Player do not have the rtmps protocol implemented.
> > > Is there any difference when using native rtmps ?
>
> > > Sebastian
>
> > > 2010/8/12 nexus 
>
> > > > I have recently set up Red5 to work with RTMPS using native SSL (no
> > > > HTTPS tunneling). I have noticed quite a performance increase using
> > > > this method, but unfortunately Openmeetings will not currently work
> > > > with RTMPS using this method. I think the issue is that by default the
> > > > Flash client sets the proxyType property to "none" which defaults to
> > > > using RTMPS over HTTPS tunneling. Acceptable values are "none",
> > > > "HTTP", "CONNECT", and "best". The proxyType must be set before the
> > > > calling the NetConnection.connect() method. What I was looking to do
> > > > was to find where I would define proxyType in the Openmeetings client
> > > > code. Then, you could define a property in the config.xml to define
> > > > which proxyType you would want to use such as "none" or "best". This
> > > > would enable you to choose which mode you would want to use. Examples
> > > > of using this method are located here:
>
> > > >http://gregoire.org/2009/11/12/native-rtmps-in-red5/
>
> > > >http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/NetConnection.
> > ..
> > > >http://www.red5.org/ticket/582
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "OpenMeetings User" group.
> > > > To post to this group, send email to
> > openmeetings-u...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > openmeetings-user+unsubscr...@googlegroups.com
> > 
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/openmeetings-user?hl=en.
>
> > > --
> > > Sebastian
> > Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://
> >www.wagner-sebastian.com
> > > seba.wag...@gmail.com- Hide quoted text -
>
> > > - Show quoted text -
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "OpenMeetings User" group.
> > To post to this group, send email to openmeetings-u...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > openmeetings-user+unsubscr...@googlegroups.com
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/openmeetings-user?hl=en.
>
> --
> Sebastian 
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.wagner-sebastian.com
> seba.wag...@gmail.com- Hide quoted text -
>
> - Show q

So what are all the little programs for?

2010-08-12 Thread MikeMack
I'm curious, we lost our old installation of open meetings so I
reinstalled it on our freshly installed server.  Now when we had it up
and running again things seemed to work fine, and it occurred to me
that I hadn't installed any of the extra software that OM says I
should install.

So is there any really important reason we need that extra software?
Does it make things run more efficient?

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Native RTMPS in Openmeetings

2010-08-12 Thread Sebastian Wagner
Hi,

sure that Line can be found here:
http://code.google.com/p/openmeetings/source/browse/trunk/singlewebapp/WebContent/openmeetings/base/remote/rtmpConnection.lzx#18

But I am not sure if that will work. I think this requires to compile the
Source Code as ActionScript3, and we still compile to ActionScript2.

Sebastian

2010/8/12 nexus 

> In our environment, we have all windows clients with the exeption of 2
> MAC clients. To get native RTMPS working, we did purchase a valid SSL
> cert from godaddy. I had no problem connecting using Windows clients
> with a valid SSL cert. Today I did some testing and I was able to get
> native RTMPS working in the MAC clients as well as a Centos 32-bit
> client, but I had to import the certificates first. I have been using
> native RTMPS for the publisher application and have noticed quite a
> performance difference over the usual RTMPS.  All I had to do to get
> it working in the Red5 Publisher was to add "proxyType=best" in the
> application. What I was looking into doing was to add the proxyType
> variable to the Openmeetings client code. Then, in the config.xml file
> add  to allow you to change between the two
> types. I was having some trouble finding where the NetConnection code
> is in the .lzx files though. This is pretty much the last piece I was
> looking into getting working before we put the server into production.
> Love the project by the way and I would be willing to assist in
> development in this area where I can.
>
> On Aug 12, 3:55 am, Sebastian Wagner  wrote:
> > Hallo Nexus,
> >
> > rtmps is available in OpenMeetings you just need to enable it in the
> > config.xml and its as you say: The usual rtmps, not the native rtmps.
> >
> > But rtmps does only work for the Windows Flash Player. OSx and Linux
> Flash
> > Player do not have the rtmps protocol implemented.
> > Is there any difference when using native rtmps ?
> >
> > Sebastian
> >
> > 2010/8/12 nexus 
> >
> >
> >
> >
> >
> > > I have recently set up Red5 to work with RTMPS using native SSL (no
> > > HTTPS tunneling). I have noticed quite a performance increase using
> > > this method, but unfortunately Openmeetings will not currently work
> > > with RTMPS using this method. I think the issue is that by default the
> > > Flash client sets the proxyType property to "none" which defaults to
> > > using RTMPS over HTTPS tunneling. Acceptable values are "none",
> > > "HTTP", "CONNECT", and "best". The proxyType must be set before the
> > > calling the NetConnection.connect() method. What I was looking to do
> > > was to find where I would define proxyType in the Openmeetings client
> > > code. Then, you could define a property in the config.xml to define
> > > which proxyType you would want to use such as "none" or "best". This
> > > would enable you to choose which mode you would want to use. Examples
> > > of using this method are located here:
> >
> > >http://gregoire.org/2009/11/12/native-rtmps-in-red5/
> >
> > >http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/NetConnection.
> ..
> > >http://www.red5.org/ticket/582
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "OpenMeetings User" group.
> > > To post to this group, send email to
> openmeetings-u...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > openmeetings-user+unsubscr...@googlegroups.com
> 
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/openmeetings-user?hl=en.
> >
> > --
> > Sebastian
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://
> www.wagner-sebastian.com
> > seba.wag...@gmail.com- Hide quoted text -
> >
> > - Show quoted text -
>
> --
> You received this message because you are subscribed to the Google Groups
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>
>


-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Native RTMPS in Openmeetings

2010-08-12 Thread nexus
In our environment, we have all windows clients with the exeption of 2
MAC clients. To get native RTMPS working, we did purchase a valid SSL
cert from godaddy. I had no problem connecting using Windows clients
with a valid SSL cert. Today I did some testing and I was able to get
native RTMPS working in the MAC clients as well as a Centos 32-bit
client, but I had to import the certificates first. I have been using
native RTMPS for the publisher application and have noticed quite a
performance difference over the usual RTMPS.  All I had to do to get
it working in the Red5 Publisher was to add "proxyType=best" in the
application. What I was looking into doing was to add the proxyType
variable to the Openmeetings client code. Then, in the config.xml file
add  to allow you to change between the two
types. I was having some trouble finding where the NetConnection code
is in the .lzx files though. This is pretty much the last piece I was
looking into getting working before we put the server into production.
Love the project by the way and I would be willing to assist in
development in this area where I can.

On Aug 12, 3:55 am, Sebastian Wagner  wrote:
> Hallo Nexus,
>
> rtmps is available in OpenMeetings you just need to enable it in the
> config.xml and its as you say: The usual rtmps, not the native rtmps.
>
> But rtmps does only work for the Windows Flash Player. OSx and Linux Flash
> Player do not have the rtmps protocol implemented.
> Is there any difference when using native rtmps ?
>
> Sebastian
>
> 2010/8/12 nexus 
>
>
>
>
>
> > I have recently set up Red5 to work with RTMPS using native SSL (no
> > HTTPS tunneling). I have noticed quite a performance increase using
> > this method, but unfortunately Openmeetings will not currently work
> > with RTMPS using this method. I think the issue is that by default the
> > Flash client sets the proxyType property to "none" which defaults to
> > using RTMPS over HTTPS tunneling. Acceptable values are "none",
> > "HTTP", "CONNECT", and "best". The proxyType must be set before the
> > calling the NetConnection.connect() method. What I was looking to do
> > was to find where I would define proxyType in the Openmeetings client
> > code. Then, you could define a property in the config.xml to define
> > which proxyType you would want to use such as "none" or "best". This
> > would enable you to choose which mode you would want to use. Examples
> > of using this method are located here:
>
> >http://gregoire.org/2009/11/12/native-rtmps-in-red5/
>
> >http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/NetConnection...
> >http://www.red5.org/ticket/582
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "OpenMeetings User" group.
> > To post to this group, send email to openmeetings-u...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > openmeetings-user+unsubscr...@googlegroups.com
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/openmeetings-user?hl=en.
>
> --
> Sebastian 
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.wagner-sebastian.com
> seba.wag...@gmail.com- Hide quoted text -
>
> - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



fixing the utf8 problem in the Moodle and SugarCRM Plugin

2010-08-12 Thread Sebastian Wagner
Hi,

there are some updated packages for Moodle and SugarCRM available fixing
some problem with utf8 (and some Issue with latest SugarCRM 6.xx)

Sugar CRM:
http://code.google.com/p/openmeetings/downloads/detail?name=openmeetings_connector_v1.1.zip
Moodle Mod:
http://code.google.com/p/openmeetings/downloads/detail?name=openmeetings_moodle_v_0_9.zip

Sebastian

-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Video in screen-sharing

2010-08-12 Thread Sebastian Wagner
Chetan,

have a look at your upload/download rate, its probably just full as soon as
you start screen sharing.

Sebastian

2010/8/12 chetan kaushik 

> Hi seba,
>
> I can hear him, the problem is when i share a movie with him in
> screensharing he can see it but cant hear the audio part of that
> video.i want to know how i can implement the audio part in screensharing?
>
> Thanks.
>
>
> On Thu, Aug 12, 2010 at 2:42 AM, Sebastian Wagner 
> wrote:
>
>> Hi Chetan,
>>
>> well if you can't hear your participant (but you are _sure_ that he
>> did really put on his microphone et cetera ... so its not a problem
>> because somebody is unable to plug-in his microphone in the computer
>> ^^).
>> Then it can happen that your bandwidth is full. If your bandwidth is
>> used 100% then the first thing you will see (and hear) is that audio-
>> frames are dropped and you have a growing time lag in the screen
>> sharing. Try to reduce the screen sharing's quality.
>>
>> Sebastian
>>
>> On 10 Aug., 13:35, chetan kaushik  wrote:
>> > Hi all
>> >
>> > while screen -sharing,  i am able to see what provider is sharing at his
>> end
>> > But if he is sharing any video if am able to see that video but unable
>> to
>> > listen it. can anybody suggest
>> > how it is possible.
>> >
>> > Thanks.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "OpenMeetings User" group.
>> To post to this group, send email to openmeetings-u...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> openmeetings-user+unsubscr...@googlegroups.com
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/openmeetings-user?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>



-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Native RTMPS in Openmeetings

2010-08-12 Thread Sebastian Wagner
Hallo Nexus,

rtmps is available in OpenMeetings you just need to enable it in the
config.xml and its as you say: The usual rtmps, not the native rtmps.

But rtmps does only work for the Windows Flash Player. OSx and Linux Flash
Player do not have the rtmps protocol implemented.
Is there any difference when using native rtmps ?



Sebastian

2010/8/12 nexus 

> I have recently set up Red5 to work with RTMPS using native SSL (no
> HTTPS tunneling). I have noticed quite a performance increase using
> this method, but unfortunately Openmeetings will not currently work
> with RTMPS using this method. I think the issue is that by default the
> Flash client sets the proxyType property to "none" which defaults to
> using RTMPS over HTTPS tunneling. Acceptable values are "none",
> "HTTP", "CONNECT", and "best". The proxyType must be set before the
> calling the NetConnection.connect() method. What I was looking to do
> was to find where I would define proxyType in the Openmeetings client
> code. Then, you could define a property in the config.xml to define
> which proxyType you would want to use such as "none" or "best". This
> would enable you to choose which mode you would want to use. Examples
> of using this method are located here:
>
> http://gregoire.org/2009/11/12/native-rtmps-in-red5/
>
> http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/NetConnection.html#proxyType
> http://www.red5.org/ticket/582
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>
>


-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Native RTMPS in Openmeetings

2010-08-12 Thread nexus
I have recently set up Red5 to work with RTMPS using native SSL (no
HTTPS tunneling). I have noticed quite a performance increase using
this method, but unfortunately Openmeetings will not currently work
with RTMPS using this method. I think the issue is that by default the
Flash client sets the proxyType property to "none" which defaults to
using RTMPS over HTTPS tunneling. Acceptable values are "none",
"HTTP", "CONNECT", and "best". The proxyType must be set before the
calling the NetConnection.connect() method. What I was looking to do
was to find where I would define proxyType in the Openmeetings client
code. Then, you could define a property in the config.xml to define
which proxyType you would want to use such as "none" or "best". This
would enable you to choose which mode you would want to use. Examples
of using this method are located here:

http://gregoire.org/2009/11/12/native-rtmps-in-red5/
http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/NetConnection.html#proxyType
http://www.red5.org/ticket/582


-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.