Thanks
it worked...
but i checked with device info HW, the HW is really 3G, so it means i lose 1G when I'm using this device tree.
is there 3G that working fine?
BR,
Robbie
Thanks
it worked...
but i checked with device info HW, the HW is really 3G, so it means i lose 1G when I'm using this device tree.
is there 3G that working fine?
BR,
Robbie
Hi,
I have new Mini M8S Pro, that has 3G ram and 1G LAN.
I tried to use kszaq dtb.img gxm_q200_3g.dtb with 8.2.2.3 version, but the boot stuck.
the original idtb.img that coming with the installation is booting to libreelec, but as expected the device is not working properly.
I also tried different dtb files but without any success.
is someone has any experience with this device, and which dtb I can download ?
BR,
Robbie
Hi,
I have TVheadEnd V4.2 with DVB-T2 connected to, and it streams the channels to my Libreelec latest kszaq version,
only for 2 channels from 7, i have sound drop and from the logs is has problem to decode the AAC audio
23:58:46.401 T:3856659360 ERROR: ffmpeg[E5DFF3A0]: [aac] Input buffer exhausted before END element found
23:58:46.401 T:3856659360 ERROR: CVideoPlayerAudio::DecodeFrame - Decode Error. Skipping audio packet (-1094995529)
is there away to make FFMpeg to skip frame error check using libreelec?
since I didn't managed to find any similar case in the forums.
Regards,
Reuven
Hi,
I just created small and simple script to change Audio device from HDMI to BT in case the BT device is connected,and move back to HDMI when it disconnected.
I checked it only on one BT device that connected to the system, also it should be added to the startup and should run in the background:
#!/bin/bash
tvdevice="ALSA:hdmi:CARD=AMLM8AUDIO,DEV=0"
btdevice="PULSE:Default"
STAT="NA"
SetJsonTV()
{
curl -H "Content-type: application/json" -X POST -d '{"jsonrpc":"2.0","method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice","value":"ALSA:hdmi:CARD=AMLM8AUDIO,DEV=0"},"id":1}' http://127.0.0.1:80/jsonrpc > /dev/null 2>&1
curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"Audio Device Change","message":"HDMI"},"id":1}' http://127.0.0.1:80/jsonrpc > /dev/null 2>&1
}
SetJasonBT()
{
curl -H "Content-type: application/json" -X POST -d '{"jsonrpc":"2.0","method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice","value":"PULSE:Default"},"id":1}' http://127.0.0.1:80/jsonrpc > /dev/null 2>&1
curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"Audio Device Change","message":"BlueTooth"},"id":1}' http://127.0.0.1:80/jsonrpc > /dev/null 2>&1
}
CheckDevice()
{
#boundbt=`echo devices | bluetoothctl | grep Device | awk '{print $2}' | tail -1`
boundbt=`echo exit |bluetoothctl | grep Device | awk '{print $4}'`
devicename=`echo exit |bluetoothctl | grep Device | cut -d" " -f5-`
if [ ! -z $boundbt ] ; then
connectedbt=`hcitool con | tail -1 | awk '{print $3}'`
if [ "$connectedbt" = "$boundbt" ] ; then
[ $STAT != "BT" ] && SetJasonBT
STAT="BT"
else
[ $STAT != "HDMI" ] && SetJsonTV
STAT="HDMI"
fi
fi
}
while true ;
do
CheckDevice
sleep 10
done
Display More
Enjoy,
Robbie