Tagged Questions

Cirrus is service hosted by Adobe that helps multiple Flash Player to communicate between them using RTMFP protocol.

learn more… | top users | synonyms

4
votes
1answer
584 views

How to implement my own Cirrus (previously named Stratus) server?

I am interesting in creating a P2P application using Cirrus (http://labs.adobe.com/technologies/cirrus/rtmfpgroups.html). The examples given create a connection with servers managed by Adobe. I'd ...
3
votes
2answers
256 views

Adobe Cirrus: Quickest way to deliver a chunk of data to a single peer with known id

Adobe Cirrus offers a number of options for transferring data from peer to peer: Directed Routing, Object Replication and Multicasting to name a few. I just want to send the data to one specific ...
2
votes
1answer
53 views

P2P Cirrus connection Flash-client and HTML-client

In a network many examples of p2p (Cirrus) Flash text chat and games. Is it possible to connect with Cirrus two clients to exchange messages, one of which flash client and the other normal HTML ...
2
votes
1answer
160 views

Getting started with RTMFP

I need to implement a realtime connection between 2 or more players, that will play a Flash game. I've read that RTMFP is a good choice to make this connection the best possible (were best=less lag ...
2
votes
1answer
184 views

Flash p2p: communication between more than 2 clients

I'm doing some experiments with Adobe Cirrus. I've managed to connect 2 clients to each other. But what I want now is the following: I want client A to publish and clients B and C to play A's stream. ...
2
votes
1answer
341 views

Can't read a simple Adobe Cirrus/Stratus incoming stream with Flex

I'm trying to put in place a Flex application that allows a user to send a video stream and let the others to display it. I created a sender page (below).The code is very simple and works perfectly: ...
2
votes
1answer
250 views

Flash p2p: managing clients

What's the best way of managing clients in p2p (cirrus) application? For example, I want to make a game for 2 players. User clicks button "Play", and another random user (who also clicked "play"), ...
2
votes
1answer
228 views

Delphi Prism Cirrus accessing and setting the Result of a function

Background This question relates to the new Cirrus infrastructure for Aspect Oriented Programming in Delphi Prism. I currently have an aspect which I am Auto-Injecting into a class and am attempting ...
1
vote
0answers
34 views

Porting a Adobe Air app to run on android devices

I found a example on a blog, how its possible to use the Adobe Cirrus to develope real-time collaboration applications. I this case its a videochat client, but the thing is that the code is written to ...
1
vote
1answer
129 views

RTFMP - Remote stream not showing

I'm trying to create a 2-way videochat. Your own webcam shows perfectly fine, but the other doesn't. I used this page as an example: ...
1
vote
0answers
105 views

Why NetGroup.MulticastStream.UnpublishNotify fires just after NetGroup.MulticastStream.PublishNotify

I am working on Cirrus I want to make audio chat. I publish stream on one side but its NetGroup.MulticastStream.PublishNotify event doesn't fires at first time....When I publish it twice or thrice it ...
1
vote
0answers
407 views

P2P Flex connection and video streaming [closed]

I want to create a web app to a single user could connect a web cam from one computer and start to broadcast video. At the same time another user is using another computer able to see this video. It ...
1
vote
0answers
163 views

Is there a white labeled RTMFP solution?

I'm trying to use Adobe Cirrus p2p video chat in my app but i don't have a clue how to implement that especially that i'm a js/php developer, so i'm wondering if there is some JS libraries to make web ...
1
vote
1answer
451 views

netStream status events question using Adobe Cirrus

Basically i'll try and sum this up. I have a bunch of potential random strings for recvStream.play("randomstring"); then i have a timer checking every 5 seconds on a function that runs an event ...
1
vote
3answers
555 views

RTMFP successful connection ratio or percentage; AKA Adobe Cirrus, Stratus, LCCS

Do you have actual experience with users establishing Adobe Flash RTMFP P2P connections in the real world? I've heard a couple of people say only 50% succeed, but that sounds suspiciously low and the ...
0
votes
2answers
49 views

How to set the keyframe interval for RTMFP streams?

I use RTMFP with NetGroup and Adobe Cirrus. Broadcasting settings are 320x240 with 5 fps. However, in some cases it takes a long time for the webcam stream to appear (10-20 seconds, even if having a ...
0
votes
4answers
100 views

Do I need Flash Media Server to make this project?

Im starting to learn about how RTMFP works in Flash, and I want to know what do I need to make this happen. I got this game, flash game, and I'd like to use RTMFP so other players can play ...
0
votes
1answer
103 views

How to make a webservice in RTMFP? (and.. how it works)

I managed (thanks to an example I saw in adobe labs) to host in my webpage an swf, and through Cirrus I could establish a connection between two different users, that worked like a charm, BUT, I had ...
0
votes
1answer
106 views

What excectly is Cirrus server role in flash P2P connection

According to the article quoted below, if we want to use Cirrus for RTMFP connection it should stay connected for the whole communication period. Cirrus service Flash Player instances must ...
0
votes
1answer
119 views

Adobe Cirrus (Stratus) doesn't work if user have local network

I am developing flash p2p chat. It works fine on my friends' computers (they can chat each other), but not on mine. The problem is that I have local network at home, and I think that Flash Player ...
0
votes
1answer
169 views

onPeerConnect method using Adobe Cirrus does not get triggered

I have a NetGroup established using Adobe Cirrus. All clients can connect fine and see each other, since I receive NetGroup.Neighbor.Connect and NetGroup.MulticastStream.PublishNotify events when a ...
0
votes
3answers
278 views

webcam chats app - p2p vs fms

I'm currently developing a website in which I want to stick webcam chats between the users. Each client has an account and can call up a different client when he needs some help. I'm thinking about ...
0
votes
0answers
122 views

p2p publish and play (no Cirrus / local wifi network only)

It should be possible to do it in a local network right? I'm writing on the top of project Cocoon project which is using: var group:NetGroup = new NetGroup(netConnection, groupSpecString); I ...
0
votes
2answers
226 views

How can I code a webapp for p2p file sharing without a main server?

I am making a website where coworkers can share files with one another. One user chooses a file on his computer. He leaves his computer on and that web page open. Other multiple users can download ...
0
votes
2answers
161 views

Why am i getting NetStream.Connect.Closed?

When I execute the following: private function setUpRecvStream():void { writeText("Connecting to: " + theirID); recvStream = new NetStream(netConnection, theirID); ...
0
votes
2answers
264 views

Using Flash peer to peer to share files. How to display a progress bar to the downloading client?

I am trying to implement the actionscript program described at this address. http://cookbooks.adobe.com/post_Create_a_P2P_file_sharing_application-16539.html. It lets two flash client connect to the ...
0
votes
0answers
83 views

Technical limitations of technology Cirrus

Can it be used, for example, to broadcast video (say 360p) with sound so that it can be watched by 3000 participants at the same time?
0
votes
1answer
224 views

What encryption technology does Adobe RTMFP use?

the only information i found online is that RTMFP uses 128-bit cypher. Does anyone know what exact encryption technology is used?
0
votes
1answer
223 views

ActionScript 3.0 P2P Connection WITHOUT encryption?

Is there any way to create a direct data connection between two flash clients without the use of Cirrus? I'm asking because I create a multiplayer iPhone game with flash which currently uses Cirrus ...
0
votes
1answer
167 views

Flash XMLSocket & NetStream interfere with each other

in my test application, i have an XMLSocket to communicate with a java socket server (running locally on my computer). If i concurrently try to setup a P2P connection with another client (also ...
0
votes
1answer
502 views

onPeerConnect not working properly with adobe cirrus

Anyone familiar with using Cirrus? (http://labs.adobe.com/technologies/cirrus/) I'm having the hardest time getting the onPeerConnect object to work the way it should. I just need to be able to just ...