Skip to content

Commit 417c26d

Browse files
committed
Address multiple github suggestions
1 parent 318a9fd commit 417c26d

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

docs/FFmpegPlugin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ replace `7.0` with `6.1` in the following script.
2525
```bash
2626
./configure-ffmpeg.sh
2727
```
28-
To be able to measure end-to-end please use following configuration parameters
28+
To be able to measure end-to-end latency please use following configuration parameters
2929
```bash
30-
./configure-ffmpeg.sh --enable-libfreetype --enable-libharfbuzz --enable-libfontconfig
30+
./configure-ffmpeg.sh ${FFMPEG_VER} --enable-libfreetype --enable-libharfbuzz --enable-libfontconfig
3131
```
3232

3333
1. Build and install FFmpeg with the Media Communications Mesh FFmpeg plugin
@@ -281,7 +281,7 @@ ffmpeg version n6.1.1-152-ge821e6c21d Copyright (c) 2000-2023 the FFmpeg develop
281281

282282
While measuring latency, it is necessary to configure FFmpeg with additional parameters. If the error `No such filter: 'drawtext'` occurs, please reconfigure and rebuild FFmpeg:
283283
```bash
284-
./configure-ffmpeg.sh --enable-libfreetype --enable-libharfbuzz --enable-libfontconfig
284+
./configure-ffmpeg.sh ${FFMPEG_VER} --enable-libfreetype --enable-libharfbuzz --enable-libfontconfig
285285
```
286286

287287
<!-- References -->

docs/LatencyMeasurement.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Before reading this document, please read [FFmpeg Plugin](FFmpegPlugin.md) to fa
88

99
1. Please follow build and install steps from [FFmpeg Plugin](FFmpegPlugin.md). with one exception, FFmpeg configuration tool requires additional parameters.
1010
```bash
11-
./configure-ffmpeg.sh --enable-libfreetype --enable-libharfbuzz --enable-libfontconfig
11+
./configure-ffmpeg.sh ${FFMPEG_VER} --enable-libfreetype --enable-libharfbuzz --enable-libfontconfig
1212
```
1313
## Time synchronization between hosts
1414

@@ -82,7 +82,7 @@ This example demonstrates sending a video file from the 1st FFmpeg instance to t
8282
```bash
8383
ffmpeg -f rawvideo -pix_fmt yuv422p10le -s 1920x1080 -i <video-file-path> ...
8484
```
85-
To get meaningfull latency measurement it is also recommended to provide rate `-readrate` at which FFmpeg will read frames from file . Example:
85+
To get meaningful latency measurement it is also recommended to provide rate `-readrate` at which FFmpeg will read frames from file. Example:
8686
```bash
8787
ffmpeg -f rawvideo -readrate 2.4 -pix_fmt yuv422p10le -s 1920x1080 -i <video-file-path> ...
8888
```
@@ -171,9 +171,12 @@ This example demonstrates sending a video file from the 1st FFmpeg instance to t
171171
## Stream postprocessing
172172
The generated stream can be analyzed manually, but it is a long process. To accelerate it, there is a small sript written in Python that automatically extracts and plots latency.
173173

174-
1. install reuired python packages
174+
1. install Install Tesseract OCR
175175
```bash
176176
apt install tesseract-ocr
177+
```
178+
2. Install Python packages
179+
```bash
177180
pip install opencv-python
178181
pip install pytesseract
179182
pip install matplotlib

0 commit comments

Comments
 (0)