Posts by KiddaC

    Most iptv software use twisted.downloadpage module to download all the iptv api content.

    This doesn't work for https lines


    So hacks have to be written in to make it work


    You haven't said what plugin you are trying to use. But my plugin plays SSL https lines


    X-Streamity - Xtream Codes IPTV Player


    try v2.98 that is stable.

    v3.00 is the latest but a few dreamboxes and images like vti and blackhole we got a few issues with at the moment

    here is an online json viewer


    it will allow you to see your json code in more readible manner


    http://jsonviewer.stack.hu/


    you might be able to spot your error


    but you might need to backup your broken file, create a small new one to see what the structure of the file should look like.

    by the looks of it, you have completely messed up the file.

    If you are manually hacking away at a computer generated file, it is always good idea to make a backup in case things go wrong.

    So i would delete the file and start again if I was you.

    er... maybe your json file has got corrupted.


    /etc/enigma2/jediepgxtream/epg.json


    if you open it, default blank is


    {"Sources": [], "Bouquets": []}


    if you got lots of data in it, you might just need to delete it and start again.
    Or copy the code into an online json checker and see if it reports any errors in it


    https://jsonlint.com/

    iptv players

    xstreamity - X-Streamity - Xtream Codes IPTV Player

    xcplugin - XcPlugin Forever Version



    Bouquet maker - play your iptv via enigma2 channel select screen


    Jedi Maker Xstream - Jedi Maker Xtream (IPTV Bouquet Creator) - Main thread

    With my plugins... xstreamity you can hide categories and channels. Which simulates an edit as it then only shows what you want to show.
    With Jedi maker xtream you can use editted playlists and then load these editted files as a local file.

    userslater I will try and replicate your issue later this evening.
    Are you sure you are saving the playlists.txt file and then getting comfirmation of the changed file in the FTP software.
    It SHOULD, refresh the playlists on re-entering the playlists screen as it loads the playlists.txt file every time you go into that screen.


    dog-man does your provider url start with http or https

    lincsat as dsayers has said.
    We are in a bit of a transition period at the moment.
    Everybody doing their own python 3 conversions. Nobody really on the same page yet.

    At the moment I have personally stayed on openatv 6.5 for the time being.
    I am currently in the middle of a big rewrite of my xstreamity plugin, so I have not got a lot of spare time at the moment to be testing openatv 7.0 or the new python 3 on vix.
    I mentioned a few posts up that I have pretty much given up on the EPG mod, but when I have time I don't think it would be that difficult to get movie planner working again on various images. I am pretty sure the movie planner mod does work on openatv 7, though as its not much different than 6.5. VIX I don't think I have tested yet.


    ps.. and it didn't help I crashed my multiboot box a couple of weeks ago, so not re-installed all the latest images again yet.

    Hi

    When I go into Jedi ,click on playlist it take over 5 minutes to show my playlists.

    I only have 3 playlists.

    After updating/creating bouquets it takes another 5 minutes to go back to the main menu.

    It seem a very strange long delay that.
    You might have to trust me and send me a private message with your playlists.txt file and then I can see where the issue is.
    I can do a proper debug on your actual lines then and see if its your lines, your box, or your network.

    Every time i setup this plugin on a receiver for the first time, the bouquets are created but if i restart the plugin, there is no option „update bouquet“ or „delete…“. only if i setup everything for the second time, these options are visible. normal behaviour?

    how are you adding playlists. Are you doing it manually via the plugin or via the playlists.txt file.

    KiddaC Is it possible to load picons or to include this ????

    nope sorry, its a bouquet creator only. I have always avoided picon downloads for jedi as its not simple to do via this plugin as you would have to download all picons which could be thousands, which then have to be stored on an external device like hdd or usb and also correctly named to be correctly cross referenced by the bouquets.

    Stick to iptv players like my xstreamity if you want picons on the fly, or use 3rd party windows software like e-channelizer if you want more control over picon assignment.


    i override output=mpegts in my programs to output=ts


    There was always a historical reason I did this. Because the different formats tended to use different stream urls.


    output=mgpets used to play streams via a url like this

    Code
    domain.xyz/username/password/streamnum


    where as output=ts or output=m3u8 tended to have a stream format like this

    Code
    domain.xyz/live/username/password/streamnum.ts


    notice the dfference of the missing "/live/" and the missing .extension

    most providers could always play the latter format, but not all providers would play the mpegts url format.


    try output=m3u8, if that doesn't work for you, give me a shout and I will see if we can code in a workaround.

    The playlists have a timeout that is set in main settings.

    I think the default is 3 seconds.


    For every playlist that is invalid, it will wait 3 seconds.


    If you have lots of shitty playlists you have copied off the net over time, this will be the cause of your delay.

    Valid playlists even multiple valid playlists should load in a matter of seconds.

    read post 1,


    you need to assign them, go into epgimport plugin. Check your newly created source, then do an epgimport manual download.

    clever idea this,


    regarding languages

    can you not just read the settings file


    config.osd.language=en_GB


    and just use the first 2 characters. ;)

    and the TMBD language abbreviations i use in my plugins

    languages = [

    ('en', 'English'),

    ('de', 'Deutsch'),

    ('es', 'Español'),

    ('fr', 'Français'),

    ('it', 'Italiano'),

    ('nl', 'Nederlands'),

    ('tr', 'Türkçe'),

    ('cs', 'Český'),

    ('da', 'Dansk'),

    ('hr', 'Hrvatski'),

    ('hu', 'Magyar'),

    ('no', 'Norsk'),

    ('pl', 'Polski'),

    ('pt', 'Português'),

    ('ro', 'Română'),

    ('ru', 'Pусский'),

    ('sh', 'Srpski'),

    ('sk', 'Slovenčina'),

    ('fi', 'suomi'),

    ('sv', 'svenska'),

    ('uk', 'Український'),

    ('ar', 'العربية'),

    ('bg', 'български език'),

    ('el', 'ελληνικά'),

    ('sq', 'shqip')

    ]