Same issue for me ... after about 30-40 min the video lag ...
Posts by max63_
-
-
Hi,
I make reference to my last post on this thread.
Where I have to create a report ? -
Any informations about the vq cache issue ?
-
When I try to play some BR rip, I have some issue with video caching all the time.
The network bandwidth is enough but the vq % drop down to 0 all the time. ( vq is for Video Queue ? btw ) -
I just hope to find a way to install a chromium broswer on LibreElec ( except x86 ) and I found it's impossible...
-
-
Hi,
Sometime the audio of my S905 box hang on live channel.
On the kodi.log, I found this lines when the problem occurs :20:19:59 T:544848507104 WARNING: CDVDMessageQueue(audio)::Get - asked for new data packet, with nothing available
20:19:59 T:547489321184 ERROR: CAESinkALSA - snd_pcm_writei(-32) Broken pipe - trying to recover
20:20:00 T:544848507104 NOTICE: CDVDPlayerAudio::OutputPacket skipping a packets of duration 32Any advice to fix it ?
It's only happen with TV channel.
[hr]
Ok, I fixed it with this modification on the advancedsettings.xml :<advancedsettings>
<pvr>
<minvideocachelevel>60</minvideocachelevel>
<minaudiocachelevel>60</minaudiocachelevel>
</pvr>
</advancedsettings>By default it's :
<minvideocachelevel>5</minvideocachelevel>
<minaudiocachelevel>20</minaudiocachelevel>Increase this value stop my problem but increase the switch time channel ( which is already rly long about 9sec so 1-2 sec more ^^)
-
The problem is my HTR ( Yamaha HTR-4066 ) which is only HDMI 1.4
I test with a direct connexion to my TV and all refresh rate are available.
The strange behaviour is when I disconnect my HDMI without rebooting the box to reconnect it with the HTR, the display stay at 60Hz and it work like a charm.
So, technicaly it's possible...
Of course, if I reboot the box, I lost the refresh rate. -
I will check this, thanks for the response.
-
Hi,
I've a S905X box ( beelink mini mxiii II to be exact ) connected to a Panasonic TX-58dx700.
In kodi, the list of resolution / refresh rate is incomplete.
With 4k (3840x2160), I just have 24 - 25 - 30Hz ( no 50Hz or 60Hz ) in the list.How I could force other refresh rate for this resolution.
Btw for others resolutions , all refresh rates are available.
-
max63_ I haven't seen a S905X device with 1Gbit port... What's the speed if you use Android?Ok sorry, I've just receive the response from Beelink, and You were totally right, it's a 100Mbit port ....
Sorry for having disturb the thread.
Again, my bad. -
Sorry I don't use Android ( OpenElec from nand and it rocks !)
-
That picture is of a MiniMXIII not a MiniMXIII-II which is 10/100
I know that the picture is for MiniMXIII but from Beelink official website the MiniMXIII-II is not yet reference ...
But the documentation join to my box indicate clearly Gigabyte RJ 45 port. If you don't believe me, I could send you a picture of the documentation. -
My Beelink Mini MXIII II has a Gigabyte RJ45 port but it's recognize like a 100Mb :
Code
Display MoreLibreELEC:~ # ethtool -i eth0 driver: st_mac100 version: March_2013 firmware-version: expansion-rom-version: bus-info: supports-statistics: yes supports-test: no supports-eeprom-access: no supports-register-dump: yes supports-priv-flags: no LibreELEC:~ # ethtool eth0 Settings for eth0: Supported ports: [ TP AUI BNC MII FIBRE ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Speed: 100Mb/s Duplex: Full Port: MII PHYAD: 8 Transceiver: external Auto-negotiation: on Supports Wake-on: ug Wake-on: d Current message level: 0x0000003f (63) drv probe link timer ifdown ifup Link detected: yes
How I can enable the gigabyte network from this box ?
Btw, I can't enabled the wake on lan, is it normal ?
-
You patch things in LE by creating a patch in packages/linux/patches (look for an example). This patch will then be applied when the Linux kernel is compiled for you. Is this patch something that should be there for everyone, or just for you for some reason?This patch is for all people who want to make their ATI remote Wonder 3 ( or plus) working on linux.
I will look at patches folder fo example.
Thanks for the answer. -
Hi,
I need to patch the ati_remote module in order to use my ATI remote wonder plus ( or III as you wish ).
I made a patch :
Diff
Display Morediff U3 /tmp/test/ati_remote.c /tmp/test/ati_remote_plus.c --- /tmp/test/ati_remote.c Fri Dec 16 09:48:13 2016 +++ /tmp/test/ati_remote_plus.c Fri Dec 16 09:48:02 2016 @@ -240,8 +240,10 @@ #define SEND_FLAG_COMPLETE 2 /* Device initialization strings */ -static char init1[] = { 0x01, 0x00, 0x20, 0x14 }; -static char init2[] = { 0x01, 0x00, 0x20, 0x14, 0x20, 0x20, 0x20 }; +static char init1[] = { 0x80, 0x05, 0x1b, 0x15, 0x14, 0x20, 0x24, 0x15 }; +static char init2[] = { 0x83, 0x03 }; +static char init3[] = { 0x84, 0xd7, 0x020 }; + struct ati_remote { struct input_dev *idev; @@ -507,7 +509,7 @@ */ /* Deal with strange looking inputs */ - if ( (urb->actual_length != 4) || (data[0] != 0x14) || + if ( (urb->actual_length != 4) || (data[0] != 0x14 && data[0] != 0x15) || ((data[3] & 0x0f) != 0x00) ) { ati_remote_dump(&urb->dev->dev, data, urb->actual_length); return; @@ -827,8 +829,9 @@ ati_remote->out_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; /* send initialization strings */ - if ((ati_remote_sendpacket(ati_remote, 0x8004, init1)) || - (ati_remote_sendpacket(ati_remote, 0x8007, init2))) { + if ((ati_remote_sendpacket(ati_remote, 0x8008, init1)) || + (ati_remote_sendpacket(ati_remote, 0x8002, init2)) || + (ati_remote_sendpacket(ati_remote, 0x8003, init3))) { dev_err(&ati_remote->interface->dev, "Initializing ati_remote hardware failed.\n"); return -EIO;
I don't know how to use it with you cross-build system.
The ati_remote.c file is present in many place :Quote
build.LibreELEC-S905.aarch64-7.0.3.010/linux-fb23764/drivers/media/rc/ati_remote.c
build.LibreELEC-S905.aarch64-7.0.3.010/media_build-526f51c/linux/drivers/media/rc/ati_remote.c
build.LibreELEC-S905.aarch64-7.0.3.010/qca9377-aml-8b729b7/AIO/drivers/backports/drivers/media/rc/ati_remote.cSomeone can help me to patch this module ?
-
Ok thanks for your answer, I will try it as soon as I receive it
And great job KSZAQ !
-
Hi,
I just buy a Beelink Mini MXIII II box and I want to add a DVB-T tuner on it.
I thougt buy a sony playTV for the dual tuner capacity.According to thiw page : Sony PlayTV dual tuner DVB-T - LinuxTVWiki his support start from 2.6.28 linux kernel.
But it need a firmware to work : dvb-usb-dib0700-1.20.fw firmware file in /lib/firmwareMy question is : this firmware is present on your LibreElec build for S905X box ? Or I just need to put this file found on my Ubuntu linux distribution ?