Jpe230 / SonicPad-Debian

Port of Debian for the SonicPad (Allwinner R818)
GNU General Public License v3.0
121 stars 18 forks source link

creality nebula camera #47

Open bhast2 opened 7 months ago

bhast2 commented 7 months ago

Got everything installed and working but I can't get my nebula camera to work. I have tried everything I can think of to make it work. It shows that it is connected, and it sees the camera but can't get video to show. I plug in a different camera, and it works perfect. Any help on this would be great. Thank you

Brakisshuro commented 7 months ago

I have this issue as well

sahuddy commented 7 months ago

Try changing the Camera Url Stream to: http:// your IP address /webcam/?action=stream** and/or the Stream type: to MJPEG Stream

Brakisshuro commented 7 months ago

Try changing the Camera Url Stream to: http:///webcam/?action=stream and/or the Stream type: to MJPEG Stream

I have tried all the combos I can, when I try to access via the pad, is says "failed to open http://120.0.0.1/webcam/?action=stream"

on fluid, it is just a sliver of the screen.

sahuddy commented 7 months ago

You are trying to use the system loopback address, which is actually 127.0.0.1, but I meant use the IP address that the pad is using.

Brakisshuro commented 7 months ago

You are trying to use the system loopback address, which is actually 127.0.0.1, but I meant use the IP address that the pad is using.

Nginx bad gateway 502

sahuddy commented 7 months ago

What does the [timelapse] stanza look like in moonraker.conf? Also, are you using crowsnest?

Brakisshuro commented 7 months ago

What does the [timelapse] stanza look like in moonraker.conf? Also, are you using crowsnest?

[timelapse] output_path: /home/sonic/printer_data/timelapse/ frame_path: /home/sonic/printer_data/frames/ ffmpeg_binary_path: /opt/bin/ffmpeg snapshoturl: http://localhost:8080/?action=snapshot

Yes crowsnest is installed.

sahuddy commented 7 months ago

Thanks. That all looks right, so I'm out of ideas. Sorry.

Brakisshuro commented 7 months ago

Thanks. That all looks right, so I'm out of ideas. Sorry.

That's ok, appreciate your help

DDen87 commented 7 months ago

@Jpe230 you know of a fix for the Creality Nebula Camera perhaps? Is there something we can do about this? Thanks in advance for your help!

bhast2 commented 7 months ago

I hope a fix is found soon. What I don't understand is the camera works great on a raspberry pi with the mainsail os on raspberry pi imager.

maybe there is something in the source code that can help us if anyone wants to take a look. https://github.com/mainsail-crew/MainsailOS

Jpe230 commented 7 months ago

Is the Nebula cam just a run of the mill webcam? If so I can give it a try to see if I can reproduce with a Logitech cam, otherwise I'll have to save up some money to buy one :p

Brakisshuro commented 7 months ago

@Jpe230 I have some drivers I found if you want to take a look at them. It is creality 's AI camera. It works on stock Sonic pad, and it works on pi installations of Klipper

Brakisshuro commented 7 months ago

@Jpe230 here is drivers I got from another member who worked on creality up their foodchain. https://drive.google.com/file/d/1zQ3fj2bvAvJTA9mYQD4fU4kFEcTF7Mad/view?usp=sharing

Jpe230 commented 6 months ago

I managed to use the Nebula Camera, all I did was to comment this line:

https://github.com/mainsail-crew/crowsnest/blob/e96cd46ffb4a42ae1fbf23118caa68dd0dac0597/libs/ustreamer.sh#L59

The file is located at /home/sonic/crowsnest/libs/ustreamer.sh

image

FWIW my crownest conf is the following:

[crowsnest]
log_path: /home/sonic/printer_data/logs/crowsnest.log
log_level: debug                      # Valid Options are quiet/verbose/debug
delete_log: false                       # Deletes log on every restart, if set to true
no_proxy: false

