Jesper
Jesper
Just started to try and get this working. Can any of you try if this command just errors out or not? `docker run -it --rm --runtime=nvidia roflcoopter/jetson-nano-ffmpeg:4.4 ffmpeg --help`
> The command returns: > `Error: Can't initialize nvrm channel` > `Couldn't create ddkvic Session: Cannot allocate memory` > `nvbuf_utils: Could not create Default NvBufferSession` > > This version requires...
just pushed an image which contains the full install of Viseron: `roflcoopter/jetson-nano-viseron:dev` Anyone who can try it out? Note that there is currently a regression which causes Viseron to crash...
@eldadh Whats the output of this command? You gotta add your username, pass and ip address ``` docker run -it --rm --entrypoint "" roflcoopter/jetson-nano-viseron:dev ffprobe -print_format json -show_error -show_streams rtsp://username:password@ipaddress:8554/unicast...
@eldadh Thanks, and this command? ``` docker run -it --rm --entrypoint "" --privileged roflcoopter/jetson-nano-viseron:dev ffprobe -hide_banner -loglevel error -print_format json -show_error -show_streams rtsp://username:password@ipaddress:8554/unicast ```
> ` > > nvbuf_utils: Could not get EGL display connection > { > "streams": [ > { > "index": 0, > "codec_name": "h264", > "codec_long_name": "unknown", > "profile": "77",...
@eldadh Okay, can you exec into the container and run the commands one by one? 1) `docker run -it --rm --entrypoint "" --privileged roflcoopter/jetson-nano-viseron:dev /bin/bash` 2) `export DISPLAY=:0` 3) `ffprobe...
@eldadh Arggg, need to get rid of that `nvbuf_utils: Could not get EGL display connection` somehow...
Does this work? 1) `docker run -it --rm --entrypoint "" --privileged roflcoopter/jetson-nano-viseron:dev /bin/bash` 2) `unset DISPLAY` 3) `ffprobe -hide_banner -loglevel error -print_format json -show_error -show_streams rtsp://username:password@ipaddress:8554/unicast`
Yeah i guess ill have to trim it off manually. It should be easy enough since i am already parsing it in the code. Ill push a new version to...