Jetson Nano FAQ

Q: What power supply should I use with Jetson Nano Developer Kit?

Please refer to these pages on the wiki and forums:

Q: My Jetson Nano is with sd card slot. Can I use it to verify secureboot?

No. Secureboot is only supported on production module(Jetson Nano with emmc).

Q: I have an issue that I need help with - what steps should I take when posting a new topic?

Please see this thread - Debug tips when you hit any issue (fail to boot/ keep reboot ...etc)

Q: How to install old version JetPack from SDK Manager?

Run below commands:

$ sdkmanager --archivedversions

Q: When I try to Install SDK components, the SDK Manager says “Could not detect Nvidia Jeson device connected to USB”. Does anyone also hit the issue?

You can switch to use eth0 ip address to install SDK components:

Run the "sdkmanager" -> choose your "target device" and "install version" -> unselect Flash OS and select install "SDK components" -> Press enter to enter your eth0 ip address(of Jetson Nano), username and password to start install sdk components.

Q: Is hardware acceleration enabled in ffmpeg?

We have enabled hardware decoding. Please check development guide. Hardware encoding is not supported.
You may also check the community contribution GitHub - jocover/jetson-ffmpeg: ffmpeg support on jetson nano · GitHub

Also for leveraging hardware acceleration on Jetson Nano, please check jetson_multimedia_api or gstreamer

Q: I have a USB camera. How can I launch it on Jetson Nano?

You can get supported modes via v4l2-ctl:

$ sudo apt install v4l-utils
$ v4l2-ctl -d /dev/video1 --list-formats-ext
ioctl: VIDIOC_ENUM_FMT
        Index       : 0
        Type        : Video Capture
        Pixel Format: 'YUYV'
        Name        : YUYV 4:2:2
                Size: Discrete 640x480
                        Interval: Discrete 0.033s (30.000 fps)
                        Interval: Discrete 0.042s (24.000 fps)
                        Interval: Discrete 0.050s (20.000 fps)
                        Interval: Discrete 0.067s (15.000 fps)
                        Interval: Discrete 0.100s (10.000 fps)
                        Interval: Discrete 0.133s (7.500 fps)
                        Interval: Discrete 0.200s (5.000 fps)

And launch one mode(Ex: 640x480p30) in gstreamer command:

$ gst-launch-1.0 v4l2src device=/dev/video1 ! video/x-raw,format=YUY2,width=640,height=480,framerate=30/1 ! nvvidconv ! 'video/x-raw(memory:NVMM),format=NV12' ! nvoverlaysink

From r32.4.3(Jetpack4.4), we have new plugin nvv4l2camerasrc, you can leverage it to achieve zero copy:

$ gst-launch-1.0 nvv4l2camerasrc device=/dev/video1 ! video/x-raw(memory:NVMM),format=UYVY,width=640,height=480,framerate=30/1 ! nvvidconv ! 'video/x-raw(memory:NVMM),format=NV12' ! nvoverlaysink

By default it supports UYVY. If your source supports other format such as YUYV(YUY2) or YVYU. You can download the source code, add the format and rebuild/replace the plugin. The source code is in
JetPack SDK Downloads and Notes | NVIDIA Developer
Links to L4T Driver Package (BSP) Sources

Besides, you can run nvgstcapture-1.0 app, please check
Taking Your First Picture with CSI or USB Camera | NVIDIA Developer

Q: Is there any example of running RTSP streaming?

There is an ease-to-use gstreamer sample to run RTSP server. The steps:

  1. Download test-launch.c
    gst-rtsp-server/examples/test-launch.c at 1.14.5 · GStreamer/gst-rtsp-server · GitHub

  2. Build the sample

sudo apt-get install libgstrtspserver-1.0 libgstreamer1.0-dev
gcc test-launch.c -o test-launch $(pkg-config --cflags --libs gstreamer-1.0 gstreamer-rtsp-server-1.0)
  1. Launch the server
$ ./test-launch "videotestsrc is-live=1 ! nvvidconv ! nvv4l2h264enc profile=High ! h264parse ! rtph264pay name=pay0 pt=96"

At client side, if the device is a PC with Windows OS, you can open network stream rtsp://<SERVER_IP_ADDRESS>:8554/test via VLC. If it is a Jetson device, you can run the command:

