• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

win/H03-May-2022-1,051739

.gitignoreH A D24-Mar-2018184 2019

LICENSEH A D24-Mar-20181.5 KiB2924

Makefile.amH A D24-Mar-20182 KiB7059

README.mdH A D24-Mar-20181.2 KiB5138

ansi.hH A D24-Mar-20185.6 KiB194117

configure.acH A D24-Mar-20182.3 KiB9576

host2ip.cH A D24-Mar-20182.8 KiB7635

hpt.cH A D24-Mar-20182.3 KiB7029

hsearch.cH A D24-Mar-20183.5 KiB16997

hsearch.hH A D24-Mar-20182.3 KiB5713

multidumpH A D24-Mar-20182.8 KiB7832

multidump.1H A D24-Mar-20182.4 KiB8180

multimer.cH A D24-Mar-20189 KiB231127

multimer.hH A D24-Mar-2018208 54

multiplayH A D24-Mar-20182.7 KiB7833

multiplay.1H A D24-Mar-20182.2 KiB6867

notify.cH A D24-Mar-20186.5 KiB287203

notify.hH A D24-Mar-20184 KiB11948

rd.cH A D24-Mar-20183.4 KiB9850

rtp.hH A D03-May-20226.3 KiB198114

rtpdump.1H A D24-Mar-20185.7 KiB214210

rtpdump.cH A D03-May-202224.4 KiB832639

rtpdump.hH A D24-Mar-20183 KiB7524

rtpplay.1H A D24-Mar-20183.5 KiB113112

rtpplay.cH A D24-Mar-201812.9 KiB459328

rtpsend.1H A D24-Mar-20184.6 KiB145143

rtpsend.cH A D03-May-202224.9 KiB1,018771

rtptools.html.inH A D24-Mar-20182.5 KiB7558

rtptools.specH A D24-Mar-20181.3 KiB5444

rtptrans.1H A D24-Mar-20183 KiB7271

rtptrans.cH A D24-Mar-201815.8 KiB546432

sysdep.hH A D24-Mar-20187.2 KiB243165

vat.hH A D24-Mar-20184.1 KiB12136

README.md

1# RTP Tools
2
3RTP Tools is a set of small applications
4that can be used for processing RTP data.
5Refer to the individual manpages for details.
6
7* **rtpplay**
8	play back RTP sessions recorded by rtpdump
9* **rtpsend**
10	generate RTP packets from textual description,
11	generated by hand or rtpdump
12* **rtpdump**
13	parse and print RTP packets,
14	generating output files suitable for rtpplay and rtpsend
15* **rtptrans**
16	RTP translator between unicast and multicast networks
17* **multidump**
18	Start multiple rtpdumps simultaneously.
19* **multiplay**
20	Start multiple rtpplays simultaneously.
21
22## Installation
23
24The RTP tools should compile on any POSIX-compliant
25platform supporting sockets, as well as on Windows.
26
27### UNIX
28
29If building from git, run the following first to regenerate the build tools:
30
31```
32aclocal
33automake --add-missing --force-missing
34autoconf
35```
36
37- Run `./configure` to configure rtptools for your system.
38- Run `make` to build rtptools.
39- Run `make install` to install.
40- Run `make uninstall` to uninstall.
41- Run `make rpm` to create a rpm package in `./rpmbuild`
42
43### Windows
44
45Open `rtptools.sln` on MS Visual Studio and press F7 to build.
46
47## TODO
48
49* Fix type mismatch warnings.
50* Generate a Debian package.
51