Peak
- Xavier: CPU@90C [email protected] AUX@89C
- Xavier NX: [email protected] [email protected] AUX@90C
- TX2: [email protected] [email protected]
Peak
The parameter sensor-id=
describes the camera target. This id can be found by using ls /dev/
. If the camera correctly plugged in then there should be a devices called /dev/videoX
, where X is the camera id.
test@test-desktop:~$ gst-launch-1.0 nvarguscamerasrc sensor-id=0 ! 'video/x-raw(memory:NVMM), width=(int)1280, height=(int)720, format=(string)NV12, framerate=(fraction)30/1' ! nvvidconv ! queue ! xvimagesink
function getFilePaths( | |
folderPath, | |
customFilter = () => true, | |
maxDepth = -1, | |
depth = 0 | |
) { | |
if (depth == maxDepth) return []; | |
const entries = readdirSync(folderPath).map((entries) => | |
Path.join(folderPath, entries) |