# AI event encoder
Source: [https://docs.qualcomm.com/doc/80-70022-50/topic/gst-ai-event-encoder.html](https://docs.qualcomm.com/doc/80-70022-50/topic/gst-ai-event-encoder.html)
The **gst-ai-event-encoder** application receives the live video stream input from
camera, file, or RTSP source. When a human enters the video frame the application
preprocesses the video, runs inferences on the AI hardware, and encodes the video. The
encoding stops 5 seconds after the human moves away from the frame and restarts when anyone
enters the frame.
The following figures show the event detection and recording pipelines for event encoder
application. For information about the plugins used in the pipeline flow, see [Pipeline flow](https://docs.qualcomm.com/doc/80-70022-50/topic/gst-ai-event-encoder.html#gst_ai_event_encoder__section_tsy_xsy_pgc).
Figure : gst-ai-event-encoder event detection pipeline
Figure : gst-ai-event-encoder recording pipeline
## Sample model and label files
Table : Sample model and label files for gst-ai-event-encoder
| Runtime | Model files | Label files |
| :--- | :--- | :--- |
| LiteRT | *yolox\_quantized.tflite* | *yolox.json* |
## Run the application on the target device
Use the following command to run the application:
gst-ai-event-encoder --config-file=/etc/configs/config-event-encoder.jsonCopy to clipboard
The sample application uses the
/etc/configs/config-event-encoder.json file to read the
input parameters.
To create your own config JSON file, use [config-event-encoder.json](https://git.codelinaro.org/clo/le/platform/vendor/qcom-opensource/gst-plugins-qti-oss/-/blob/imsdk.lnx.2.0.0.r2-rel/gst-sample-apps/gst-ai-event-encoder/config-event-encoder.json?ref_type=heads) as a
reference.
1. Ensure that you complete the [Prerequisites](https://docs.qualcomm.com/doc/80-70022-50/topic/download-model-and-label-files.html).
2. Update the config JSON file based on the model, input stream, and other
properties. For more information, see [Config JSON field description](https://docs.qualcomm.com/doc/80-70022-50/topic/gst-ai-event-encoder.html#gst_ai_event_encoder__section_apm_bty_pgc).
3. Use the following format of the config-event-encoder.json
file.
{
"file-path": "",
"model": "",
"labels": "",
"threshold": ,
"runtime": ""
}Copy to clipboard
Note: The application supports only 1080P video format
as input.
For example, run the application using input from a camera, YOLOX model,
and human count on console:
{
"file-path": "/etc/media/video.mp4",
"model": "/etc/models/yolox_quantized.tflite",
"labels": "/etc/labels/yolox.json",
"threshold": 40,
"runtime": "dsp"
}Copy to clipboard
4. Run the gst-ai-event-encoder
application:
gst-ai-event-encoder --config-file=/etc/configs/config-event-encoder.jsonCopy to clipboard
5. To display the available help options, run the following command in the SSH
shell:
gst-ai-event-encoder -hCopy to clipboard
6. To stop the use case, use CTRL +
C.
## Expected output
The output is saved as an MP4 file within `etc/media` folder as
`output-1.mp4`, `output-2.mp4`, and so on.
## Pipeline flow
The following table lists the plugins used in the AI event encoder
pipeline
| Plugin | Description |
| --- | --- |
| Camera source:[qtiqmmfsrc](https://docs.qualcomm.com/doc/80-70022-50/topic/qtiqmmfsrc.html) |
Captures the live stream from camera.
Uses tee to split the stream into two for inferencing and composing.
|
| File source: filesrc |
Captures the video stream using filesrc, followed by qtdemux, which demultiplexes the stream.
Uses tee to split the stream into two for inferencing and composing.
|
| RTSP source: rtspsrc |
Captures the RTSP stream using rtspsrc, followed by rtph264depay for video extraction.
Uses tee to split the stream into two for inferencing and composing.
|
| h264parse | Parses the H.264 video. |
| [v4l2h264dec](https://docs.qualcomm.com/doc/80-70022-50/topic/v4l2h264dec.html) | Decodes the video. |
| [qtimlvconverter](https://docs.qualcomm.com/doc/80-70022-50/topic/qtimlvconverter.html) |
Receives the video stream on its sink pad.
Performs the following preprocessing on the stream data. This preprocessing is done when the model expects floating-point values as input.
Color conversion
Scaling (up or down)
Normalization
Converts the preprocessed video stream to a tensor stream on its source pad.
The tensor stream is used for inferencing in the later stages of the pipeline. |
| Inferencing plugin:[qtimltflite](https://docs.qualcomm.com/doc/80-70022-50/topic/qtimltflite.html) |
After the inference runtime receives the tensor stream on its sink pad, it runs the inference.
Produces a tensor stream with the inference results on its source pad.
|
| qtimlpostprocess | The first qtimlpostprocess plugin for detection model handles inference results from any object detection model.
Applies a threshold to the chosen number of results.
Loads the YOLOv8 module.
Produces video frames with only bounding boxes that can be overlaid on objects.
Sends these processed frames to the sink pad of qtivcomposer.
|
| qtimlpostprocess | The second qtimlpostprocess plugin for detection model does the following:
Produces the output in a text format (bounding box coordinates and labels).
This output is connected to appsink plugin where the metadata is read, parsed, and logged.
The bounding box information is used to count number of humans in each frame.
Waylandsink submits the video stream received on its sink pad to Weston.
Weston renders the video stream on a local display.
|
| | |
## Config JSON field description
The different parameters available to configure the JSON file and run the use case
are as follows:
Table : Field description–gst-ai-event-encoder file
| Field | Values/description |
| :--- | :--- |
| **runtime** | Use one of the following runtimes:
cpu
gpu
dsp
|
| **Input source** | Use one of the following input sources:
camera–Primary (0) or secondary (1).
file-path–The directory path to the video file.
rtsp-ip-port–The address of the RTSP stream: rtsp://<ip>:<port>/<stream>.
|
## Known issue
The MP4 file generated after end of stream (EOS) using file source isn't
playable.
## Related information
[Object detection](https://docs.qualcomm.com/doc/80-70022-50/topic/gst-ai-object-detection.html)
**Parent Topic:** [Run AI/ML sample applications](https://docs.qualcomm.com/doc/80-70022-50/topic/ai-ml-sample-applications.html)
Last Published: Feb 20, 2026
[Previous Topic
Metadata parsing](https://docs.qualcomm.com/bundle/publicresource/80-70022-50/topics/gst-ai-metadata-parser.md) [Next Topic
AI USB camera](https://docs.qualcomm.com/bundle/publicresource/80-70022-50/topics/ai-usb-camera.md)