USB stick sometimes needs to be unplugged and plugged to have a full initialization. So the trick here is that you power off your STB.
- Forums
- → Viewing Profile: Reputation: Pr2
ATTENTION !!!
Due to a database corruption issue, we were forced to restore last-nights backup. This means all posts of Saterday Febuary 17th have been lost.Community Stats
-
Group
Senior Member
- OthersPLi® Contributor
- Active Posts 6,259 ( per day)
- Profile Views 18,506
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Male
Contact Information
#1686903 Sony PlayTV USB DVB-T module on OpenPli 9
Posted by Pr2
on 28 April 2025 - 09:16
#1677472 blind scan no files
Posted by Pr2
on 9 March 2025 - 16:24
zgemma h11 s openatv 7.4 var
You are using OpenATV this is OpenPLi forum go to the forum of the image that you are using and stop spamming here please.
#1663227 Translations for Enigma 2: Please post them here!
Posted by Pr2
on 30 December 2024 - 16:03
No there is no reference to "clear" in the plugin itself. So I guess that it grab this value from the internet and then it is the default translation that is used.
#1631445 France
Posted by Pr2
on 12 July 2024 - 14:10
Hi,
There is no ambiguity in the rytec.channels.xml:
<!-- 19.2E --><channel id="CanalPlusBoxOffice.fr">1:0:19:200D:430:1:C00000:0:0:0:</channel><!-- CANAL+BOX OFFICE -->
So your problem can come from your IPTV provider that include a conflicting EPG source with wrong service reference. You need to investigate locally on your STB, this is not a global problem according to me.
Pr2
#1623538 NEW plugin: InfoBarWeather
Posted by Pr2
on 21 May 2024 - 17:07
It is not the mo file that is needed but the po file.
The plugin git is here:
https://github.com/s...-infobarweather
But unfortunately, scriptmelvin has passed away.
I saw that there is already a PR that nobody is able to approuve to add tr.po
So I don't know if OpenPLi fork it to keep a git where we can submit PR to.
#1623532 Translations for Enigma 2: Please post them here!
Posted by Pr2
on 21 May 2024 - 16:55
#1617329 CI Module (Kabelio) and Openpli 9
Posted by Pr2
on 11 April 2024 - 12:16
You need a plugin to have CI+ on OpenPLi whatever the STB brand. On VU+ you need the CI+ certificate file while on some other brand you need a small application running.
You probably think that you don't need a plugin because autorestore does the job for you and restore the certificate.
Pulse4K is also working fine with the CI+ but having CI+ working is a savant combination of timing, different plugin: slowzap for CI and CI assignement, and sometimes some specific setup in oscam dvbapi file.
You can have different issue with different brand and a setup working fine with brand A will not work as-is out-of-the-box on brand B, every settings needs to be tuned.
You can compare CI+ setup with HDMI-CEC setup.
My father is TV addict and he is using both the CI+ and OScam on a Pulse 4K and trust me at the very first problem he had he called me. So if CI+ had problems with the Pulse4K I would be aware.
But of course it is based on my own experience with the CI+ CAM that I can test on my setup.
For you black screen problem install slow zap for CI and enable the Restart service after play (find the ones that needs it) and your black screen problem will be solved.
#1612881 i have a question
Posted by Pr2
on 22 March 2024 - 13:10
Broadcom refuses now to provide SoC for OpenSource STB so no more "Enigma" based STB with BroadCom will be available. They reserved there SoC for proprietary (provider) boxes.
Only HiSilicon is currently providing SoC for "Enigma" STB.
#1563818 Hdmi Cec switch to standby after source change
Posted by Pr2
on 31 August 2023 - 13:18
Finding the right HDMI-CEC settings is sometimes tricky.
1. Forward volume keys: this option is working if you have an amplifier between the STB and the TV, I can increase and decrease the volume with this option. But very few TV support it directly unfortunately.
#1548023 Translations for Enigma 2: Please post them here!
Posted by Pr2
on 20 June 2023 - 15:52
Thanks @Pike_Bishop,
QuadPip: https://github.com/O...quadpip/pull/14
FileCommander is also done, I have write access to I don't need to create a PR.
#1545407 Webif problem with Latest OScam 11719
Posted by Pr2
on 10 June 2023 - 15:02
Create a file /etc/init.d/softcam.OScamOpenPLi
With the following content:
#!/bin/sh case "$1" in start) ulimit -s 1024 /usr/bin/oscam --wait 60 --config-dir /etc/tuxbox/config/oscam --daemon --pidfile /tmp/oscam.pid --restart 2 --utf8 ;; stop) kill `cat /tmp/oscam.pid` 2> /dev/null # in case a normal stop failed killall /usr/bin/oscam ;; restart|reload) $0 stop $0 start ;; version) echo "gitAUTOINC+c41959f135" ;; info) echo "oscam gitAUTOINC+c41959f135" ;; *) echo "Usage: $0 start|stop|restart" exit 1 ;; esac exit 0Then:
cd /etc/init.d/ ./softcam stop rm softcam ln -s softcam.OScamOpenPLi softcam ./softcam startYou can also create symlink to the OScam version you want to test.
cd /usr/bin/ ls -Falh oscam Check if it is already a symlink or not. If it is a symlink then: rm oscam ln -s oscamXXXXX oscam where oscamXXXX is the name of the oscam binary that you want to test. if it's not a symlink then keep a copy of your current OScam: mv oscam oscam_old Then create the symlink: ln -s oscamXXXXX oscam Restart you softcam: /etc/init.d/softcam restart
#1545303 Webif problem with Latest OScam 11719
Posted by Pr2
on 10 June 2023 - 10:18
In OpenPLi the default path for the OScam configuration file is: /etc/tuxbox/config/oscam/ by default oscam is not looking in this folder since it tries to use /usr/local/etc (this can be overwritten at compilation time).
So you need to say oscam where to find the configuration file:
So you need to start your OScam with:
--config-dir /etc/tuxbox/config/oscam
as parameter.
If you use the oscam from the feed everything is fine, if you manually try to install another oscam version then you need to learn how to do this properly.
The startup script of OScam in OpenPLi is: /etc/init.d/softcam which is a symlink normally pointing to softcam -> softcam.oscam
oscam binary is in: /usr/bin/oscam if you manually change it don't forget to chmod 755 oscam
There is no default port assigned for the OScam WebIf so if you start oscam so there is no WebIF active.
So specifying a configuration path with a valid oscam.conf containing: httpport = XXXX where XXXX is the port number that you want is mandatory to have OScam webif active.
https://wiki.streamb...scam.conf#WebIf
#1543415 help with 8.3 settings restore please
Posted by Pr2
on 29 May 2023 - 16:12
Parameters can be different between image so there is "protection" mechanism to avoid to restore setting from one image to another one.
So you have to find where OpenSPA create the backup, unpack it manually and copy manually the files, I guess that you mainly want to retrieve your userbouquet, lamedb et perhaps softcam setup those should be bring problems.
But you should probably avoid to restore the /etc/enigma2/settings file.
#1534500 Show time on display octagon sf 8008
Posted by Pr2
on 22 April 2023 - 10:37
Then use command line mentioned by s3no
#1533448 Show time on display octagon sf 8008
Posted by Pr2
on 16 April 2023 - 16:51
install this plugin:
enigma2-plugin-systemplugins-vfdcontrol
And you can set it up to display the clock instead of the channel number.
- Forums
- → Viewing Profile: Reputation: Pr2