Page 26 of 38 FirstFirst ... 222324252627282930 ... LastLast
Results 251 to 260 of 373

Thread: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

  1. #251

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    Sim2-Unoff.-Gstreamer 1.9.0.1-DM800SE-2016-05 OpenPLi 4-Jasper-20160514


    Clean, no changes.

    Sim2

    SSL84d

    #########################################################################################
    Hi everyone,



    Since I'm going away for a while I thought it would be nice to release a last batch of testing images containing upstream work from various OpenPLi forum-members.

    So I'd like to dedicate these images to mx3L, christophecvr, samsamsam and Taapat for making it possible!


    Lot's of changes this time, so be sure to read the full post before asking any questions



    Let's first start with the things I didn't look into because I had to put my priority list together with the limited time I have..

    - I did -NOT- look into the dFlash problem, sorry dreamboxco

    - I did -NOT- add transmission, sorry doroshe

    - I did -NOT- look into the fulan sh4 problems where certain FTA channels do not playback properly after recording, sorry Tony il Capo

    - I did -NOT- add any Vu+ specific plugins such as Kodi, sorry mamamia

    - I did -NOT- fix the lcd font for the DM800Se V2, sorry gassi 1950

    - I did -NOT- look into the spark remote control issue, sorry paulbs

    - I did -NOT- add support for the VisionNet Marvel1, sorry habab

    - I did -NOT- enable the kernel modules for DreamTor yet



    That doesn't mean I don't look into it later, I just didn't have the time for it.



    Now here are the changes compared to the last release:

    - Add support for the following receivers:

    Herobox EX4 HD

    Miraclebox Mini

    Miraclebox Mini Premium Plus

    Miraclebox Ultra

    Xpeed LX3

    Formuler 4

    Xsarius PureHD

    Mut@nt HD1500

    - Latest gstreamer 1.9.0.1 snapshot based on recipes from christophecvr:

    * Proper fix for HLS segfault on stop

    * Re-enable the rtmp seeking and potential segfault fix

    * gstreamer1.0-libav is now built against system ffmpeg instead (this differs from chri's recipes) *

    * dvbmediasink patches for Vu Solo 4K, hd1265 and hd1500 from oe-alliance

    - FFMpeg updated to 3.0.2 and is now installed by default *

    - Backports to enigma2 for sh4 (mainly servicemp3.cpp related)

    - Fix EPG on sh4 receivers

    - exteplayer3 is now installed by default, thank you mx3L and samsamsam *

    - gstplayer is now installed by default, thank you mx3L and samsamsam

    - Mediatomb is now in the feeds

    - MediaPlayer2 is now installed by default, thank you mx3L

    - SubsSupport (for MediaPlayer2) is now installed by default, thank you mx3L

    - No more russian tuxtxt

    - It's now possible to set the debug level again in the UI-settings menu, thank you christophecvr

    - Latest enigma2 changes, thank you OpenPLi

    - latest openpli-oe-core changes, thank you OpenPLi

    - ServiceApp, thank you mx3L !!!



    Known issues:

    - On spark7162 (and 7111 probably as well) fragmented streams such as hls (m3u8) will skip and freeze a lot.

    This happened sometime after the official Gstreamer 1.8.0 release and I didn't found the cause yet.

    It is not related to the dvbmediasink since it doesn't happen on mips receivers and the code in the dvbmediasink didn't change.

    Configure your streams to play with exteplayer3 instead, read below.

    - * On the 64MB Dreambox models (DM800HD, DM800Se and DM500HD) there is not enough space to ship ffmpeg.

    This means that exteplayer3 and gstreamer1.0-libav aren't installed as well because they depend on ffmpeg.

    See my attached guide to copy over the root filesystem to a storage device.

    - Some Dreambox remotes may behave very sensitive.
    This causes button presses to register multiple times instead of just once.
    As a workaround you can adjust the key interval:
    Go to: Menu - System - Input devices - dreambox remote control (native).
    Set "Change repeat and delay settings" to yes
    Set "Interval between keys when repeating:" to 200ms or 300ms.
    Press green button (OK)
    Now set the same delay for: "dreambox advanced remote control (native)" as well.

    - DM800 first boot will take a while, please be patient. The next boot will be faster.



    Thanks for the hard work from mx3L and samsamsam you can now play your IPTV streams with exteplayer3 or gstplayer instead of the default dvbmediasink.

    Especially using exteplayer3 will give much better performance on playing HLS streams compared to gstreamer + dvbmediasink.

    For example, playing DJING underground 720p never worked very well on my DM800HD and now it does :)



    You can read all about it here: http://forums.openpl...nd-exteplayer3/



    In a nutshell here's how it works.

    In your /etc/enigma2/ directory you have your channel bouquets with the .tv and .radio extensions.

    Inside these files there's this for example:

    Code:
    #SERVICE 4097:0:0:0:0:0:0:0:0:0:http%3a//cdn.djing.com/tv/u-05.m3u8:DJING Underground (CDN)
    #DESCRIPTION DJING Underground (CDN)
    By default this will play with the gstreamer dvbmediasink (which is currently broken for sh4).

    If you like to play your stream with exteplayer3 instead you should change the 4097 to 5002, like this:

    Code:
    #SERVICE 5002:0:0:0:0:0:0:0:0:0:http%3a//cdn.djing.com/tv/u-05.m3u8:DJING Underground (CDN)
    #DESCRIPTION DJING Underground (CDN)
    You can also change it to play with gstplayer using 5001:

    Code:
    #SERVICE 5001:0:0:0:0:0:0:0:0:0:http%3a//cdn.djing.com/tv/u-05.m3u8:DJING Underground (CDN)
    #DESCRIPTION DJING Underground (CDN)
    Now let's say you'd like to convert your entire bouquet to play with exteplayer3, simply login to your receiver with telnet/ssh (use PuTTY for Windows).

    And issue to the following commands:

    First stop enigma2:

    init 4

    Then change your bouquet to make all streams play with exteplayer3, lets say userbouquet.favourites.tv:

    Code:
    cd /etc/enigma2
    sed -i 's/^#SERVICE 4097/#SERVICE 5002/g' userbouquet.favourites.tv
    Then restart enigma2:

    Code:
    init 3
    That's it !



    You can also make exteplayer3 the default backend for playing back everything.

    Go to Menu -> Plugins -> ServiceApp and set exteplayer3 as default.



    Keep in mind that with exteplayer3 or gstplayer as default backend you will not have support for external subtitles (.srt for example).

    That's why I've added MediaPlayer2 and SubsSupport from mx3L.

    I haven't tested it for myself yet, since I simply changed my IPTV streams with type 5002 (exteplayer3) so everything else like DreamPlex for example keeps using the dvbmediasink.



    Play around and let us know your findings!

    MastaG

    #########################################################################################
    Download:

    2016-05-14

    https://mega.nz/#!hwBk0ZqD!Q1ycpyRhj...sOx-S59-GdiESQ



    Jasper

  2. #252

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    openesi-3.0-sim2-dm800se-20160513














    Download:


    http://www.mediafire.com/download/sf...84D-Houara.nfi

  3. #253

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    Sim2-dreambox-image-dm800se-20160520-#84d-Jasper-20160521



    DMM Image Experimental (opendreambox-2.0.0)


    Clean, no changes.

    Sim2

    SSL84d

    Enigma2: 2015-12-30-tarball

    #########################################################################################

    Webinterface is working.
    Teletext is working.
    WLAN is working

    #########################################################################################

    Download:

    2016-05-21

    https://mega.nz/#!p1IF0JDI!dzPEZY0dJ...8b9mgDcjikv97U



    Jasper

  4. #254

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    Sim2-Unoff.-Gstreamer 1.9.0.1-DM800SE-2016-05 OpenPLi 4-FE-Jasper-20160514


    changes:

    FE
    added a modified FlashExpander which is deleting directories in /usr to get more free Flash memory

    Sim2

    SSL84d

    #########################################################################################
    Extend your Flash memory to an USB memory stick:

    1. add an empty USB memory stick to your box (be aware the content will be deleted)
    2. prepare your USB memory stick for FlashExpander

    Menu
    Setup
    System
    Harddisk
    Red: Initialize
    choose your USB memory stick which you want to use for FlashExpander (be aware the content will be deleted)
    Initialize

    3. Reboot your box (this is important also if you just use an already ext3 or ext4 formatted USB memory stick without initialize)

    4. Extend your Flash memory using FlashExpander

    Menu
    Plugins
    Start Flashexpander
    choose your USB memory device and start the copy process (this takes a few minutes)
    a message will appear to restart the box

    5. check if FlashExpander is working

    Menu
    Plugins
    Start Flashexpander

    6. now you should have plenty of free Flash memory
    New installed Plugins will be installed on extended Flash on USB


    #########################################################################################

    Hi everyone,



    Since I'm going away for a while I thought it would be nice to release a last batch of testing images containing upstream work from various OpenPLi forum-members.

    So I'd like to dedicate these images to mx3L, christophecvr, samsamsam and Taapat for making it possible!


    Lot's of changes this time, so be sure to read the full post before asking any questions



    Let's first start with the things I didn't look into because I had to put my priority list together with the limited time I have..

    - I did -NOT- look into the dFlash problem, sorry dreamboxco

    - I did -NOT- add transmission, sorry doroshe

    - I did -NOT- look into the fulan sh4 problems where certain FTA channels do not playback properly after recording, sorry Tony il Capo

    - I did -NOT- add any Vu+ specific plugins such as Kodi, sorry mamamia

    - I did -NOT- fix the lcd font for the DM800Se V2, sorry gassi 1950

    - I did -NOT- look into the spark remote control issue, sorry paulbs

    - I did -NOT- add support for the VisionNet Marvel1, sorry habab

    - I did -NOT- enable the kernel modules for DreamTor yet



    That doesn't mean I don't look into it later, I just didn't have the time for it.



    Now here are the changes compared to the last release:

    - Add support for the following receivers:

    Herobox EX4 HD

    Miraclebox Mini

    Miraclebox Mini Premium Plus

    Miraclebox Ultra

    Xpeed LX3

    Formuler 4

    Xsarius PureHD

    Mut@nt HD1500

    - Latest gstreamer 1.9.0.1 snapshot based on recipes from christophecvr:

    * Proper fix for HLS segfault on stop

    * Re-enable the rtmp seeking and potential segfault fix

    * gstreamer1.0-libav is now built against system ffmpeg instead (this differs from chri's recipes) *

    * dvbmediasink patches for Vu Solo 4K, hd1265 and hd1500 from oe-alliance

    - FFMpeg updated to 3.0.2 and is now installed by default *

    - Backports to enigma2 for sh4 (mainly servicemp3.cpp related)

    - Fix EPG on sh4 receivers

    - exteplayer3 is now installed by default, thank you mx3L and samsamsam *

    - gstplayer is now installed by default, thank you mx3L and samsamsam

    - Mediatomb is now in the feeds

    - MediaPlayer2 is now installed by default, thank you mx3L

    - SubsSupport (for MediaPlayer2) is now installed by default, thank you mx3L

    - No more russian tuxtxt

    - It's now possible to set the debug level again in the UI-settings menu, thank you christophecvr

    - Latest enigma2 changes, thank you OpenPLi

    - latest openpli-oe-core changes, thank you OpenPLi

    - ServiceApp, thank you mx3L !!!



    Known issues:

    - On spark7162 (and 7111 probably as well) fragmented streams such as hls (m3u8) will skip and freeze a lot.

    This happened sometime after the official Gstreamer 1.8.0 release and I didn't found the cause yet.

    It is not related to the dvbmediasink since it doesn't happen on mips receivers and the code in the dvbmediasink didn't change.

    Configure your streams to play with exteplayer3 instead, read below.

    - * On the 64MB Dreambox models (DM800HD, DM800Se and DM500HD) there is not enough space to ship ffmpeg.

    This means that exteplayer3 and gstreamer1.0-libav aren't installed as well because they depend on ffmpeg.

    See my attached guide to copy over the root filesystem to a storage device.

    - Some Dreambox remotes may behave very sensitive.
    This causes button presses to register multiple times instead of just once.
    As a workaround you can adjust the key interval:
    Go to: Menu - System - Input devices - dreambox remote control (native).
    Set "Change repeat and delay settings" to yes
    Set "Interval between keys when repeating:" to 200ms or 300ms.
    Press green button (OK)
    Now set the same delay for: "dreambox advanced remote control (native)" as well.

    - DM800 first boot will take a while, please be patient. The next boot will be faster.



    Thanks for the hard work from mx3L and samsamsam you can now play your IPTV streams with exteplayer3 or gstplayer instead of the default dvbmediasink.

    Especially using exteplayer3 will give much better performance on playing HLS streams compared to gstreamer + dvbmediasink.

    For example, playing DJING underground 720p never worked very well on my DM800HD and now it does :)



    You can read all about it here: http://forums.openpl...nd-exteplayer3/



    In a nutshell here's how it works.

    In your /etc/enigma2/ directory you have your channel bouquets with the .tv and .radio extensions.

    Inside these files there's this for example:

    Code:
    #SERVICE 4097:0:0:0:0:0:0:0:0:0:http%3a//cdn.djing.com/tv/u-05.m3u8:DJING Underground (CDN)
    #DESCRIPTION DJING Underground (CDN)
    By default this will play with the gstreamer dvbmediasink (which is currently broken for sh4).

    If you like to play your stream with exteplayer3 instead you should change the 4097 to 5002, like this:

    Code:
    #SERVICE 5002:0:0:0:0:0:0:0:0:0:http%3a//cdn.djing.com/tv/u-05.m3u8:DJING Underground (CDN)
    #DESCRIPTION DJING Underground (CDN)
    You can also change it to play with gstplayer using 5001:

    Code:
    #SERVICE 5001:0:0:0:0:0:0:0:0:0:http%3a//cdn.djing.com/tv/u-05.m3u8:DJING Underground (CDN)
    #DESCRIPTION DJING Underground (CDN)
    Now let's say you'd like to convert your entire bouquet to play with exteplayer3, simply login to your receiver with telnet/ssh (use PuTTY for Windows).

    And issue to the following commands:

    First stop enigma2:

    init 4

    Then change your bouquet to make all streams play with exteplayer3, lets say userbouquet.favourites.tv:

    Code:
    cd /etc/enigma2
    sed -i 's/^#SERVICE 4097/#SERVICE 5002/g' userbouquet.favourites.tv
    Then restart enigma2:

    Code:
    init 3
    That's it !



    You can also make exteplayer3 the default backend for playing back everything.

    Go to Menu -> Plugins -> ServiceApp and set exteplayer3 as default.



    Keep in mind that with exteplayer3 or gstplayer as default backend you will not have support for external subtitles (.srt for example).

    That's why I've added MediaPlayer2 and SubsSupport from mx3L.

    I haven't tested it for myself yet, since I simply changed my IPTV streams with type 5002 (exteplayer3) so everything else like DreamPlex for example keeps using the dvbmediasink.



    Play around and let us know your findings!

    MastaG

    #########################################################################################
    Download:

    2016-05-22

    https://mega.nz/#!5tZH0Krb!ovjRBoFxA...SCRLCJL8ogtil4



    Jasper

  5. #255

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    newnigma2-ipk-daily-lean-expand-eB-sim2-dm800se-22_05_2016
    (Flash Erweiterung / Flash Expansion)




    ###########################################################
    No online update !
    #####################################################

    # Flash Images

    # USB Stick (ext3/ext4) mount /media/expand (files on the stick will be deleted)

    # Call the Extensions and Expand-memory with start ok

    # Have fun
    --------------------

    # Images flashen

    # USB Stick (ext3/ext4) einhängen nach /media/expand (Dateien auf dem Stick werden gelöscht)

    # Erweiterungen aufrufen und Expand-memory mit ok starten

    # Viel Spaß


    ---------------------------------------------------------------------------------------------
    https://workupload.com/file/TTXC6QQ
    ------------------------------------

    elblindo

  6. #256

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    D.M.S-Img-sim2-dm800se-OE2-v5.1-ssl84D-20160521





    Download:
    http://www.mediafire.com/download/uu...521-Houara.nfi

  7. #257

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    Sim2-dreambox-image-dm800se-20160520-84d-FE-CU-Jasper-20160524



    changes:

    FE
    added a modified FlashExpander which is deleting directories in /usr to get more free Flash memory

    CU
    added the Clone Update Plugin (v4.0) to upgrade your image online


    Sim2

    SSL84d

    Enigma2: 2015-12-30-tarball
    #########################################################################################

    Webinterface is working.
    Teletext is working.
    WLAN is working

    #########################################################################################

    Extend your Flash memory to an USB memory stick:

    1. add an empty USB memory stick to your box (be aware the content will be deleted)
    2. prepare your USB memory stick for FlashExpander

    Menu
    Setup
    System
    Storage device
    choose your USB memory stick which you want to use for FlashExpander (be aware the content will be deleted)
    Red Button: Initialize
    after the USB memory stick is formatted do not mount it

    3. Reboot your box (this is important also if you just use an already ext3 or ext4 formatted USB memory stick without initialize)

    4. Extend your Flash memory using FlashExpander

    Menu
    Plugins
    Start Flashexpander
    choose your USB memory device and start the copy process (this takes a few minutes)
    a message will appear to restart the box

    5. check if FlashExpander is working

    Menu
    Plugins
    Start Flashexpander

    6. now you should have plenty of free Flash memory
    New installed Plugins will be installed on extended Flash on USB

    ###########################################################################################

    Update your image online:

    Please check that you have 9 MB free flash memory before you start the update.

    Menu
    Plugins
    Start SOA Clone Updater 4.0
    "Upgrade-your-Image" and press OK
    "Restart-your-Receiver" and press OK

    The image will be updated
    ###########################################################################################

    Download:

    2016-05-24


    https://mega.nz/#!cpYXTC5B!9ThkcpTgh...VBCgs0dt52Djp0



    Jasper

  8. #258

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: backup image OE 2.0 for DM800SE

    OpenESI 3.0-DM800se-ssl84D-sim2 by decorsan




    BackUp Openesi 3.0 of 06/06/2016 for DM800SE Sim 2
    mono tuner

    - Gstreamer 1.9.0.
    - EPG Importer
    - FlashExpander
    - CCCam Info
    - CCCam 2.2.1
    - MGcamd 1.38
    - Doscam
    - ESI Panel
    - ClearMem
    - DFlash
    - Free Iptv Pandasat v.2.0


    PHP Code:
    https://userscloud.com/zqvexdbj3oa9 

  9. #259

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    BlackHole-3.0.2B-OE2.0-DM800SE-SIM2-06062016











    Download:
    http://www.mediafire.com/download/1u...016-Houara.nfi

  10. #260

    korn's Avatar
    Join Date
    Dec 2010
    Location
    SatDreamGr
    Posts
    51,998
    Rep Power
    2485045

    Απ: DM800SE Clone Images Ο.Ε. 2.0 SIM 2 ssl84d

    powersat_3.2A9-DM800se-sim2-06-06-2016

    Machine: Dreambox dm800se
    Distro: opendreambox 2.0.0
    Enigma2: 3.999git20151231-r32.1
    MD5: 324ca22736c72f14b934aeb81dadbdac
    SHA256: 3894b999056ef801c1821cb49cbbf775db26dcfaea110f3a10 f07b3313f7971c
    new softcammanager bootable blue button tx.Lululla
    skin Mx10 skin Beyonce_F1_mod by powersat-team thanks the author
    new bootlogo powersat



    Downlaod:
    http://www.mediafire.com/download/o5...84D-Houara.nfi

Page 26 of 38 FirstFirst ... 222324252627282930 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 4 users browsing this thread. (0 members and 4 guests)

Similar Threads

  1. DM800SE Clone Images Ο.Ε. 2.0 Sunray SR4 ssl84d
    By korn in forum Images DM800SE
    Replies: 24
    Last Post: 05-05-21, 06:52
  2. DM800 Clone Images Ο.Ε. 2.0 SIM 2 ssl84d
    By korn in forum Images Dm800
    Replies: 484
    Last Post: 09-10-19, 16:54
  3. DM500HD Clone Images Ο.Ε. 2.0 SIM 2 ssl84d
    By korn in forum Images Dm500 HD
    Replies: 119
    Last Post: 07-06-18, 01:09
  4. DM800se clone images sim 2.10 ssl84d
    By kobos in forum Images DM800SE
    Replies: 6
    Last Post: 25-03-14, 17:27

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •