Unfortunately I cannot get the camera on the Emblaser 2 working in Lightburn on Pop OS 22.04 LTS (which is based on Ubuntu 22.04 LTS). I’ve read every other thread I could find here including making sure the permissions for the device are 660, my user is in the right groups, the script that clones the “right” gstreamer-1.0 libraries from GitHub - dlarue/LightBurnLibs: gstreamer-1.0 libs are needed to get camera working, running Lightburn with sudo, feeding it through ffmpeg and the camera is detected but displays a black screen. I get the same behaviour trying to use my built in laptop webcam and I can confirm both cameras show in OBS Studio.
The error message is CameraBin error: "Internal data stream error.
The script I’m referencing is below;
#!/bin/bash
#
# if LightBurn update feature does not work, try installing libssl1.0-dev
#sudo apt install libssl1.0-dev
HERE=`pwd`
lbDIR=~/.local/share/LightBurn
# lbDIR=~/LightBurn
lbCMD=$lbDIR/LightBurn
lbLibsDIR=~/LightBurnLibs
gstLibs=gstreamer-1.0
if [ ! -d $lbLibsDIR/$gstLibs ] ; then
cd
git clone http://github.com/dlarue/LightBurnLibs
cd $HERE
fi
GST_PLUGIN_SYSTEM_PATH=${lbLibsDIR}/${gstLibs}
$lbCMD
Any help would be greatly appreciated.