Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

schwabsauce
schwabsauce
Offline

Badges

Badges
9

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
27

Discussions

Discussions
0

Questions

Questions
11

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by schwabsauce
Customize the badges you want to showcase on your profile
Re: 1000-room limit being accidentally enforced? - Adobe LiveCycle 09-05-2010
I just tried making some rooms with the room console and was successful. I am not sure why we had trouble doing so earlier.The behavior of listRooms that you described does explain why our efforts to create rooms through the api were unsuccessful after the first 1000.

Views

103

Likes

0

Replies

0
1000-room limit being accidentally enforced? - Adobe LiveCycle 06-05-2010
We have been creating rooms in bulk with the Ruby api. After we got to 1000 we started getting 403s. We are also unable to create rooms through the Room Console.Since we have exactly 1000 we guessed it might be a limit. To check, we deleted a room and later, were able to create one. We were subsequently not able to create another.So, although our understanding was that there is no limit on the number of rooms, it sure seems like there is one.

Views

558

Likes

0

Replies

2
Re: reliability of audio streams - Adobe LiveCycle 30-04-2010
Yeah, I remember the patched components well, the "SubClass" as I think you called it We are using the new SDK now and I've removed the patched components from our project.Even after removing the code that stops the audio I'm getting the same behavior. Here's some code.When someone clicks 'next' we make a request to determine if we want to let them move on. Then they log out of the session and ask for a new room. private function nextClick(evt:ResultEvent):void { if (String(evt.result) == "go") ...

Views

129

Likes

0

Replies

0
Re: reliability of audio streams - Adobe LiveCycle 30-04-2010
Thanks, I actually noticed a very reliable way to reproduce my issue. It has something to do with logging out of the room and into a new one - only the person who initiates the switch loses their audio. It's still not clear to me whether it is necessary to stop a stream before leaving a room, or what is the proper way to do so. When I used the stop() method on AudioPublisher it pointed out that I don't have permission to delete a stream.

Views

143

Likes

0

Replies

0
Re: stream continuity across room switch - Adobe LiveCycle 30-04-2010
So you're saying it is possible to be logged into two rooms at once.

Views

103

Likes

0

Replies

0
Re: double display of video stream - Adobe LiveCycle 30-04-2010
Hironmay,Thanks, this confirms the behavior I suspected. I am setting the publisher ids of both subscribers in a callback which listens for StreamEvent.STREAM_RECEIVE on the streamManager of my connect session. Yet there is still a moment or two where the subscribers begin to broadcast the first stream into the room (the default behavior) before my code gets around to assigning the publisher ids. Is there perhaps a different event I could listen for that will give better response time?As I indic...

Views

152

Likes

0

Replies

0
stream continuity across room switch - Adobe LiveCycle 29-04-2010
In our application, users move from room to room regularly. Ideally we would like their video feed to remain on screen during the switch. Is that possible with LCCS?If we used custom components instead of rtc:WebcamPublisher and the accompanying subscriber and audio components, would it be possible to have stream continuity during a room switch?Would it be possible to publish into a second room so that the stream could be kept alive during a room switch (so the user would be in two rooms simulta...

Views

567

Likes

0

Replies

3
reliability of audio streams - Adobe LiveCycle 29-04-2010
Our chat application manages to make an audio connection about half the time. I noticed that ChatRoulette also sometimes has problems broadcasting audio. Is this just a general issue with Flash Player and the compatibility of various microphones and operating systems? Or, is it generally possible to get lccs audio connected very reliably? Are there any good examples of applications on lccs with reliable audio? Also, is the Speex codec the default? It seems to be but the other one is still listed...

Views

713

Likes

0

Replies

6
double display of video stream - Adobe LiveCycle 29-04-2010
It seems like the WebcamSubscriber displays any video feed in the room by default. Our application has two such subscribers, and we assign publisher ids to them manually, but frequently the session begins with the same feed in both subscribers. I implemented this function to try to avoid the double display, to mediocre effect. private function suppressDoubling():void { if (yourCam && friendCam && yourCam.publisherIDs != friendCam.publisherIDs) { yourCam.visible = true; } }Is it true that subscri...

Views

927

Likes

0

Replies

4
Re: limit on number of P2P streams - Adobe LiveCycle 29-04-2010
Is is possible to specify that our audio stream should default to hub and spoke while the video stream still attempts a p2p connection?

Views

423

Likes

0

Replies

0