And what exactly would a marvel skin look like?
Maybe like this marvel war of wakanda UI
Posts by KiddaC
-
-
master G
educate me, why have you suggested keepalive = 1 rather than ccckeepalive = 1 -
if you want the full wiki :hypnotised:
https://wiki.streamboard.tv/wiki/OSCam/en/Config/oscam.servercccversion=2.3.2
and if using more than one 3rd party source,
try to use ones that all have the same cccam version.
I am actually writing another free cline plugin at the moment.Different servers protocol cccam versions can cause pixelation/glitching for me every 5 or 6 seconds.
Same cccam versions, then all smooth.
I am no expert at cams, but this is my oscam.server entries that are smooth for me[reader]
label = domain.xyz
protocol = cccam
device = domain.xyz, port
user = user
password = password
fallback = 1
group = 1
cccversion = 2.3.2
ccckeepalive = 1
disablecrccws_only_for = 0500:030B00,050F00;098C:000000;09C4:000000
audisabled = 1
and my oscan.conf[cccam]
port = 12000
version = 2.3.2
[dvbapi]
enabled = 1
au = 1
user = dvbapi
[webif]
httpport = 83
httphelplang = en
httprefresh = 10
httppollrefresh = 10
httpallowed = 0.0.0.0-255.255.255.255
httphideidleclients = 0
[streamrelay]
stream_relay_enabled = 0
-
I haven't got this plugin on my box at the moment
All data is saved in/etc/enigma2/jediepgxtream/epg.json
er... can't even remember what is written in there. But if there is urls, you might be able to just do a search and replace.
Would anything need changing in the epg importer files.... er don't know
Those files live in
/etc/epgimport/jex....
In fact I don't think that will work. If you recreate your bouquets (which you will probably have to if new domain), it will possible create new custom sids unique values.So all the references might be wrong.
-
All my plugins and skins should still continue to work on openvix 6+. They were converted to python 3 at the start of the testing phase.
I am fortunate that I have an army of testers that report bugs to me.
EPG and Movie planner mods do not work anymore on vix though, everything else should be fine.
-
Display More
Hi,I am using Jedi boquet maker in Uclan Ystym reciever.
It works great,I can se epg for the most of boquets. Fex: Sweden,Norge epg works fine ,but not Danish? And those downloads are from Iptv server.
Other thing, When I download from Jedi epg maker ,it download but not show epg. I am only conected to server.
Before I was conected trough satelite dish and when I download Iptv epg trough Jedi epg it was working ,but now without dish conected,it is not posible to show epg.
I hope you understand my question:)
Thanks
The epg download is a data file that is downloaded via the internet.
It is irrelevant if there is no satelitte connected.Have you set up epg importer correctly.
Your provider might be using satellite refs, in which case you may need to tick the relevant rytec sources in your epg importer.
-
-
Not got round to trying this out fully yet.
But your code could do with some cleanup.
Lots of unnecessary imports.
I always use this online python tool for checking code.https://replit.com/new/python3
register with it, or sign in with your facebook.
Then post your code in and it will tell you errors and warnings. Its pretty cool for tidying up code and picking up python 3 errors.probably best to add from . import _ to most of your files to get less warnings.
d25e527b50f.png -
try adding this to your oscam.conf file
[streamrelay]stream_relay_enabled = 0
-
-
is this a user setting or a server setting
-
Is any encrypted channels working on 28.2e anymore this week. (The ones that were left)
My shared line is dead.Trying lots and lots of free 24hr lines are dead.
Nothing but a tiny handful of international channels working. Everything else is either not connecting, black screen or loads once and freezes.
Has anyone still got a working oscam/cccam line for 28.2e???? -
to be honest, I am offering advice, and just checked my oscam line and it is actually doing the same thing.
Nothing is clearing at all. Maybe related, maybe I need to speak to a man about a dog.
-
Here is an old guide I made for setting up openatv.
direct link to softcam section
OpenATV setup guide by KiddaCand your
/etc/tuxbox/config/oscam-stable/oscam.server
file should look something similar to thisCode[reader] label = myline protocol = newcamd device = domain.xyz,8383 key = 0102030405060708091011121314 user = username password = password group = 1
then restart your boxand then in info panel > softcam setup > [select your softcam i.e oscam-stable] > restart softcam
If your line is valid for the channels you are trying to view, it should kick in -
What image are you using on your box.
-
The skin is designed for oe-alliance builds including openatv. But not python 3 ready yet. So only openatv 6.4 and below at the moment.
-
:derpthink::chuckle:
-
long hold blue button for extensions menu on openatv
11f6732e35d8b9695df17.png
the default screen is ChoiceBoxbut can be skinned seperately as ExtensionsList
you need some applet hacks for this to work smoothly on the majority of images.
for example this is my slyk q codePython
Display More<!-- ChoiceBox --> <!-- /lib/python/Screens/ChoiceBox.py --> <screen name="ChoiceBox" position="center,center" size="780,195"> <widget name="text" position="0,0" size="780,78" font="Regular;33" /> <widget name="list" position="150,150" size="780,0" font="Regular;33" foregroundColor="white" backgroundColor="messageboxbg" foregroundColorSelected="white" backgroundColorSelected="select-darkblue-bg" enableWrapAround="1" transparent="1" scrollbarMode="showOnDemand" itemHeight="78" /> <applet type="onLayoutFinish">from enigma import getDesktop, eSize, ePoint desktop_w = getDesktop(0).size().width() desktop_h = getDesktop(0).size().height() itemheight = self["list"].getItemHeight() count = len(self.list) if count > 10: count = 10 width = self["list"].instance.size().width() if width < 0 or width > desktop_w: width = int(0.40625 * desktop_w) if not self["text"].text: # move list textsize = (width, 0) listsize = (width, itemheight * count) self["list"].instance.move(ePoint(0, 0)) self["list"].instance.resize(eSize(*listsize)) else: textsize = self["text"].getSize() if textsize[0] < textsize[1]: textsize = (textsize[1], textsize[0] + 10) if textsize[0] > width: textsize = (textsize[0], textsize[1] + itemheight) else: textsize = (width, textsize[1] + itemheight) listsize = (textsize[0], itemheight * count) # resize label self["text"].instance.resize(eSize(*textsize)) self["text"].instance.move(ePoint(10, 10)) # move list self["list"].instance.move(ePoint(0, textsize[1])) self["list"].instance.resize(eSize(*listsize)) wsizex = textsize[0] wsizey = textsize[1]+listsize[1] wsize = (wsizex, wsizey) self.instance.resize(eSize(*wsize)) # center window self.instance.move(ePoint((desktop_w-wsizex)//2, (desktop_h-wsizey)//2))</applet> </screen>
the borders live in your "screens" folder as defined in your skin.xml main fileCode<borderset name="bsWindow"> <pixmap pos="bpTopLeft" filename="screens/b_tl.png" /> <pixmap pos="bpTop" filename="screens/b_t.png" /> <pixmap pos="bpTopRight" filename="screens/b_tr.png" /> <pixmap pos="bpLeft" filename="screens/b_l.png" /> <pixmap pos="bpRight" filename="screens/b_r.png" /> <pixmap pos="bpBottomLeft" filename="screens/b_bl.png" /> <pixmap pos="bpBottom" filename="screens/b_b.png" /> <pixmap pos="bpBottomRight" filename="screens/b_br.png" /> </borderset>
plus you got parameters you can playaround with -
install this one
I think this is the commands to use (i don't use dreamboxes)apt-get update
dpkg -i --force-overwrite /tmp/*.deb -
As pretty much all complaints of late are about epgs. And there is nothing I can do about 3rd party epgs.
Lets try and summarise some potential fixes. (all menu options below are for openatv - your image will have similar menus)
EPG settingsSet epg data to be saved to external and not internal. IPTV epg is too big for internal memory.
setup > EPG > setup
20702fab5c40f479cf6be.png
Has your epg data become corrupt. Delete your epg data file either via ftp.dreambox - /etc/enigma2/epg.db
others - your location as set in the above screenshot "EPG data location"
or via the menus
setup > EPG > Load/Save/Delete EPG data > delete EPG data
EPG importer settings.
setup > EPG > EPG-Importer
Automatic import EPG ... enableAutomatic start time - preferable a morning time - when your box is on and not off or in deep standby.
Start import after booting up - never
Load EPG only services in bouquets - no
Load EPG only for IPTV channels - no
Clear current EPG before import - Yes - I always have this as yes incase something has become corrupt or clashes
Load long descriptions up to X days - if your provider is huge - start low - maybe 3 to 5
Run Jedi once and make sure you select your provider in epg importer sources.
To populate epg before the next auto time - run a manual scan.
Jedi Maker Xtream plugin
Main settings - try increasing the server timeout
Build bouquet - try 'Rebuild XMLTV EPG data' - this is slower but might catch an XML data error.
Lastly - a lot of providers get the offsets on epg wrong. So if you got epg, but its wrong - See ravstars advice on this.
Epg offset tutorial by @ravstar
That is all the advice I can offer at the moment - my plugin is in no state to release any further updates at the moment as I am transitioning between old and new versions.
