This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\ttuma>conan install ..\..\diagram-server --build=wt --build=qt | |
Auto detecting your dev setup to initialize the default profile (C:\Users\ttuma\.conan\profiles\default) | |
Found Visual Studio 16 | |
Found clang 11.1 | |
Default settings | |
os=Windows | |
os_build=Windows | |
arch=x86_64 | |
arch_build=x86_64 | |
compiler=Visual Studio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conanfile.py: | |
from conans import ConanFile, CMake | |
class DiagramServerConan(ConanFile): | |
settings = "os", "compiler", "build_type", "arch" | |
generators = ( | |
"cmake_find_package", | |
"cmake_paths", | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Projects\build\diagram-server>conan install ../../diagram-server --build=qt | |
Configuration: | |
[settings] | |
arch=x86_64 | |
arch_build=x86_64 | |
build_type=Release | |
compiler=Visual Studio | |
compiler.runtime=MD | |
compiler.version=16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The main idea is to have a "Base" pipeline that will handle receiving video, | |
and a "Fixed" pipeline that handles recording / displaying video. | |
Finished pipeline is Base + Fixed. | |
UDP Pipeline: | |
"udpsrc port=5600 ! application/x-rtp, clock-rate=90000,payload=96" | |
RTSP Pipeline: |