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

..03-May-2022-

lib/Net/H02-Jul-2007-736315

t/H02-Jul-2007-13376

tools/H02-Jul-2007-869305

Build.PLH A D02-Jul-2007701 4230

ChangesH A D02-Jul-20071 KiB3223

MANIFESTH A D02-Jul-2007230 1817

META.ymlH A D02-Jul-2007540 2726

Makefile.PLH A D02-Jul-20071.1 KiB3222

READMEH A D02-Jul-20071.6 KiB7143

README

1Net-RTP
2=======
3
4This is a pure perl implementation of
5Real-time Transport (RTP) Protocol (RFC3550).
6
7The Net::RTP module is used to send a receive RTP packets.
8
9The Net::RTP::Packet module is used to parse the RTP packet headers.
10It may be used totally independently of Net::RTP if you want to handle
11sending and receiving packets yourself.
12
13
14INSTALLATION
15------------
16
17	I use Module::Build to build and install the module.
18	To install this module type the following:
19
20		perl Build.PL
21		./Build
22		./Build test
23
24	And then as root:
25
26		./Build install
27
28	Module::Build is available in the debian package:
29
30		libmodule-build-perl
31
32
33DEPENDENCIES
34------------
35
36	This module requires the IO::Socket::Multicast perl module,
37	which in-turn requires IO::Interface.
38
39	You will also need one of the following super-class modules:
40
41		IO::Socket::Multicast6 (IPv4 and IPv6 unicast and multicast)
42		IO::Socket::Multicast (IPv4 unicast and multicast)
43		IO::Socket::INET6 (IPv4 and IPv6 unicast)
44		IO::Socket::INET (IPv4 unicast)
45
46
47INCLUDED TOOLS
48--------------
49
50	rtpstats.pl - Displays packet statistics for an RTP session
51	rtpsend-pcmu.pl - Send an audio file as an u-law RTP session
52	rtplosslog.pl - Log packet loss for a RTP session every minute
53	rtpdump.pl - Parse and display incoming RTP packet headers
54
55
56AUTHOR
57------
58
59	Nicholas J Humfrey, njh@cpan.org
60
61
62COPYRIGHT AND LICENSE
63---------------------
64
65	Copyright (C) 2006 University of Southampton
66
67	This library is free software; you can redistribute it and/or modify it
68	under the same terms as Perl itself, either Perl version 5.005 or, at
69	your option, any later version of Perl 5 you may have available.
70
71