Questions tagged [rtmfp]

Real Time Media Flow Protocol (RTMFP) is a protocol created by Adobe which enables UDP connections and peer-to-peer communication between multiple Flash Players. It is available from Flash Player 10.

91 questions
0
votes
1 answer

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?
Mat
  • 4,281
  • 9
  • 44
  • 66
0
votes
1 answer

Peer to Peer connection using RTMFP

I am trying to implement peer to peer communication using RTMFP and NetStream. When connecting with the server I am able to get My own peer ID.But Is there any way to get the other connected Client's Peer ID for direct communication?
Bharathi
  • 485
  • 6
  • 16
0
votes
1 answer

Connecting to a Ghost User in Flex RTMFP

I have a simple Flex RTMFP P2P video app in the same mold as the Adobe Cirrus VideoPhone Sample application. A problem I've been encountering in developing this app (the same problem occurs in the sample) is when you try to connect to a ghost…
dshipper
  • 3,489
  • 4
  • 30
  • 41
0
votes
1 answer

How can I get BEST Video chat quality- Wowza, Red5, FMS, LCCS(Cirrus)?

I am developing a P2P video chat commercial application. I will have small business users from different parts of the world using this software with varying internet speed and varying P2P geographical distance. Which of the following design will…
0
votes
1 answer

Record RTMFP in Flash Media Server 4

how are you? I'm developing an online meeting system with audio/video sharing, using Adobe Flex 4 and Flash Media Server 4. I'm using the RTMFP protocol to make the transmission of audio/video which increases considerably the performance. The…
Fernando
  • 21
  • 7
0
votes
1 answer

RTMFP with Flash Media Interactive Server

Only the Flash Media Enterprise Server(FMES) has the "RTMFP peer introduction services" http://www.adobe.com/products/flashmediaserver/compare/ influxis created SmartMesh which enables p2p in Flash Media Interactive…
pablo
  • 2,719
  • 11
  • 49
  • 67
0
votes
2 answers

rtmfp open source implementation or FMS with rtmfp hosting?

Is there an open source implementation of rtmfp? Is there FMS hosting that support rtmfp? What is the price of FMS4 enterprise? Thanks
pablo
  • 2,719
  • 11
  • 49
  • 67
0
votes
2 answers

My flex application cannot play a RTMFP stream. NetStream.Play.Failed error

Years ago, I created a SWF application that enabled users to perform online video chat. It used simple SMTFP publish/play method to stream video. Now a few years passed and i am trying to create a backward compatible SWF application. My problem…
Moradnejad
  • 3,466
  • 2
  • 30
  • 52
0
votes
1 answer

Is there a way to access the remote IP of a RTMFP p2p stream?

I'm writing a communication system, using Actionscript 3 and C#. Flash is used to communicate with RTMP server and stream video and audio using RTMFP p2p, but the actual client logic is handled in C#. What I want to be able to do, is allow users to…
Marcus
  • 5
  • 1
  • 3
0
votes
1 answer

Stratus (RTMFP) simple interaction user-user example

do anyone know a link or example that shows how to communicate two users using Stratus?, I know that Adobe site has some examples.. but they are all related to video streaming and so.. Thx in advance.
Artemix
  • 8,497
  • 14
  • 48
  • 75
0
votes
0 answers

RTMFP / peer-to-peer over public Internet

Looking at this example - http://www.adobe.com/devnet/adobe-media-server/articles/p2p_apps_cirrus_lccs.html based on the same functions, I've created a little video conferencing app, which works great on computers in the same building. However when…
colouredFunk
  • 778
  • 1
  • 13
  • 35
0
votes
1 answer

Flash + RTMFP + Stratus: Video Quality on Linux

I'm developing a video chat-like application using Flash RTMFP and Stratus. So far, I'm having good success. I can build from source, tweak settings, and get video and audio in both directions. There's one glaring problem I haven't been able to…
0
votes
1 answer

LAN between two devices not working

I have written a simple AS3 program to create a serverless P2P LAN connection between different devices. Here's the gist of it: Client: private function initLan():void { //G is a class with two static variables - netConnection and…
MikeEVMM
  • 44
  • 6
0
votes
3 answers

How to create local multiplayer functionality in AIR for mobile

I am working on a multiplayer game in AS3/AIR for mobile (both android & iOS) and I want to implement a local multiplayer (on same wifi network/bluetooth) functionality in the game. What could be the best option to do this ?? it would be great if…
Aditya
  • 313
  • 1
  • 6
  • 16
0
votes
1 answer

P2P Netconnection using RTMFP - IOS App/connection freezes on relaunch?

We are developing a turn based game that requires two players to connect over local wifi. At the moment we are using Lee Burrows tutorial and code located…