From bfe558365b724c5e67a6f665ac5d70e64597e042 Mon Sep 17 00:00:00 2001 From: Romain Bouqueau Date: Tue, 2 Jul 2024 14:09:08 -0400 Subject: [PATCH] fix 2 typos - see https://github.com/gpac/wiki/pull/10 --- docs/Developers/javascript.md | 2 +- docs/Developers/tutorials/GPAC-concepts.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Developers/javascript.md b/docs/Developers/javascript.md index b9dffbc9..21050662 100644 --- a/docs/Developers/javascript.md +++ b/docs/Developers/javascript.md @@ -3,7 +3,7 @@ Javascript developers have two options to work with GPAC, the most appropriate s ## Javascript Filters -The JS filter API makes it easy to **extend gpac** using the internal QuickJS runtime, giving access to the Filter API for frame and packet processing, but also APIs foradaptative streaming, compositing, storage, ... +The JS filter API makes it easy to **extend gpac** using the internal QuickJS runtime, giving access to the Filter API for frame and packet processing, but also APIs for adaptative streaming, compositing, storage, ... Some of the gpac built-in filters - eg. [avgen](Filters/avgen), [avmix](Filters/avmix) - are actualy implemented as custom javascript filters. Their source code can be found under the[`share/scripts/jsf`](https://github.com/gpac/gpac/tree/master/share/scripts/jsf) directory. diff --git a/docs/Developers/tutorials/GPAC-concepts.md b/docs/Developers/tutorials/GPAC-concepts.md index 5219a26b..5b9a0b9a 100644 --- a/docs/Developers/tutorials/GPAC-concepts.md +++ b/docs/Developers/tutorials/GPAC-concepts.md @@ -3,7 +3,7 @@ The **GPAC Filter API** is at the core of the [MP4Box and GPAC](Howtos/gpac-mp4box) applications. -The `gpac` application allows building media pipeplines by conveniently [combining and configuring Filters](Filters/filters_general) from the command line. +The `gpac` application allows building media pipelines by conveniently [combining and configuring Filters](Filters/filters_general) from the command line. Filters are configurable processing units consuming and producing data packets.