$ gst-launch-1.0 uridecodebin uri=rtsp://<SERVER_IP_ADDRESS>:8554/test ! nvoverlaysink

Q: Is there an example for running UDP streaming?

A: Please refer to this page: link

Q: I hit an issue and need to have a solution. Could you help?

A: We have quick solutions for some known issues. Please check
Making sure you're not a bot!

Q: How to autorun an app or commands at startup?

A: You can enable rc.local or add it to ~/.xsessionrc. Please refer to the pages:

omxh264enc and nvvidconv NOT working unless... - #22 by DaneLLL
Autrun deepstream app at startup on jetson nano - #10 by DaneLLL
Mediapipe error Open Gl error in myservice.service - #14 by DaneLLL
Startup/boot script with systemd issues - #5 by Anthony_G72

Q: I don’t have a monitor. How can I configure the user account/pwd?

Please refer to the oem-config section in developer guide

Q: How to configure the pinmux function of jetson Nano?

Please refer developer guide, Pinmux changes to customize the pinmux spreadsheet.
Or, you may refer to Configuring the 40-Pin Expansion Header to enable Jetson‑IO python tools to have configuration.

Q: Why pinmux setting does not work on some pins?

Please make sure you are doing full flash to update your dtb, instead of using either FDT in extlinux.conf, or “-k DTB” in flash.sh.

Q: How to debug if my nano is not booting up?

Please refer to below link and dump the boot up log with us.->link

Q: Are there any scripts to automatically build kernel/bootloader?

Yes, we put some tools on this github->link

Q: Can we run the micro USB port on devkit in host mode?

No, it works in device mode only. You can design a custom board to enable host mode. Here is a reference post.

Q: What if I see tearing when running dual display cases?

Please refer to this post and add the property to the Xorg.conf.link

Q:How to boot root file system from external storage?

Please refer to this page: link

Q:How to enable automatic login on Nano-2GB?

Please refer to this page: link

Q: Got “too many resources requested for launch” with a CUDA app.

Please refer to this page: link.

Q: CUDA kernel return “launch timed out”

Nano has 5 second limit for each kernel. Please refer to this page: link.

Q: Is there a way to directly access frame buffer?

It is not supported. Please check explanation in the post

Q: Cannot install TensorFlow with Installing TensorFlow for Jetson Platform - NVIDIA Docs

The instructions are based on JetPack 5. For JetPack 4, please check this post

Q: Invalid key format with OpenSSL 3 to sign the boot file.

add -traditional flag to have key generation. i.e. $ openssl genrsa -traditional -out rsa_priv.pem 2048
see-aslo Topic 242348.

Q: SPI can not receive data issue.

