Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teiacare/teiacarevideoio
TeiaCareVideoIO is a C++ video encoder and decoder library.
https://github.com/teiacare/teiacarevideoio
cpp cross-platform ffmpeg video-decoding video-encoding video-io videocapture videowriter
Last synced: 4 days ago
JSON representation
TeiaCareVideoIO is a C++ video encoder and decoder library.
- Host: GitHub
- URL: https://github.com/teiacare/teiacarevideoio
- Owner: TeiaCare
- License: apache-2.0
- Created: 2024-06-19T06:56:56.000Z (5 months ago)
- Default Branch: develop
- Last Pushed: 2024-08-19T07:22:54.000Z (3 months ago)
- Last Synced: 2024-08-19T08:43:49.767Z (3 months ago)
- Topics: cpp, cross-platform, ffmpeg, video-decoding, video-encoding, video-io, videocapture, videowriter
- Language: C++
- Homepage: https://teiacare.github.io/TeiaCareVideoIO/
- Size: 306 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# TeiaCareVideoIO
Welcome to TeiaCareVideoIO!
*TeiaCareVideoIO* is a C++ video encoder and decoder library.
[![Docs](https://img.shields.io/badge/Docs-TeiaCareVideoIO-white.svg)](https://teiacare.github.io/TeiaCareVideoIO/md_README.html)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/baef7f2dfab74df1985a25ee5ebcb88e)](https://app.codacy.com/gh/TeiaCare/TeiaCareVideoIO/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/baef7f2dfab74df1985a25ee5ebcb88e)](https://app.codacy.com/gh/TeiaCare/TeiaCareVideoIO/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
[![codecov](https://codecov.io/gh/TeiaCare/TeiaCareVideoIO/branch/develop/graph/badge.svg?token=2o019cGivY)](https://codecov.io/gh/TeiaCare/TeiaCareVideoIO)![TeiaCareVideoIO](https://socialify.git.ci/TeiaCare/TeiaCareVideoIo/image?description=1&font=Raleway&name=1&pattern=Solid&theme=Auto)
## Getting Started
### Create a virtual environment
```bash
python -m pip install --upgrade pip
python -m venv .venv# Linux/MacOS
echo "export CONAN_USER_HOME=$PWD" >> .venv/bin/activate
source .venv/bin/activate# Windows
echo set CONAN_USER_HOME=%CD%>>.venv\Scripts\activate.bat
.venv\Scripts\activate.batpip install -r scripts/requirements.txt
pre-commit install
```### Setup Build Environment (Windows Only)
When building from command line on Windows it is necessary to activate the Visual Studio Developer Command Prompt.
Depending on the version of Visual Studio compiler and on its install location it is required to run *vcvars64.bat* script the set the development environment properly.
*Note*: using Visual Studio IDE or the CMake extension for VSCode this step is already managed in the background, so no action is required.Examples:
```bash
# Visual Studio 2022 - Build Tools
"C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat"# Visual Studio 2019 - Enterprise
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
```### Dependencies Setup
This script must be executed in order to setup the conan packages (note that 3rd party libs are only required for unit tests, examples and benchmarks).
```bash
python scripts/conan/setup.py
```### Configure, Build and Install
This script configures, builds and installs the library.
```bash
python scripts/cmake.py
```## Install FFmpeg for Examples and Unit Tests
Examples and Unit Tests execution requires video data generation. In order to generate such data it is required to install FFmpeg using your OS package manager such as:
```bash
# Windows, using chocolatey
choco install ffmpeg -y# Windows, using winget
winget install ffmpeg# Linux
sudo apt-get install -y ffmpeg# MacOS
brew install ffmpeg
```Once FFmpeg is installed and available on the path run the following python script:
```bash
python scripts/tests/generate_test_data.py
```## Examples
```bash
# Build all the examples
python scripts/cmake.py --examples --warnings# Run all the examples
python scripts/tools/run_examples.py install/examples
```
Examples are installed in $PWD/install/examples.## Unit Tests and Code Coverage
```bash
# Build Unit Tests with Code Coverage enabled (if supported)
python scripts/cmake.py --coverage --warnings# Run Unit Tests
python scripts/tools/run_unit_tests.py# Run Code Covergae
python scripts/tools/run_coverage.py
```
Note that code coverage is not available on Windows.Unit tests results are available in $PWD/results/unit_tests.
Coverage results are available in $PWD/results/coverage.## Sanitizers
### Address Sanitizer
```bash
# Build Unit Tests with Address Sanitizer enabled (if supported)
python scripts/cmake.py --address_sanitizer --unit_tests# Run Unit Tests with Address Sanitizer
python scripts/tools/run_sanitizer.py --address_sanitizer install/unit_tests/teiacare_video_io_unit_tests
```
Note that Address Sanitizer is supported only on Linux.### Thread Sanitizer
```bash
# Build Unit Tests with Thread Sanitizer enabled (if supported)
python scripts/cmake.py --thread_sanitizer --unit_tests# Run Unit Tests with Thread Sanitizer
python scripts/tools/run_sanitizer.py --thread_sanitizer install/unit_tests/teiacare_video_io_unit_tests
```
Note that Thread Sanitizer is supported only on Linux.## Benchmarks
```bash
# Build Benkmarks
python scripts/cmake.py --benchmarks --warnings# Run Benchmarks
python scripts/tools/run_benchmarks.py
```
Benchmarks are installed in $PWD/install/benchmarks.## Code Formatting
- [clang-format](https://clang.llvm.org/docs/ClangFormat.html)
*clang-format* can be installed via *pip* using the provided *scripts/requirements.txt*
```bash
python scripts/tools/run_clang_format.py -r -i video_io
```## Code Analysis
- [clang-tidy](https://clang.llvm.org/extra/clang-tidy/)
*clang-tidy* can be installed via *pip* using the provided *scripts/requirements.txt*
```bash
python scripts/tools/run_clang_tidy.py -header-filter=.* video_io
```- [cppcheck](http://cppcheck.net/)
First install and setup *cppcheck* from your OS package manager.
```bash
# Linux
sudo apt install cppcheck# Windows
winget install cppcheck
```Then run CppCheck using the provided python script:
```bash
python scripts/tools/run_cppcheck.py
```## Generate Documentation
First install and setup *Doxygen* from your OS package manager.
```bash
# Linux
apt-get install doxygen graphviz# Windows
winget install doxygen
```Then run Doxygen using the provided python script:
```bash
python scripts/tools/run_doxygen.py
```
Documentation is now installed in $PWD/docs.## Conan Package
### Local Install
Create, test and install local package.
Notes:
1) The install directory path must be a valid Conan cache (i.e. ".conan" folder) located in the current directory.
So, in order to install the package in a desired repository folder, it is required to run this script from the repository folder directly.
2) The Conan package tests are automatically run during package creation.
The directory test_package contains a test project that is built to validate the proper package creation.```bash
# Create the Conan package locally
python scripts/conan/create.py# Build and install the test package executable
python test_package/build.py# Run the test package executable
$PWD/install/test_package/teiacare_sdk_test_package
```### Artifactory Upload
In order to upload a Conan package to TeiaCare Artifactory server it is required to setup you local Conan client once with the following commands:
```bash
# Add TeiaCare Artifactory remote to local Conan client
conan remote add teiacare $(artifactory.url)/teiacare# Authenticate with Artifactory credentials
conan user $(artifactory.username) -p $(artifactory.password) -r teiacare
```Now it is possible to create and upload a Conan package with the following commands:
```bash
# Create the Conan package locally
python scripts/conan/create.py# Upload the package to Artifactory on the teicare remote
python scripts/conan/upload.py teiacare teiacare_video_io
```## Contributing
In order to contribute to TeiaCareVideoIO, please follow our [contribution guidelines](./CONTRIBUTING).
[![Contributions](https://img.shields.io/badge/Contributions-Welcome-green.svg)](./CONTRIBUTING)
## License
This project is licensed under the [Apache License, Version 2.0](./LICENSE).
Copyright © 2024 [TeiaCare](https://teiacare.com/)[![License](https://img.shields.io/badge/License-Apache_v2-blue)](./LICENSE)
## Video Streaming Integration Test (RTSP)
```bash
# Start mediamtx proxy stream
docker run --network=host -e MTX_PROTOCOLS=tcp -p 8554:8554 bluenviron/mediamtx# Stream a local video to the proxy
ffmpeg -nostdin -stream_loop -1 -re -i "" -an -f rtsp -rtsp_transport tcp rtsp://localhost:8554/live# Run a video reader example application
./video_reader_imgui_player rtsp://localhost:8554/live
./video_reader_opengl_player rtsp://localhost:8554/live
```