[cam 1]
mode: ustreamer                         # ustreamer - Provides mjpg and snapshots. (All devices)
port: 8080                              # HTTP/MJPG Stream/Snapshot Port
device: /dev/video0                     # See Log for available ...
resolution: 1280x720                    # widthxheight format
max_fps: 30                             # If Hardware Supports this it will be forced, otherwise ignored/coerced.
#custom_flags:                          # You can run the Stream Services with custom flags.
#v4l2ctl:                               # Add v4l2-ctl parameters to setup your camera, see Log what your cam is capable of.
DDen87 commented 6 months ago

@Jpe230 as I'm quite new to software and Klipper. How do I get to that file? Do I use terminal (on my Mac)? Or can I reach it from the mainsail frontend of the sonic pad? I can only see these files in mainsail: image

bhast2 commented 6 months ago

Here is my ustreamer.sh best way to edit this is use a program like winscp or something like it. Below is the code that I am using for ustreamer.sh. 

#!/bin/bash

#### ustreamer library

#### crowsnest - A webcam Service for multiple Cams and Stream Services.
####
#### Written by Stephan Wendel aka KwadFan <me@stephanwe.de>
#### Copyright 2021
#### https://github.com/mainsail-crew/crowsnest
####
#### This File is distributed under GPLv3
####

# shellcheck enable=require-variable-braces

# Exit upon Errors
set -Ee

run_mjpg() {
    local cams
    v4l2_control
    cams="${1}"
    for instance in ${cams} ; do
        run_ustreamer "${instance}" &
    done
    blockyfix
    brokenfocus "${cams}"
    return
}

run_ustreamer() {
    local cam_sec ust_bin dev pt res fps cstm start_param
    cam_sec="${1}"
    # shellcheck disable=SC2153
    ust_bin="${UST_BIN}"
    dev="$(get_param "cam ${cam_sec}" device)"
    pt="$(get_param "cam ${cam_sec}" port)"
    res="$(get_param "cam ${cam_sec}" resolution)"
    fps="$(get_param "cam ${cam_sec}" max_fps)"
    cstm="$(get_param "cam ${cam_sec}" custom_flags 2> /dev/null)"
    noprx="$(get_param "crowsnest" no_proxy 2> /dev/null)"
    # construct start parameter
    if [[ -n "${noprx}" ]] && [[ "${noprx}" = "true" ]]; then
        start_param=( --host 0.0.0.0 -p "${pt}" )
        log_msg "INFO: Set to 'no_proxy' mode! Using 0.0.0.0 !"
    else
        start_param=( --host 127.0.0.1 -p "${pt}" )
    fi

    #Raspicam Workaround
    if [[ "${dev}" = "$(dev_is_legacy)" ]]; then
        start_param+=( -m MJPEG --device-timeout=5 --buffers=3 )
    else
        # Add device
        start_param+=( -d "${dev}" --device-timeout=2 )

        # Use MJPEG Hardware encoder if possible
       # if [ "$(detect_mjpeg "${cam_sec}")" = "1" ]; then
           # start_param+=( -m MJPEG --encoder=HW )
       # fi
    fi

    # set max framerate
    start_param+=( -r "${res}" -f "${fps}" )

    # webroot & allow crossdomain requests
    start_param+=( --allow-origin=\* --static "${BASE_CN_PATH}/ustreamer-www" )
    # Custom Flag Handling (append to defaults)
    if [[ -n "${cstm}" ]]; then
        start_param+=( "${cstm}" )
    fi
    # Log start_param
    log_msg "Starting ustreamer with Device ${dev} ..."
    echo "Parameters: ${start_param[*]}" | \
    log_output "ustreamer [cam ${cam_sec}]"
    # Start ustreamer
    echo "${start_param[*]}" | xargs "${ust_bin}" 2>&1 | \
    log_output "ustreamer [cam ${cam_sec}]"
    # Should not be seen else failed.
    log_msg "ERROR: Start of ustreamer [cam ${cam_sec}] failed!"
}
DDen87 commented 6 months ago

@bhast2 Thanks! I'm in. I have copied in your complete file. But still no image. I copied in @Jpe230 his crowsnest.conf.

Can you maybe share your crowsnest.conf? Can you also share you settings of the webcam and on what usb port you have it connected?

Thanks in advance (And of course so far, couldn't have come so far with this without you guys!)!

P.s. I used Cyberduck (if anybody with a Mac is interested.... )

Jpe230 commented 6 months ago

@bhast2 Thanks! I'm in. I have copied in your complete file. But still no image. I copied in @Jpe230 his crowsnest.conf.

Can you maybe share your crowsnest.conf? Can you also share you settings of the webcam and on what usb port you have it connected?

Thanks in advance (And of course so far, couldn't have come so far with this without you guys!)!

P.s. I used Cyberduck (if anybody with a Mac is interested.... )

Have you replaced the file under the path I previously mentioned? If so try rebooting the pad or restart the crownest service.

I don't think that the USB port matters, but I'm connecting the cam to the bottom port at the side of the pad.

If you still have problems please share your crownest logs :)

DDen87 commented 6 months ago

@Jpe230 as I wasn't sure I installed everything correctly I reinstalled crows nest, and I saw this come by:

Checking if device is a Raspberry Pi ...

Checking if device is a Raspberry Pi ... [FAILED]
This device is not a Raspberry Pi therefore camera-streeamer cannot be installed ...

But I'm going the retry and uncomment line 57 in de streamer.sh file in the libs folder. And copy in your crows nest config. See what happens.

Jpe230 commented 6 months ago

Yup that's expected, the pi uses camera-streamer for its backend service, and apparently it is only compatible with Pis, that why we are falling back to ustreamer ;)

DDen87 commented 6 months ago

Hahahaha I just wanted to double check! As I'm not that good with software...

DDen87 commented 6 months ago

@Jpe230 unfortunately did not help. See attached the crows nest log file. Thanks again for taking a look! crowsnest.log

DDen87 commented 6 months ago

IMG_8651

bhast2 commented 6 months ago

@bhast2 Thanks! I'm in. I have copied in your complete file. But still no image. I copied in @Jpe230 his crowsnest.conf.

Can you maybe share your crowsnest.conf? Can you also share you settings of the webcam and on what usb port you have it connected?

Thanks in advance (And of course so far, couldn't have come so far with this without you guys!)!

P.s. I used Cyberduck (if anybody with a Mac is interested.... )

I didn't change anything in my crowsnest.conf I just commented out those lines in the ustreamer file and it started working

bhast2 commented 6 months ago

Make sure you have MJPEG STREAM selected. and use the following for your url info

Camera URL Stream /webcam/?action=stream Camera URL SnapShot /webcam/?action=snapshot

Brakisshuro commented 6 months ago

Boom, I got it working!, Thank you gentlemen!

DDen87 commented 6 months ago

@bhast2 Ok, I reinstalled crowsnest again(this time via the repo instead of via kiauh). Changed only the ustreamer.sh file. Added a webcam (the correct URL were already filled in by default). But still nothing... well something... a white screen... image

bhast2 commented 6 months ago

@bhast2 Ok, I reinstalled crowsnest again(this time via the repo instead of via kiauh). Changed only the ustreamer.sh file. Added a webcam (the correct URL were already filled in by default). But still nothing... well something... a white screen... image

I installed it thru kiauh. I have the camera plugged into the usb port

bhast2 commented 6 months ago

@bhast2 Ok, I reinstalled crowsnest again(this time via the repo instead of via kiauh). Changed only the ustreamer.sh file. Added a webcam (the correct URL were already filled in by default). But still nothing... well something... a white screen... !

Make sure you change the config file also

[crowsnest]
log_path: /home/sonic/printer_data/logs/crowsnest.log
log_level: debug                      # Valid Options are quiet/verbose/debug
delete_log: false                       # Deletes log on every restart, if set to true
no_proxy: false

[cam 1]
mode: ustreamer                         # ustreamer - Provides mjpg and snapshots. (All devices)
port: 8080                              # HTTP/MJPG Stream/Snapshot Port
device: /dev/video0                     # See Log for available ...
resolution: 1280x720                    # widthxheight format
max_fps: 30                             # If Hardware Supports this it will be forced, otherwise ignored/coerced.
#custom_flags:                          # You can run the Stream Services with custom flags.
#v4l2ctl:                               # Add v4l2-ctl parameters to setup your camera, see Log what your cam is capable of.
Brakisshuro commented 6 months ago

wont lie, got it working but it has a 6 second delay and fps is BAD so just bought a logitech c270

bhast2 commented 6 months ago

wont lie, got it working but it has a 6 second delay and fps is BAD so just bought a logitech c270

I don't have lag. here is a video of my stream video

DDen87 commented 6 months ago

@Brakisshuro how you like that cams quality? @bhast2 I have tried everything... have no idea what's wrong with... probably will have to reinstall the complete Sonic pad. I tried the nebula also on my Mac and it works correctly.

bhast2 commented 6 months ago

@Brakisshuro how you like that cams quality? @bhast2 I have tried everything... have no idea what's wrong with... probably will have to reinstall the complete Sonic pad. I tried the nebula also on my Mac and it works correctly.

So for me to get it to work I downloaded the newest version of sonic pad Debian.

DDen87 commented 6 months ago

Got a link?

Jpe230 commented 6 months ago

wont lie, got it working but it has a 6 second delay and fps is BAD so just bought a logitech c270

Maybe poor connection to your router? Mine can achieve 15-20fps stable, with max 1s delay, tbh is quite usable

Brakisshuro commented 6 months ago

wont lie, got it working but it has a 6 second delay and fps is BAD so just bought a logitech c270

Maybe poor connection to your router? Mine can achieve 15-20fps stable, with max 1s delay, tbh is quite usable

Interesting, mine is hardwired to one of my switches. I tested on Wi-Fi as well and still was getting horrible lag.

pechex commented 3 months ago

Hi all,

I had this same problem and none of the things posted here helped. My solution was to change /dev/video0 to /dev/v4l/by-id/usb-UnionImage_Co._Ltd_CCX2F3298_1234567890-video-index0 in crownest.cfg .

I got it from crownest.log or you can see it also on (check screenshot)

[crowsnest]
log_path: /home/sonic/printer_data/logs/crowsnest.log
log_level: debug                      # Valid Options are quiet/verbose/debug
delete_log: true                       # Deletes log on every restart, if set to true
no_proxy: false

[cam 1]
mode: ustreamer                         # ustreamer - Provides mjpg and snapshots. (All devices)
                                        # camera-streamer - Provides webrtc, mjpg and snapshots. (rpi + Raspi OS based only)
enable_rtsp: false                      # If camera-streamer is used, this enables also usage of an rtsp server
rtsp_port: 8554                         # Set different ports for each device!
port: 8080                              # HTTP/MJPG Stream/Snapshot Port
#device: /dev/video0                     # See Log for available ...
device: /dev/v4l/by-id/usb-UnionImage_Co._Ltd_CCX2F3298_1234567890-video-index0                     # See Log for available ...
resolution: 1280x720                    # widthxheight format
max_fps: 30                             # If Hardware Supports this it will be forced, otherwise ignored/coerced.
#custom_flags:                          # You can run the Stream Services with custom flags.
#v4l2ctl:                               # Add v4l2-ctl parameters to setup your camera, see Log what your cam is capable of.

image

EDIT: I spoke too soon. It ¨works¨ sometimes, but it only shows one or two frames. In the crownsnest.log I see this all the time

[06/18/24 21:12:39] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1349.535          ] -- CAP: Requested 5 device buffers, got 5
[06/18/24 21:12:39] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1349.539          ] -- CAP: Capturing started
[06/18/24 21:12:39] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1349.539          ] -- Using JPEG quality: 80%
[06/18/24 21:12:39] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1349.539          ] -- Creating pool JPEG with 4 workers ...
[06/18/24 21:12:39] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1349.540          ] -- Capturing ...
[06/18/24 21:12:41] crowsnest:  ... Done!
[06/18/24 21:12:47] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1357.297          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41536, id=a83ecb2f40e37f69
[06/18/24 21:12:58] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1368.850          ] -- HTTP: NEW client (now=2): [127.0.0.1]:41540, id=f2c6d131586859c6
[06/18/24 21:12:58] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1368.890          ] -- HTTP: DEL client (now=1): [127.0.0.1]:41536, id=a83ecb2f40e37f69, Connection reset by peer (writing,error)
[06/18/24 21:13:01] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1371.668          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41540, id=f2c6d131586859c6, Connection reset by peer (writing,error)
[06/18/24 21:13:16] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1387.133          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41542, id=5ef889683bf10c65
[06/18/24 21:13:47] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1417.452          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41542, id=5ef889683bf10c65, Connection reset by peer (writing,error)
[06/18/24 21:13:47] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1417.585          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41544, id=ab488c2c2ef0044
[06/18/24 21:13:49] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1419.771          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41544, id=ab488c2c2ef0044, Connection reset by peer (writing,error)
[06/18/24 21:14:21] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1451.365          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41546, id=8e99ba54484234a5
[06/18/24 21:14:21] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1451.556          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41546, id=8e99ba54484234a5, Connection reset by peer (reading,error)
[06/18/24 21:14:21] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1451.560          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41548, id=429108c8a4c02162
[06/18/24 21:14:24] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1455.116          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41548, id=429108c8a4c02162, Connection reset by peer (writing,error)
[06/18/24 21:14:35] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1465.587          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41554, id=1bc6cb6420e423e0
[06/18/24 21:14:38] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1468.461          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41554, id=1bc6cb6420e423e0, Connection reset by peer (writing,error)
[06/18/24 21:14:42] crowsnest: WATCHDOG: Lost Device: ''
[06/18/24 21:14:55] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1485.660          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41556, id=f4ee5444be5dd8c9
[06/18/24 21:14:55] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1486.030          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41556, id=f4ee5444be5dd8c9, Connection reset by peer (reading,error)
[06/18/24 21:14:58] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1489.043          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41558, id=fe16e4d06fdfae56
[06/18/24 21:14:59] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1490.115          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41558, id=fe16e4d06fdfae56, Connection reset by peer (reading,error)
[06/18/24 21:15:02] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1493.105          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41560, id=b48ea4506b7de481
[06/18/24 21:15:03] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1493.278          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41560, id=b48ea4506b7de481, Connection reset by peer (reading,error)
[06/18/24 21:15:03] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1493.282          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41562, id=af36f6a2a9519cf6
[06/18/24 21:15:07] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1497.249          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41562, id=af36f6a2a9519cf6, Connection reset by peer (writing,error)
[06/18/24 21:15:20] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1511.153          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41564, id=f144b3057acdd387
[06/18/24 21:15:35] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1525.914          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41564, id=f144b3057acdd387, Connection reset by peer (writing,error)
[06/18/24 21:15:36] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1526.929          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41566, id=7b786040e1dc1bfd
[06/18/24 21:15:38] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1528.999          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41566, id=7b786040e1dc1bfd, Connection reset by peer (writing,error)
[06/18/24 21:15:47] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1537.422          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41568, id=bc333a986485b434
[06/18/24 21:15:49] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1539.218          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41568, id=bc333a986485b434, Connection reset by peer (writing,error)
[06/18/24 21:15:50] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1540.957          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41570, id=560966dd17592a85
[06/18/24 21:15:50] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1541.068          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41570, id=560966dd17592a85, Connection reset by peer (reading,error)
[06/18/24 21:17:19] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1629.242          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41620, id=6c03b5592b100bcd
[06/18/24 21:17:19] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1629.856          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41620, id=6c03b5592b100bcd, Connection reset by peer (reading,error)
[06/18/24 21:17:26] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1636.877          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41622, id=609353987a2d4ae1
[06/18/24 21:17:32] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1642.493          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41622, id=609353987a2d4ae1, Connection reset by peer (writing,error)
[06/18/24 21:17:40] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1651.012          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41624, id=ef1da4e2e9991dc4
[06/18/24 21:17:50] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1660.432          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41624, id=ef1da4e2e9991dc4, Connection reset by peer (writing,error)
[06/18/24 21:20:26] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1816.741          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41626, id=ef67480087b43801
[06/18/24 21:20:37] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1827.960          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41626, id=ef67480087b43801, Connection reset by peer (writing,error)
[06/18/24 21:20:37] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1827.961          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41628, id=ef36432f78d9fa91
[06/18/24 21:20:40] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1830.612          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41628, id=ef36432f78d9fa91, Connection reset by peer (writing,error)
[06/18/24 21:20:42] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1833.129          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41630, id=ca9ce19f91a18005
[06/18/24 21:20:43] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1834.067          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41630, id=ca9ce19f91a18005, Connection reset by peer (reading,error)
[06/18/24 21:21:00] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1850.538          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41632, id=d3649b2b6cc40be8
[06/18/24 21:21:02] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1852.395          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41632, id=d3649b2b6cc40be8, Connection reset by peer (writing,error)
[06/18/24 21:21:02] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1852.772          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41634, id=777d1dd3fe856937
[06/18/24 21:21:10] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1860.806          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41634, id=777d1dd3fe856937, Connection reset by peer (writing,error)
[06/18/24 21:21:20] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1870.445          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41642, id=d8cea3fb7c91e628
[06/18/24 21:21:51] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1901.689          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41642, id=d8cea3fb7c91e628, Connection reset by peer (writing,error)
[06/18/24 21:21:52] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1902.910          ] -- HTTP: NEW client (now=1): [127.0.0.1]:41644, id=a3c6d421da24001b
[06/18/24 21:21:57] crowsnest: DEBUG: ustreamer [cam 1]: -- INFO  [1907.975          ] -- HTTP: DEL client (now=0): [127.0.0.1]:41644, id=a3c6d421da24001b, Connection reset by peer (writing,error)
8Chachie6 commented 2 weeks ago

