-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,36 @@ | ||
# RTPeeker | ||
|
||
_Work in progress_ | ||
![CI](https://img.shields.io/github/actions/workflow/status/LVala/rtpeeker/ci.yml) | ||
![crates.io](https://img.shields.io/crates/v/rtpeeker) | ||
|
||
RTP streams analysis and visualization tool. | ||
|
||
_Work in progress..._ | ||
|
||
## Installation | ||
|
||
_TODO_ | ||
Supports Linux and MacOS. | ||
|
||
1. RTPeeker depends on `libpcap`, make sure to install it: | ||
|
||
```shell | ||
# installed on MacOS by default | ||
|
||
# for Ubuntu | ||
sudo apt install libpcap-dev | ||
|
||
# for Arch | ||
sudo pacman -S libpcap | ||
``` | ||
|
||
2. RTPeeker itself can be installed using the [Rust toolchain](https://www.rust-lang.org/tools/install): | ||
|
||
```shell | ||
cargo install --locked rtpeeker | ||
``` | ||
|
||
3. Run RTPeeker: | ||
|
||
```shell | ||
rtpeeker --help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters