the menu is not needed, when you switch from 3D to 2D, only one image has to be seen, but it remains with the double image. and if you then switch back to the 3D view like in the movie, then it suddenly shows 4 images, so a switch works, it just doesn't switch it to 2D view
Posts by Voosjey
-
-
Meanwhile, omega is out, but the bug is still present in this version. Am I the only one who doesn't feel like converting all my 3D movies to 2D? It was so nice to say with Kodi, look in 2D and it was good.
-
I now have cat 8 cables, but the data speed is just 2 MB/s, the data goes through two switches, once a Netgear GS16E and then a DELL N1548
-
When I type Pastekodi, no URL comes out for me, for whatever reason. I have now seen according to ethtool I have a speed of 1000. but still it copies files with only 2 MB/s that's a way too little, isn't it?
-
how do I get the URL of pastekodi? but I type lspci and saw there that there is a 00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (17) I219-V (rev 11)
-
I Think my Intel network card only works with 100 Mbit, is there a setting that allows the card to be set to 1 GBit? My chipset is a B660
-
is there any new information about when the 2D view will be repaired?
-
Half SBS, if I say at GBM he should display it as 2D, he still shows the double images, if I then turn off the 2D mode, I suddenly have 4 pictures next to each other.
-
In the legacy version I can watch the 3d movies in 2d, but the HDR support is gone. I hope that at least the 2D support for 3D movies comes in GBM
-
Will there be 3D support? It would be a pity if the legacy expires, and then you can no longer watch all your 3D movies. At least it should be possible to integrate the two possibilities
1.3D in 2D
2. to be displayed like film
At the moment he gives me the possibilities. But they just don't work. I'll try the legacy now, but nevertheless these functions should also work with GBM
-
I have an i5 12400 with 16 GB RAM, there runs le11 nightly from 18.01.2023. Basically, almost everything works, except for the 3D mode, if I want to watch a 3D movie in 2D, then the double image remains. And I can't find the other modes anymore, like deinterlaced or magenta blue.
-
I managed to build the driver myself, but I have to use it as dm140 so that I can select it, how could I get the driver as amc570.so in the selection option?
-
-
And with the docker lcdproc my dm140.so running again? And how do I integrate this into libreelec?
-
Who can build a driver for the Activy Media Center 570 VFD Display for Kodi 19? With the instructions I have built a driver for kodi 18:
Codetar xvf lcdproc-0.5.2-henlar-v0.2.tar.gz cd lcdprov-0.5.2/ ./configure --enable-drivers=dm140 make sudo make install edit /usr/local/etc/LCDd.conf
in dm140.c we find following piece of code
But this device on the AMC 570 has
3. in led.c we can see:
Codeint Compare(const char *pszValue, short sValue) { int iValue; // convert the pszValue to a number sscanf( pszValue, "%4x", &iValue); return( iValue == sValue ); }
hier must be
Codeint Compare(const char *pszValue, short sValue) { int iValue; // convert the pszValue to a number sscanf( pszValue, "%4x", &iValue); return( (short) iValue == sValue ); }
now the method works fine for Kodi 18 (libreelec 9 Kernel 4.x). But the dm140.so no longer works unter Kodi 19(libreelec 10 Kernel 5.x).
Please Help