|
Home > Archive > Macromedia Flash Server > January 2006 > Issues with Two-way Video Chat
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Issues with Two-way Video Chat
|
|
| RR-007 2006-01-13, 9:12 pm |
| 2006, and already more questions. Hope everyone is starting their year with
a bang.
It seems that when I stream a two-way video chat. I can only see the first
person who started streaming.
Is there a way to know if the other person is already on line in order to
start the live stream that is going to be played once connection is
successful.
Any help would be greatly appreciated.
This is a snipped of my code...
mycam =3D Camera.get();
mycam.setQuality(25600, 0);
mymic =3D Microphone.get();
mymic.setRate(11);
ns_out.attachVideo(mycam);
ns_out.attachAudio(mymic);
hostVideo.attachVideo(mycam);
ns_out.publish(userName);
blinker.gotoAndPlay(2);
ns_in =3D new NetStream(vConn_nc);
viewerVideo.attachVideo(ns_in);
ns_in.play(remoteUserName);
--
We don't stop playing because we grow old.
We grow old because we stop playing.
Live it a little and play some more,
RR-007
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Naicu Octavian 2006-01-13, 9:12 pm |
| There is no function to do that for you by default. You'll have to progra=
m the client instances your self so that they know when the other person.=
has been sucessfully connected.
RR-007 <rconr007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: 2006, and already more questions. Hope=
everyone is starting their year with
a bang.
It seems that when I stream a two-way video chat. I can only see the firs=
t
person who started streaming.
Is there a way to know if the other person is already on line in order to
start the live stream that is going to be played once connection is
successful.
Any help would be greatly appreciated.
This is a snipped of my code...
mycam =3D Camera.get();
mycam.setQuality(25600, 0);
mymic =3D Microphone.get();
mymic.setRate(11);
ns_out.attachVideo(mycam);
ns_out.attachAudio(mymic);
hostVideo.attachVideo(mycam);
ns_out.publish(userName);
blinker.gotoAndPlay(2);
ns_in =3D new NetStream(vConn_nc);
viewerVideo.attachVideo(ns_in);
ns_in.play(remoteUserName);
--
We don't stop playing because we grow old.
We grow old because we stop playing.
Live it a little and play some more,
RR-007
=3D-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=3D-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
=09
---------------------------------
Yahoo! Photos =96 Showcase holiday pictures in hardcover
Photo Books. You design it and we=92ll bind it!
=3D-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=3D-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Bill Sanders 2006-01-13, 9:12 pm |
| Hi Mystery Person,
You can use an SO to indicate that you are online. Once someone has
logged on, you can then "turn on" your a/v stream. (Simply fire off
the function that does the send/receive.) Is that what you want?
HTH,
Bill
On Jan 9, 2006, at 11:48 PM, RR-007 wrote:
> 2006, and already more questions. Hope everyone is starting their
> year with
> a bang.
>
> It seems that when I stream a two-way video chat. I can only see
> the first
> person who started streaming.
> Is there a way to know if the other person is already on line in
> order to
> start the live stream that is going to be played once connection is
> successful.
> Any help would be greatly appreciated.
>
> This is a snipped of my code...
>
> mycam = Camera.get();
> mycam.setQuality(25600, 0);
> mymic = Microphone.get();
> mymic.setRate(11);
> ns_out.attachVideo(mycam);
> ns_out.attachAudio(mymic);
> hostVideo.attachVideo(mycam);
> ns_out.publish(userName);
> blinker.gotoAndPlay(2);
> ns_in = new NetStream(vConn_nc);
> viewerVideo.attachVideo(ns_in);
> ns_in.play(remoteUserName);
>
>
>
> --
> We don't stop playing because we grow old.
> We grow old because we stop playing.
> Live it a little and play some more,
>
> RR-007
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
|
|
|
|
|