add license information

This commit is contained in:
Maik Jurischka
2025-12-19 09:49:11 +01:00
parent 1c61e76eb4
commit 0fd3fe4ce6
10 changed files with 95 additions and 0 deletions

View File

@@ -1,3 +1,11 @@
/*
* VizionStreamer - Main Application
* Copyright (c) 2025 Maik Jurischka
*
* Licensed under CC BY-NC-SA 4.0
* https://creativecommons.org/licenses/by-nc-sa/4.0/
*/
#include <iostream>
#include <memory>
#include <csignal>
@@ -87,6 +95,7 @@ int main() {
std::cout << "\n========================================" << std::endl;
std::cout << "VizionStreamer Ready" << std::endl;
std::cout << "Author: Maik Jurischka <maik@skadilabs.de>" << std::endl;
std::cout << "License: CC BY-NC-SA 4.0 -> https://creativecommons.org/licenses/by-nc-sa/4.0/" << std::endl;
std::cout << "========================================" << std::endl << std::endl;
std::cout << "Control socket: " << socketPath << std::endl;
std::cout << "Default pipeline: videoconvert ! autovideosink" << std::endl;