From ProventusNova DeveloperWiki
Combined display of all available logs of ProventusNova DeveloperWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:40, 4 August 2025 Andres talk contribs created page How to NVIDIA Jetson Orin Nano UART Console (Created page with "= How to Connect to NVIDIA Jetson Orin Nano UART Console = This guide explains how to connect to the UART serial console of the NVIDIA Jetson Orin Nano Developer Kit using a TTL-to-USB adapter. This is useful for accessing boot logs, debugging early kernel messages, or interacting with the board when other interfaces are unavailable. == Requirements == * NVIDIA Jetson Orin Nano Developer Kit * TTL-to-USB Serial Adapter (e.g., based on CP2102, CH340, or FT232) * Jumper...")
- 13:54, 24 July 2025 Andres talk contribs created page How to Enable OpenCL Support in OpenCV for MediaTek Yocto Platforms (Created page with "= How to Enable OpenCL Support in OpenCV for MediaTek Yocto Platforms = This guide explains how to add OpenCL support to OpenCV in a Yocto-based BSP for MediaTek Genio or similar platforms by modifying the OpenCV recipe through a `.bbappend` file. == 🧠Prerequisites == Before proceeding, make sure you have: * A working Yocto Project build setup for your MediaTek Genio or similar platform. * A custom meta-layer (e.g. <code>meta-yourlayer</code>) where you can place...")
- 20:11, 23 July 2025 Andres talk contribs created page How to Run GStreamer in a Docker Container (Created page with "= How to Run GStreamer in Docker = This tutorial shows you how to install and use '''GStreamer''' inside a '''Docker container''' on '''Ubuntu 22.04'''. We'll build a minimal Docker image with support for '''x264enc''', then run a simple test pipeline to encode video to an MP4 file. == Step 1: Create a Dockerfile with GStreamer and x264enc == Create a file named <code>Dockerfile</code> with the following contents: <syntaxhighlight lang="dockerfile"> FROM ubuntu:22.04...")
- 22:38, 8 June 2025 Andres talk contribs created page Https://www.google.com/How to start camera stream on boot with systemd service NVIDIA Jetson tutorial (Created page with "=How to start camera stream on boot with systemd service – NVIDIA Jetson Tutorial= This tutorial demonstrates how to automatically launch a Python-based camera streaming application on boot using a <code>systemd</code> service on NVIDIA Jetson devices. == Prerequisites == * NVIDIA Jetson board (e.g., Orin NX, Nano, Xavier) * Your custom Python GStreamer/WebRTC camera application * Access to the terminal and root privileges == Step 1: Prepare the Python Script == E...")
- 23:18, 23 March 2025 Andres talk contribs created page How to Build a Video Capture Application Using GStreamer and OpenCV in Python (Created page with "= How to Build a Video Capture Application Using GStreamer and OpenCV in Python = This guide explains how to create a basic video capture application using **GStreamer** and **OpenCV** in Python. The application captures video from a camera using GStreamer and processes it with OpenCV. == Full Script == For those who just want the code, here is the complete script: <syntaxhighlight lang="python"> import gi import cv2 import numpy as np import sys gi.require_version("...")
- 15:51, 11 March 2025 Andres talk contribs created page How to create a custom yocto meta layer (Created page with "=Introduction= This wiki will provide a detailed guide on how to create a custom Yocto meta-layer. ==Create Base Meta-Layer== This section contains steps to create the base custom meta-layer. After completion, the custom base meta-layer will contain the following parts: * Custom layer configuration * Custom distro configuration * Custom machine * Custom config template files * Custom image recipe '''Step 1. Add base layer.conf file''' '''Step 2. Add base distro con...")