Hello everyone I’m having this issue here now my self I was reading through the thread and got a bit confused could some one here help me out ?

8Chachie6 commented 2 weeks ago

image

this is what I get ??

8Chachie6 commented 2 weeks ago

@Jpe230 here is drivers I got from another member who worked on creality up their foodchain. https://drive.google.com/file/d/1zQ3fj2bvAvJTA9mYQD4fU4kFEcTF7Mad/view?usp=sharing

This link doesn’t work anymore?

pechex commented 2 weeks ago

this-> https://github.com/Jpe230/SonicPad-Debian/issues/47#issuecomment-1986514285

El mar, 17 sept 2024 a la(s) 1:20 p.m., 8Chachie6 @.***) escribió:

@Jpe230 https://github.com/Jpe230 here is drivers I got from another member who worked on creality up their foodchain. https://drive.google.com/file/d/1zQ3fj2bvAvJTA9mYQD4fU4kFEcTF7Mad/view?usp=sharing

This link doesn’t work anymore?

— Reply to this email directly, view it on GitHub https://github.com/Jpe230/SonicPad-Debian/issues/47#issuecomment-2356378755, or unsubscribe https://github.com/notifications/unsubscribe-auth/AANOCX5XXRA7U4GAMVDE5Q3ZXBJDRAVCNFSM6AAAAABDY5M4CWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNJWGM3TQNZVGU . You are receiving this because you commented.Message ID: @.***>

8Chachie6 commented 1 day ago

@Jpe230 here is drivers I got from another member who worked on creality up their foodchain. https://drive.google.com/file/d/1zQ3fj2bvAvJTA9mYQD4fU4kFEcTF7Mad/view?usp=sharing

this link dosent work... do you still have the drivers ?

8Chachie6 commented 17 hours ago

@Jpe230 I have some drivers I found if you want to take a look at them. It is creality 's AI camera. It works on stock Sonic pad, and it works on pi installations of Klipper

i keep seeing about thees drivers but nun the links to them work??