Currently i am building an application for voice over IP using RTP in ad hoc network.I am using JMF to implement RTP. RTP packets are exchanged among peers during conversations. Now i want to get IP address and port number from RTP packets.Is their any way to do this in java?
Getting Ip Address and Port From RTP Packet
493 Views Asked by Nirmal_stack At
1
There are 1 best solutions below
Related Questions in IP
- How to use a proxy to obtain a static IP for my Node.js application?
- PHP Get IPv4 Address
- Unable to correctly configure StrongSwan with site-to-site connection and road warrior
- Can I know the namespace of my k8s Pod only by looking at its IP?
- data transfer to ip address using osi model
- Search web address from IP
- Deploy my Django project in my private network
- Generate country names from IP Addresses in R and saving these as a new variable in a dataframe
- Connect to a specific country using Psiphon vpn from Command line
- FastCourier API - Invalid ip accessing app
- TCP/IP Server Using sockets Java
- Calling service with localhost or machine IP for internal calls?
- What does "Simultaneous Live View Up to 6 channels" imply for a IP Camera specification
- X-Forwarded-For in the request-ip package potential bug
- How to scan and message devices connected to OpenThread border router from Android app?
Related Questions in PORT
- Sniff data packages from application to serial port (/dev/ttyACM0)
- How to choose port number for various microservices? whatever port number I use is already used-blocked or I'm not able to use them
- Why is only the port version not printed in the output?
- Redirect outbound traffic to a different port
- on linux gitclone issue remote server error showing fatal error with proxy n port
- ERR_EMPTY_RESPONSE with docker container port bind
- Block MQTT port from windows firewall
- Localhost doesn't see my file; The requested URL was not found on this server
- Setting up HTML page on port 8083 in NGINX
- ERROR - Container xxx didn't respond to HTTP pings on port: xxx, failing site start
- Docker port exposure with IP resulted to slow postgres database connection
- I don't understand
- Troubleshooting Ineffective Port-Level Value Changes in Kernel Bond Code
- Getting "Jest did not exit one second after the test run has completed" error for test script which was originally passing
- Same IP, same port and nmap scan gives different result. Why?
Related Questions in RTP
- How stream with gstreamer and open the stream on any computer
- How to get access to WebRTC RTP packet sequence number
- RTP distribution gateway in golang
- Node.js SIP.js Setup: Can't Receive Real-time Audio - Need Direction
- Video streaming + real-time chat implementation
- SIP load Testing via SIPP
- swinging of RTSP streams bandwidth?
- How would one surmise whether receiver latency is due to misconfigured sender reports or timestamps?
- How can I connect my node.js app to external VOIP provider via SIP?
- RTCP Sender Report and RTP timestamp calculation
- Gstreamer Python Pipeline udpsrc->rtph264depay->h264parse... Not Working
- RTP - slow-motion audio playback in Wireshark
- gstreamer audiomixer creates empty buffers permanently
- How to use GStreamers switchbin element?
- Why Wireshark is not displaying RTPS sub-messages in the 'Info' column?
Related Questions in JMF
- How to handle DTMF by Java Media Framework?
- JMF CannotRealizeException when reading mov files
- Not able to play videos with JMF
- Using Java Media Framework (JMF) to create video from array of BufferedImages
- How to record audio device with JMF?
- Should the jmf executable be downloaded?
- Installation of Java Media Framework fails
- What causes an array error in JMF
- How to control mp3 audio volume using JMF in JAVA
- JMF Audio Player
- Not able to detect a TV tuner in Java
- I need to convert audio file from μ-law to PCM
- Merging audio and video in java using JMF(Without xuggle, ffmpeg, etc..)
- Format error when trying to play MP3 in Java with JMF
- Embed a media player with JRE1.5
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 # Hahtags
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?
RTP is in Session Layer on OSI Model. Namely, RTP has Transport Layer too. It can be UDP or TCP. And RTP generally uses UDP because it's very fast. You can get the IP address and Port number with DatagramSocket class. Here is a little sample
May it be easy.