Modify device tree to disable GPIO for SPI pin (MCP251x broken on Jetpack 4.6.3 - #11 by KevinFFF)

Q: TensorFlow fails to install due to h5py error.

Compatibility issue. Please check this post.

Q: Explanation to sdcard module and emmc module

There are lots of users do not understand the difference between sdcard module and emmc module. This topic will explain: link

Q: How to set static IP on Jetson Nano

Jetson Nano typically utilizes NetworkManager. Use the following commands to configure it:

  1. Identify the connection name you want to modify:
nmcli connection show
# example output
NAME                UUID                                  TYPE      DEVICE   
"CONNECTION_NAME"
  1. Open the profile file for your connection. For example:
    • IP address: 192.168.1.174
    • Gateway: 192.168.1.254
    • DNS server: 8.8.8.8

sudo vim /etc/NetworkManager/system-connections/[CONNECTION_NAME]

# In configure file
...
[ipv4]
method=manual
address1=192.168.1.174/24,192.168.1.254
dns=8.8.8.8;
...
  1. Apply the changes and bring up the modified connection:
sudo systemctl restart NetworkManager
sudo nmcli connection up "CONNECTION_NAME"
8 Likes
Using fully-accelerated hardware-based video decoding and encoding with FFMPEG on Jetson Nano
Building FFMPEG for Jetson error: cuda requested, but not all dependencies are satisfied: ffnvcodec
USB web cam is too slow and can't resize
How to convert YUYV to H.264 and record?
Ffmpeg L4T re 32.4.2
Help. Error: could not read image from camera and could not initialize USB camera
RTSP Client Request Format
Problem with USB 3.0 camera
Camera not working with Python+OpenCV in TX2
Taking display from Jetson Nano to laptop using WiFi
Stream the multiple camera output into remote server
Python OpenCV video capture problem
Jetson Nano with IDS GigE camera
TX2i : Modify rootfs to create new user during flashing
USB Camera interfacing with jetson nano developer kit (B01)
VLC Player Crashes in Jetson Nano - Segmentation Fault (Core Dumped)
How do I get FFMPEG to do HW Encoding?
How to use csi camera for rtsp streaming
RTP not working
FLIR Lepton Streaming from Pi Zero to Nano
Saving to file and streaming video and audio on Jetson Nano from a USB 3 webcam
Deepstream 5.0 Jeston nano webcam issue
UYVY Format cameras for Jetson with Deepstream 5.0 python bindings
Capturing a video in jetso board using usb camera
Converting Jetson Nano into Kiosk
GStreamer doesn't release camera
About usb camera use in jetson nano
High CPU usage for video capturing
GoPro Hero as v4l2 Device
Nvv4l2decoder plugin is not shutting down cleanly and leaking memory
How to sync RTC to system time auto when reboot
CSI stream from Jetson Nano to HTML website
Assistance Required for Setting USB Speaker as Default Output Device at Boot
Optimizing opencv gstreamer with mipi and usb uvc cameras
How to stream camera by UDP H264
64bit raspi CSI/USBcam live stream Jetson-inference compatible
RTSP server in Jetpack
Streaming video from IM477 sensor on Nano is slow?
How Nano reads CSI images in real time?
Need help in doing edge computing using jetson nano
Change video settings on RTSP streaming
Missing /dev/watchdog
How to convert a 16 bit grayscale image to RGB and then stream it over H264
RTSP with Jetson Nano
Grey Frames for Seconds 0-1 of Video
GStreamer
USB camera is turned on or working but no screen shown when running the Jetcam in a container
Cannot view RTSP streams from remote Jetson AGX Xavier
Jetson Nano Video Streaming/playback
Use Jetson Nano as PC webcam
USB Cameras fail to open via gst: streaming stopped, reason not-negotiated (-4)
Caught SIGSEGV with Xavier on JP4.5
Help! RTSP Stream with IMX219-160 Camera, not connecting to VLC Player
White noise when streaming through rtsp
Booting Up Jetson Nano and automatically opens a GUI python file
Video data flow: pc -> jetson nano -> monitor, how possible?
Jetson Nano - any easy way to relay rtsp stream?
Self-reboot when using Gstreamer pull video stream with rtmp
How the Deepstream can support the multiple Videos input which from Multiple USB cameras and to do the analysis
Onvif Server
Camera preview failed
UVC camera cant use in Jetson Nano offcial carrier board
About USB UVC issue
How to change the video capture device resolution in Visionworks?
Supporting two video modes
Nvidia gstreamer elements
Unresponsive/slow RTSP stream from USB Cam + Deepstream on Jetson Nano
Get h264 encoded streams from GMSL cameras in third party software
How can I send it to another host VLC using aurducam 12MP IMX477 webcam?
Stream Runcam Webcam using RTSP
Jetson Nano ENCRYPTION
Can a jetson nano be made as usb uvc to transfer 4k video?
Hardware assisted ffmpeg with Jetpack 4.5.1
Can I decode h264 4k 4096x2160 30fps from rtsp stream and restream to 1920x1080 30fps with nano?
Jetson nx video vodec sdk ffmpeg compile run [h264 @ 0x55ab4840d0] Cannot load libnvcuvid.so.1 [h264 @ 0x55ab4840d0] Failed loading nvcuvid. error
How install gstreamer and rtsp server on Jetson tx2
Jetson Nx - Gstremaer start up problem with PureThermal 2
Gstreamer RTSP server detect client disconnect
RTSP not working for Jetson nano
Problems with reading and streaming rtsp with an h264 camera
Jetson agx+gstreamer+sensor_msgs/image: using nvjpegenc/nvv4l2h264enc/rtph264pay/rtmpsinkto encode frames from sensor_msgs/image as appsrc
Jetson Nano and ZED Camera
Getting Error for nvv4l2h264enc in application compilation
Ffmpeg encoder jp 4.4
Why SDK Manager flashed image has no option on file system size?
Gstreamer H.264 video not showing up on Windows Computer
Problem with second USB camera on Xavier NX
Better way to visualise rtsp stream?
USB Camera not recognized
USB Camera not recognized
Limited resolution detect-camera.py in helloAIworld
Hardware accelerated video playback with L4T ffmpeg
OpenCV H264 decoder high CPU usage
Add MPEG4 format for RTSP on sink
How to stream from edge device to vlc
VLC wont play a RTSP stream on nano
Play a H264 camera
Port forwarding for RTSP
Connecting GoPro hero 6 black as a webcam
Problem with second USB camera on Xavier NX
Problems with streaming ( and receiving ) a simple usb-camera with jetson nano and gstreamer
Run a .sh file containing "sudo..." commands without prompting for the user's password
Another GPIO permissions issue
Sample code 12_camera_vl2_cuda does not support e-CAM50 at full size
Gstreamer using nvcomposer to filesink hangs, but nvcomposer to nvoverlaysink works fine
Video encoding of video streams with Jetson AGX Xavier
Gstreamer push rtsp stream to remote ip address
Gstreamer pipeline streaming stopped
Any way to run an apk on a jetson nano, using webcam?
How to send video stream over UDP network by RTP
Macrosilicon USB
SPI no longer working after having been working for months
Can't open webcam| jetson nano 2GB
Unable to transmit video from jetson nano to my laptop
How to send video stream over UDP network by RTP
Does jetson tx2 can not use ffmpeg h264_nvenc encoder to encode video?
Can I capture still image during streaming video in gstreamer?
RTSP stream not recognizing USB camera
Problem with USB Webcam Resolution
Video Encoding using C on Jetson options FFmpeg / Gstreamer / Multimedia API Questions
Recommend Jetpack version and ZED version on TX2
Set up camera from raspberry pi over tcp
Run deepstream-app with blur and shadow when using ffmpeg to push rtsp
Gstreamer pipeline stop when idle and back playing when connect
Nvarguscamera - No cameras available (ar0512 camera)
How to deal with the jitter of hard solution picture?
Convert .ts file to .mp4
Jetson nano nvv4l2h264enc stop working sometimes
RTSP Server unable to launch the stream
Jetson Nano 2GB USB Camera not working in the course's Jupyter Notebook container
Jetson Nano 2GB USB Camera not working in the course's Jupyter Notebook container
Why it showed two devices under /dev for one camera
Zed 2 Issues
How to stream csi camera using RTSP?
Need help for TX2 mipi issue
Issue launching USB camera via RTSP on Jetson Nano
Ffmpeg pixel conversion
Problem with python library in headless mode
How deepstream open dual usb camera
FFmpeg hardware acceleration on Jetson TX2i
I want to push rtsp stream to another computer by deepstream
Display usb camera on jupyter
GStreamer - stream video to IP
Hardware accelerated Ffmpeg on Jetson
RTSP sink does not show picture on connect
Making Nvidia DLI hello camera notebook work with a Logitech QuickCam Express USB webcam
Jetson Nano Lepton 3.5
Create RTSP server on Jetson Nano with Gstreamer python
Unable to turn on USB camera
Nano and Android Tablet
Gray overlay over the original video frame
V4l2loopback device and opencv
Zed Camera Problem
USB camera not working
[Test Request]- Usage of POCL cuda backend combined with Jetson_FFMPEG library for rapid multimedia trancsoding and filtering
H265 live streaming encoding with nano
Accessing multiple video streams from a MIPI port - Jetson Nano - DeepStream - GStreamer python
GStreamer Pipeline works on Desktop but not on Nano
Trying to get OpenCV (built with CUDA) working with FFMPEG
Ffmpeg use cuvid error
About to start a streaming server with RTSP and gstreamer on ubuntu 18.04 on the jetson nano
Hardware Encoding GUID (Jetson Nano)
Playing an RTMP stream using GStreamer
Jetson_multimedia_api samples
Run a py script when my jetson starts
Gstreamer rtspsrc and avenc_mpeg1video
USB camera not recognized by Jetson 2GB nano
NvENC bBlitmode set to True on Jetson Xavier NX
RTSP stream delay / Pipeline optimization
Jetson 4k Encoding -> Decoding Pipeline and latency
Why jetson gstreamer plugin nvvidconv not support BGR format output?
NI USB AD 6810 on Nvidia Jetson Plattform
Nnvidconv poor performance after upgrade from jp4.3 to jp4.4
Sending two simultaneous video stream over WiFi
Stream RTSP from h264 /dev/video src
Help with connecting Ip camera to jetson nano and to Azure IoT Edge
ERROR: cuda requested, but not all dependencies are satisfied: ffnvcodec
Inconsistent fps while recording with ffmpeg
Jetpack 4.5: USB Camera does not work in Cheese and opencv 4.1
Jetson Nano UDP Stream to OpenCV Latency and Frame Drop
How to view Jetson nano live video from Android OS device
Tx2 gst-launch usb v4lerror
Run python code at boot time
RuntimeError: Could not initialize camera. Please see error trace
Stream MKV file using H264 compression and RTP
After installing gnome-shell, the font size of my program appears small
YUV camera live streaming using gstreamer
Trying to stream usb cameras over rtsp on Jetson Nano
Creating RTSP Stream With v4l2src
Direct Stream on Twitch with GStreamer
Xavier AGX deepstream5.1 sample app : no camera available error
FFmpeg commands to be used for HW accelerated encoding on AGX
Issue in streaming rtsp video stream from jetson nano usb cam to local pc (streaming in VLC player) using deep stream
Gstreamer : pipeline have not created
Jetson Nano - CSI RPi.IMX219 to localhost stream
Jetson Tx2 NX: display=:0 not ready at lightdm start
About 12_camera_v4l2_cuda sample of mmapi
Opencv
GStreamer Manually Encode H264 and RTSP Stream with Pipeline
Connect Jetson Nano to a laptop camera via RTP
Connect Jetson Nano to a laptop camera via RTP
How to transcode H264 rtp packet to H265 rtp packet
Video capture on NVIDIA Jetson Nano
Webcam and Jetson nano
RTSP Camera feed for Jetbot not working
Low fps when doing object detection on jetson nano
RTSP-server and side-by-side (nvcompositor) nvarguscamerasrc camera
Video scaling with GStreamer element 'videoscale' and 'nvdrmvideosink set-mode=1'
RTSP Camera feed for Jetbot not working
Usb camera not working on jetson nano
Help on evaluation results on streaming latency on Jetson Nano
Jetson Nano Gstreamer get error image with different colors
I need some help with the USB Camera and Nvidia Jetson
Live Rtsp stream at server and save video at client side using Gstreamer
Automatic headless python Running
USB Camera live view?
Can't display anything using Opencv after stratup
Execute: 725 No cameras available
RTSP server usage
How to Auto-Load CAN Kernel Drivers on Jetson Orin Nano (JetPack 5.1)?
Select Unity or Gnome/Ubuntu desktop
Encoded RTSP streaming examples
How can I Flash to my Jetson NANO module with 16GB eMMc
How to auto run a python script after booting in Nano 2G?
Localizzazione oggetti con detectNet usando camera usb
Creating a CaptureSession object using IP Camera
GStreamer-CRITICAL gst_poll_read_control: assertion 'set != NULL' failed
RTP streaming not displaying on host
Headless Orin Nano won't export Argus CSI camera stream to remote screen
64bit raspi CSI/USBcam live stream Jetson-inference compatible
How to stream nvargus camera connected to nvidia orin nano from my laptop
RTP reciver from pcap UDP
RTSP streaming out from jetson Xavier
NvDec not working with FFmpeg 4.3 from C++ API
GStreamer Installation error
How to stream Pi camera video over rtsp on jetson nano using python
RTSP stream format not found
Cannot create RTSP stream on service boot
Stream video over hdmi to another device
PWM to control HAT-MDD10 with jetson nano
ELF File Runs Manually but Fails to Capture Video with GStreamer When Launched via Systemd at Boot
Change name of device tree
Using gst-launch-1.0 pipeline to Receiving (on target) : Network Source + video decode + video render
Getting Started Course - "Could not initialize camera" inside DLI container
GstRtspServer not found in anaconda environment
NvRmMemInit failed error when launching systemd service
Rtsp freeze
The demo code of 12_camera_v4l2_cuda is fatal error
Encoded RTSP streaming examples
Jetson nano green light not working
USB Camera Jupyter lab not detected
Real-Time Video Streaming & Remote Control for Person-Following Robot
Split the displayed screen abnormally when using nvv4l2camerasrc
Building Video AI Applications at the Edge on Jetson Nano
Why does my sensor driver have several more modes?
RTSP with Gstreamer to VLC
Jetson nano factory reset
Automatic Boot of Python GUI based application on Jetson Nano
RTSP Stream via ethernet Xavier
Streaming to gstreamer from home made app
Gstreamer appsrc and appsink for sending and receiving video stream data does not function
GStreamer won't free ports
Rtsp-server-record-watch
Gstreamer shmsink pipeline does not display out of the docker container
Boot from USB
Jetson Nano 2GB/4GB (issue: zed2i writing video frames dropped)
VLC is unable to open the MRL 'rtsp://192.168.4.152:8554/ds-test'
Help with low-bitrate video generation
R32.6 do not update
AttributedError: module 'pyrealsense2' has no attributed 'pipeline' fault on jetson nano with realsense
Using Jetson boards for "kiosk" mode applications for industrial equipment
Does anybody know which program this is (one jetson Nano)
Axis IP Camera stream to Jetson Nano
Encountering issues when attempting to stream RTMP with Jetson Nano using Gstreamer and OpenCV
USB 2.0 Tuning, Add HS_SLEW, HS_RXEQ, HS_TXEQ to the device tree
Error Connecting USB Camera on Jetson Nano: 'cannot get freq at ep 0x84
How do I set up a Basler ace Aca1440-73gc GIGE camera to use with Jetson Inference tutorials?
Video Frame Processing
Help In H.264 Streaming Between Devices
Gstreamer pipe with v4l2src and dmabuf
Run multimedia sample 12 with RGBA
How to create preview image for bayer cmos in AGX Orin?
Live streaming with jetson nano
RTSP Video Streaming with Raspberry Pi Noir v2 Cam Using Gstreamer
H264_nvenc error
Jetson Nano OBS Live Streaming
FFmpeg configuration
Streaming video+audio from capture device to rtsp server
Nvbuf_utils: Could not get EGL display connection (ZED2)
Have issue with the Gstream pipeline on jetson xavier (jetpack 5)
How keep MTU size change after reboot
USB_FS memory allocation
OpenCV application uneven frame times
Question about nvv4l2decoder element
Why is the first frame not recorded in gst_omx_enc_latency_*.log?
Accessing an image in shared CPU/GPU memory between C++ and Python
Nvv4l2decoder plugin is not shutting down cleanly and leaking memory
Gstreamer error; not able to run videocapture
External storage drive unmounts at system reboot
Streaming images to mobile client after the NN procedure
IMX390 cameras for RTSP with file store and show pictures
JupyterLab - Is way to use an RTSP camera?
VLC will not open H264 Gstreamer stream
NvCompositor SIGSEGV
Image exchange between multiple jetsons
Connection Refused when trying to open RTSP video stream from Jetson Orin in Android
ePaper Display using a NVIDIA Jetson Nano and SPI does not work
Jetson Nano OBS Live Streaming
RTSP VLC not working for Jetson Nano
Does Jetson utility support rtsp videoout?
USB Camera turns on and then crashes kernel and turns off, ml-l4t container issue
Install downgrade Jetpack
Jetdon nano dahua camera for object detection
Tutorial: A working example for rtsp output in c
Multiple Ethernet camera and jetson AGX Xavier
Opencv-rtsp stream
Camera ingest hardware architecture on Jetson Xavier NX
USB 3.1 for video data transfer
Zed2 camera, jetpack 4.5, zed sdk 3.4 with python on xavier agx
I have problem while running FLIR camera Lepton 3.5 on jetson nano
RTSP multi factory error
RTSP multi factory error
Jetson AGX Orin FAQ
Issue with RTSP streaming and decoding to v4l2loopback
How to increase the docker image (s) space on the nano
Camera is stuck intermittently and cannot figure out why
Can not stream USB camera connected to AGX Xavier using GStreamer RTSP server to remote machine
Gst-play-1.0, gst-launch-1.0 unable to display RTSP stream on Xavier AGX
Jetson nano B01: camera communication problem
Supporting two video modes
USB camera stops in the middle of runnning (Jetson Nano 4GB)
VLC fails with L4T 32.5
Jetson Xavier NX FAQ
RTSP Streaming raspiv2 camera distorted
Mouse pointer too small
Catastrophic HW failure after attempting to stream cameras via RTSP server
How to establish gstreamer based video streaming pipeline using RTP protocol
V4L2 reference driver source code