https://github.com/peschuster/videohub-simulator
Simulator for Blackmagic Design VideoHubs (for development of custom client software without access to VideoHub hardware).
https://github.com/peschuster/videohub-simulator
blackmagicdesign qt simulator videohub
Last synced: 15 days ago
JSON representation
Simulator for Blackmagic Design VideoHubs (for development of custom client software without access to VideoHub hardware).
- Host: GitHub
- URL: https://github.com/peschuster/videohub-simulator
- Owner: peschuster
- Created: 2017-04-02T18:01:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-11T19:24:39.000Z (about 6 years ago)
- Last Synced: 2025-04-15T23:13:27.529Z (15 days ago)
- Topics: blackmagicdesign, qt, simulator, videohub
- Language: C++
- Size: 14.6 KB
- Stars: 12
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BMD VideoHub Simulator
Simulator for Blackmagic Design VideoHubs (for development of custom client software without access to VideoHub hardware).
When cloning this repository, you make wish to use the following git command to automatically initialize the included submodules:
git clone --recurse-submodules -j8
## Requirements
You need Qt to build this project.
If you are on a mac you can use Homebrew to install it:
# install the files
brew install qt5
# for adding files to your paths
# Otherwise, you can add the PATH output from the install command
# to your PATH so that you can find qmake
brew link qt5 --forceAdditionally, this project uses a git submodule for QtZeroConf. After cloning this repository, initialize it by running:
git submodule init
git submodule update## Building
cd source
qmake -makefile
makeThis will output an executable named "BmdVideoHub". Run it with "./BmdVideoHub".