3 stable releases
| 1.0.4 | Feb 10, 2022 |
|---|---|
| 1.0.1 | Nov 12, 2021 |
#450 in Video
21 downloads per month
160KB
3.5K
SLoC
Rust bindings for OpenTok SDK
OpenTok SDK bindings for Rust.
These bindings are providing a safe API that can be used to interface with OpenTok.
Setting up your environment
To build the OpenTok bindings or anything depending on them, you need to have the OpenTok 2.19.1 SDK installed. For now the only supported platform is Linux and 2.19.1 is the only supported version.
You need to download the SDK from
https://tokbox.com/developer/sdks/linux/.
Extract it somewhere in your machine and add the SDK's lib folder path to your
LD_LIBRARY_PATH and LIBRARY_PATH environment variables:
wget https://tokbox.com/downloads/libopentok_linux_llvm_x86_64-2.19.1
tar xvf libopentok_linux_llvm_x86_64-2.19.1 -C /home/quijote/opentok
export LD_LIBRARY_PATH="/home/quijote/opentok/libopentok_linux_llvm_x86_64-2.19.1/lib:$LD_LIBRARY_PATH"
export LIBRARY_PATH="/home/quijote/opentok/libopentok_linux_llvm_x86_64-2.19.1/lib:$LIBRARY_PATH"
In Fedora you need to make sure libcxx is installed:
sudo dnf install -y libcxx-devel
Dependencies
~0.4–5MB
~108K SLoC