File | Date | Author | Commit |
---|---|---|---|
Makefile | 2013-05-09 |
![]() |
[42d559] Initial commit |
README.md | 2013-05-10 |
![]() |
[5ebadb] markdown playing tricks on me |
rtp_mst.c | 2013-05-14 |
![]() |
[6063e5] Fixed check for dejittering before writing afte... |
rtp_mst_sender.py | 2013-05-14 |
![]() |
[27687f] Added usage information. |
Command line tools for sending and receiving Scalable Video Coding (SVC) streams via RTP over IP multicast in Multi-Session Transmission (MST) mode.
The receiver is implemented in C (for speed), the sender is implemented as a Python script.
To compile the receiver, simple call:
make
First, start the receiver:
./rtp_mst 224.1.1.1 5110 224.1.1.2 5120 224.1.1.3 5130 224.1.1.4 5140 output_file.264
Then, start the sender:
python rtp_mst_sender.py input_file.264 224.1.1.1 5110 224.1.1.2 5120 224.1.1.3 5130 224.1.1.4 5140
The receiver stops when either end-of-sequence/end-of-stream NALUs (type 10 or 11) are received or when no data at all is received for a given time (2 seconds).
The sender includes ICT-ALICANTE Content-Aware Transport Information (CATI) in an RTP header extension (compliant to RFC 3550).
Author: Michael Grafl <
michael(dot)grafl(at)itec(dot)aau(dot)at>
, Alpen-Adria-Universitšt Klagenfurt
Contributions: Markus Waltl <
markus(dot)waltl(at)itec(dot)aau(dot)at>
, Alpen-Adria-Universitšt Klagenfurt
This work was supported in part by the EC in the context of the ALICANTE project (FP7-ICT-248652). http://www.ict-alicante.eu/
The MIT License
Copyright (c) 2013 Michael Grafl
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.