Developing OSSRF for AWMA by Bisect.
Currently, only Linux is supported.
Conan >= 2.0
CMake >= 3.16
Clone the repository:
git clone git@github.com:AMWA-TV/nmos-sender-receiver-framework.git
or
git clone https://github.com/AMWA-TV/nmos-sender-receiver-framework.git
This will create the docker containers base on the docker compose:
docker compose -f images/docker-compose-x86-development.yml build
One of the containers is the ossrf-dev where you can find the development container. The other is nmos-registry where will launch the NVIDIA NMOS Commissioning Controller
This will run the docker containers:
docker compose -f images/docker-compose-x86-development.yml up -d
This project includes a development container to facilitate code development. When the container is built for the first time, it is empty, and the repository needs to be cloned again inside the container to build the project.
Install ms-vscode-remote.remote-ssh
extension on vscode and enter on the container.
First you need to check you IP address. You can do it by running:
hostname -i
Once you know your ip address you enter the container by doing:
ssh -p 55555 nmos@{your-ip-address} -XY
The password for this user is:
nmos
You can access the UI by opening your favorite browser and go to this link:
http://localhost:8010/admin/
If you have not used Conan before:
-
create a directory:
mkdir ~/.conan2
-
confirm that the Conan version is suitable
conan --version
-
set the default Conan profile, e.g.
conan profile detect --force
-
You can map an outside of the container .conan2 folder in order to have persistent data storage. You just need to add the line below on to the volumes inside the docker-compose-x86-development.yml.
- /.conan2:/home/nmos/.conan2:rw
This only has to be done at the first time or after any of the dependencies change:
./scripts/setup.sh
./scripts/build.sh
This example showcases the creation of one video/raw receiver and two video/raw senders, both on the NMOS and GStreamer sides. The receiver can be connected to either sender, allowing you to observe the different outputs. While it is possible to create NMOS audio resources, GStreamer support for audio is not yet implemented.
Open cpp/demos/ossrf-nmos-api/config/nmos_config.json
and adjust the following parameters:
-
host_addresses
-
registry_address
-
system_address
-
interface_address
-
system_address
This must be the address of the primary data interface.
./build/Debug/cpp/demos/ossrf-nmos-api/ossrf-nmos-api -f ./cpp/demos/ossrf-nmos-api/config/nmos_config.json
./scripts/build-inside-container.sh