I am trying to develop a live video chat app using flash and rtmfp protocol but I have doubts as to how rtmfp guarantees to connect peers especially when the peers are located in different networks.
how exactly rtmfp / UDP works
3.5k Views Asked by Guru At
1
There are 1 best solutions below
Related Questions in UDP
- UDP congestion control in NS2
- Packet drops in multicast when multiple instance of listner are running
- Netty loses udp packets at the beginning of the communication
- iOS "NSLocalizedDescription=Broken pipe" Error For UDP
- lua udp not working between computers
- Issues regarding multiplayer networking: input
- Implementing VOIP over udp, what is the approach to take when the player cannot cope up with received packet's speed
- Detecting incoming port for TFTP data?
- Is Winsock error 10054 (WSAECONNRESET) "normal" with UDP to/from localhost?
- PHP UDP socket memory leak
- What is the effect of the pseudo header in UDP?
- can we open an UDP conection in javascript
- UDP sending and receiving lists
- using Visual Basic 2013 and simple tcp client/server to implement lan game
- Manually send to iperf via UDP socket? (C++)
Related Questions in PROTOCOLS
- Objective-C Reference to object that implements protocol
- Declare conditional delegate methods in iOS
- Object initialization with protocol and class name in swift
- How to get file path in browser (using protocol or other method to get full path)
- call generic function without params
- Why do we send the length of a string in most of the currently protocols
- How to cast controller to a specific protocol instead of a class in Swift?
- Extending Swift's Dictionary to conform to Protocol that requires the use of subscript causes Linker Error
- Benefit of class inheritance, when you could use protocol extensions?
- NSObject class conforms to protocol contained in NSArray with Swift
- Assigning a variable from another class
- Swift protocol extension self reference issues with init
- Swift - Delegates - How do I link the protocol to the implemented delegate methods?
- How to hide the class' properties and methods when defining and using one protocol in the .h file for Objective-C?
- Configure asio context to use tls
Related Questions in P2P
- A P2P application with Python
- Peer to Peer Communication without Server in iPhone
- Support P2P in Netty or Mina?
- Native Real Time Communication alternatives to WebRTC
- difference between p2p and client-server node design
- Implementing XOR-MAPPED-ADDRESS attribute on STUN server
- RTMFP / peer-to-peer over public Internet
- MQTT as a centralized communication protocol
- Android - Sending intent over mobile network
- ionic client to server sync and client to client sync
- Can you connect UWP apps peer-to-peer?
- Does the "holy trinity" (Ethereum, Swarm and Whisper) support multimedia streaming?
- How is SIP scaled for high load?
- JXTA on internet
- Cherry pick peers using Rasterbar libtorrent in Python
Related Questions in FLASH-MEDIA-SERVER
- AMS doesn't receive unpublish command SOMETIMES over rtmpt
- Issue implementing HLS (http live streaming) with FMS and Flex 4.7
- Constant Buffering & Audio/Video Out of Sync RTMP Streaming
- Run a flash based voice chat without the flash media server
- Can Flash Media Server stream H264 over RTMP?
- Advancing a video frame-by-frame with Flex and Flash Media Server
- echo cancellation for FMS or Red5?
- Custom class type in Server-side ActionScript in Flash Media Server 4
- Publishing H.264 data from a Non-DirectShow video capture card to FMS(Red5) as live stream
- How to relay complex type via NetConnection to FMS?
- Flash p2p: managing clients
- Not receiving onSync delete events for multiple SharedObjects in same SWF
- Using Flash Media Server (FMS) with RTMP for live video chat
- video plays abnormally fast for a short time while streaming from FMS (issue appears on iPad)
- Adobe Media Server scaling on Amazon Web Services (AWS)
Related Questions in RTMFP
- RTMFP / peer-to-peer over public Internet
- How to get the name of the stream (RTMFP NetGroup Problem, Flex/AS3)
- Peer to Peer connection using RTMFP
- RTMFP and peer-to-peer ports/firewalls
- Flash Media Server Buying Alternatives
- Do I need Flash Media Server to make this project?
- How to make a webservice in RTMFP? (and.. how it works)
- Getting started with RTMFP
- How to get the video resolution in a RTMFP stream?
- Is this RTMFP delay acceptable?
- how exactly rtmfp / UDP works
- Flash communication with asterisk server?
- Streaming live video over RTMFP using a format other than Spark
- RTMFP communication without Flash Server
- Live webcam website architecture?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
RTMFP relies on a central rendezvous server to "introduce" 2 clients that are in different networks and potentially behind firewalls. To navigate through firewalls it uses NAT traversal techniques which essentially amounts to:
There is no guarantee that any 2 clients networks/firewalls are compatible for RTMFP P2P connections (you can diagnose with the RTMFP connection tester), that's why Adobe provides fallback solutions through their LiveCycle Collaboration Service or Adobe Flash Media Server to a central relay service (basically all network traffic would pass through a Server that both clients can publicly access) if a direct P2P connection can't be established.
Adobe's RTMFP is their proprietary bundling of Peer 2 Peer network rendevous service, as well as providing some other higher level P2P network mesh features.
If you're interested in a more open standard P2P protocol you should look into WebRTC. Essentially WebRTC is the same concept of allowing clients to connect P2P over UDP but geared towards being adopted as a web browser standard, and can also be implemented on a variety of native devices (e.g. Android, iPhone etc) under the hood it uses standard NAT and firewall traversal technology using STUN, ICE, TURN, RTP-over-TCP and support for proxies. I believe WebRTC is a standardization of some of the work done in the libjingle P2P Google Talk library.