Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 702 | 27 | 19 | |
misc.py | D | 03-May-2024 | 2.5 KiB | 88 | 57 | |
misc_test.py | D | 03-May-2024 | 2.3 KiB | 73 | 43 | |
pb_parse.py | D | 03-May-2024 | 1.8 KiB | 53 | 34 | |
rtp_analyzer.py | D | 03-May-2024 | 12.4 KiB | 341 | 266 | |
rtp_analyzer.sh | D | 03-May-2024 | 497 | 11 | 2 | |
rtp_analyzer_test.py | D | 03-May-2024 | 1.8 KiB | 62 | 40 |
README.md
1# RTP log analyzer 2This file describes how to set up and use the RTP log analyzer. 3 4## Build 5 6```shell 7$ autoninja -C out/my_build webrtc:rtp_analyzer 8``` 9 10## Usage 11 12```shell 13./out/my_build/rtp_analyzer.sh [options] /path/to/rtc_event.log 14``` 15 16where `/path/to/rtc_event.log` is a recorded RTC event log, which is stored in 17protobuf format. Such logs are generated in multiple ways, e.g. by Chrome 18through the chrome://webrtc-internals page. 19 20Use `--help` for the options. 21 22The script requires Python (2.7 or 3+) and it has the following dependencies: 23Dependencies (available on pip): 24- matplotlib (http://matplotlib.org/) 25- numpy (http://www.numpy.org/) 26- protobuf (https://pypi.org/project/protobuf/) 27