Pagina 35 di 45 PrimaPrima ... 253334353637 ... UltimaUltima
Risultati da 341 a 350 di 443

Discussione: Decoder DM 800 SE - Immagini backup Sim 2.10

  1. #341
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    Update: TSimage_3.0_OE-2.0-sim2-dm800se-2016.03.27-ssl84D-Houara.nfi

    Update : TSimage_3.0_OE-2.0-sim2-dm800se-2016.03.27



    25 Mar 2016 (git opendreambox)
    enigma2-plugins: increment the PE to get rid of messages like "Package version for package enigma2-skin-simple went backwards"
    enigma2-skins: increment the PE to get rid of messages like "Package version for package enigma2-skin-simple went backwards", changed SCHWERKRAFT_BRANCH="4.0" to GITHUB_BRANCH="4.0"
    enigma2-skins: use opendreambox-github instead of schwerkraft-git
    enigma2-plugins: use opendreambox-github instead of schwerkraft-git
    opendreambox-github: add template class for github projects

    27 Mar 2016 (TSimage)
    update enigma2-tspanel to 2.6-r11 (fix TSyWeather forecast + fix RSS reader)
    update enigma2-skin-ts-MetrixHD to 2.1-r15
    update enigma2-skin-ts-mx-hq2 to 1.0-r5


    Download:

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



  2. #342
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    BlackHole-2.1.7-Final-Light-OE2.0_dm800se_SIM2_SSL84D_08.04.2016_Houara.nfi

    BlackHole-2.1.7-Final-Light-OE2.0-dm800se-ssl84d


    Click here to view the original image of 749x421px.

    08/04/2016

    *Fixed Crash Cannot allocate Memory with Iptv and Tsmedia

    *Fixed Renderer picon.py to Show picons without Reboot

    *Patched Channelselection.py (open Channel List and press 2xMenu to Show Customise)

    *Free space for internal flash 8.9M

    *BlackholeAddons updated:

    -ADD oscam_1.20-rev-11219(only Add your server CCcam or Newcamd to oscam.server)
    -ADD Skin Darkstar-blue

    Download:
    http://www.mediafire.com/download/lx...016_Houara.nfi



  3. #343
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    Sim2-Unofficial-Gstreamer 1.8-DM800SE-images 2016-04-based on OpenPLi 4-Jasper-201604

    Sim2-Unofficial-Gstreamer 1.8-DM800SE-images 2016-04-based on OpenPLi 4-Jasper-20160409


    Clean, no changes.

    Sim2

    SSL84d

    ################################################## #######################################
    Dear friends,

    I've built new unofficial images for testing purposes based on OpenPLi.

    These images are my work and not in any way supported by the PLi team.

    Keep in mind that these images are experimental and I've only tested few of them.

    So use them at your own risk.


    A special thank you to: Taapat, christohpecvr, mx3L, joeuser and .:MarcinO:. for their help and contributions



    So what's new compared to 2016-03 release:


    - Gstreamer 1.8.0 stable release for all receivers (including spark)
    - New bootlogo by .:MarcinO:.
    - Upgrade OpenVPN to 2.3.8.
    - Upgrade OpenSSH to 7.1p2.
    - Upgrade OpenSSL to 1.0.2g.
    - Upgrade vsftpd to 3.0.3.
    - Patched and bumped Python due to OpenSSL not supporting SSLv3 anymore.
    - Upgrade Japhar-IPTV List to 1.6.
    - Upgrade rtmpdump from oe-alliance and let it provide librtmp as well.
    - Upgrade ffmpeg to 3.0.1.
    - Using christophecvr's multibox dvbmediasink with the following changes:
    * Patch from mx3L to ensure PES is written with PTS, see: http://forums.openpl...ndpost&p=539836
    This fixes potential freezes on Xtrend receivers, possibly others as well.
    * Workaround christophecvr for fixing certain mkv files with DTS audio, see: http://forums.openpl...ndpost&p=540985
    * I changed the dvbaudiosink on sh4 to always run in async mode, this fixes most of the freezes I get when stopping a video.
    This is only changed for sh4 (spark/spark7162), not for other receivers.
    * I've removed mx3L's patch for seeking in mp4 files, see: http://forums.openpl...ndpost&p=534766
    I couldn't reproduce the freezing on my receivers and with the above patch I sometimes noticed the subtitles where completely gone after seeking.
    * Patch from mx3L which enables AAC to AC3 transcoding V2 is still included.

    - Still two patches by mx3L are included to servicemp3.cpp which are not upstream yet.
    servicemp3_audio_switch_fix.patch: Should fix a potential crash when switching audio tracks in a certain direction:
    Code:
    diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp
    index 7559042..eb1ce4c 100644
    --- a/lib/service/servicemp3.cpp
    +++ b/lib/service/servicemp3.cpp
    @@ -1493,18 +1493,12 @@ RESULT eServiceMP3::selectTrack(unsigned int i)
    if (ppos < 0)
    ppos = 0;
    }
    -
    - int ret = selectAudioStream(i);
    - if (!ret)
    + if (validposition)
    {
    - if (validposition)
    - {
    - /* flush */
    - seekTo(ppos);
    - }
    + /* flush */
    + seekTo(ppos);
    }
    -
    - return ret;
    + return selectAudioStream(i);
    }

    int eServiceMP3::selectAudioStream(int i)

    servicemp3_upstream_gst.patch: Faster IPTV Zapping:

    Code:
    diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp
    index 7559042..fd59b62 100644
    --- a/lib/service/servicemp3.cpp
    +++ b/lib/service/servicemp3.cpp
    @@ -782,14 +782,6 @@ RESULT eServiceMP3::stop()
    m_state = stStopped;

    GstStateChangeReturn ret;
    - GstState state, pending;
    - /* make sure that last state change was successfull */
    - ret = gst_element_get_state(m_gst_playbin, &state, &pending, 5 * GST_SECOND);
    - eDebug("[eServiceMP3] stop state:%s pending:%s ret:%s",
    - gst_element_state_get_name(state),
    - gst_element_state_get_name(pending),
    - gst_element_state_change_return_get_name(ret));
    -
    ret = gst_element_set_state(m_gst_playbin, GST_STATE_NULL);
    if (ret != GST_STATE_CHANGE_SUCCESS)
    eDebug("[eServiceMP3] stop GST_STATE_NULL failure");
    Both patches were also part of my images in my last release and they have not caused any problems as of yet.
    Maybe someone should review them again and merge them upstream? (maybe with some "if gstreamer 1.0" statement).



    - Rewrote Dreambox kernel recipes which should fix certain models not booting.

    Hopefully the V2 models are now working again.
    - Fixed CrossEPG.
    - Spark: (hopefully) Fixed resizing of the framebuffer.
    - Spark: Fixed the v.format button, thx to joeuser.
    - Spark: It should be possible again to install addons/plugins from the gui.
    - Spark: add Taapat's flash-tools and mountspark script.
    - Atemio Nemesis: New fan control plugin by .:MarcinO:.
    - Merged latest openpli-oe-core changes.
    - Merged latest OpenPLi enigma2 changes.
    - Upgrade oscam to rev 11225 and applied joeuser's latest tryfix patch.
    Don't discuss it here, instead go to streamboard.
    - No more libeplayer images, only gstreamer for now.

    - Some more minor things I probably forgot...



    Many packages have been changed/updated so don't try to upgrade your existing image as this will most likely cause problems.

    Instead flash a clean image.



    Please refrain from any (cam/smartcard)-emulation or clone-receiver discussion.

    Thanks for testing and be sure to report back your findings.



    Note: The feed is still being uploaded, which will take another 7 or 8 hours at this time of writing.

    MastaG

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

    2016-04-09

    https://mega.nz/#!U4YzibwK!7ErDAOyJs...02OPGr7MSkEd1M



    Jasper



  4. #344
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    openld-2.8-sim2-dm800se-2016.04.12-ssl84D-Houara.nfi

    openld-2.8-sim2-dm800se-2016.04.12



  5. #345
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    Sim2-Unoff.-Gstreamer 1.9.0.1-DM800SE-2016-04 V2-based on-OpenPLi 4-Jasper-20160417


    Clean, no changes.

    Sim2

    SSL84d

    ################################################## #######################################
    Hi there,



    Since my last round of images had HLS broken, I've created a quick round of new images using christophecvr's new gstreamer recipes.

    Also it should be possible to do an online upgrade (if you have sufficient free space).



    Changes compared to previous release:



    - New gstreamer 1.9.0.1 recipes based on christophecvr's github (small changes for PLi4)

    - Upgrade glib2.0 and some other components like gobject-introspection to satisfy the new gstreamer recipes

    - gstreamer1.0-libav is built using it's minimal libav with only support for wma (thank you chris)

    It's pre-installed on all receivers except for the ones with only 64MB of flash (dm800/800se/500hd)

    - Full ffmpeg 3.0.1 package is in the feeds for use with IPTV Player's exteplayer3 (thx to Taapat for the original bbappend)

    Login with telnet and issue: opkg update && opkg install ffmpeg

    - Latest openpli-oe-core changes

    - Latest enigma2 changes

    - spark: libeplayer3 is pre-installed now (also in the feeds) for movie players with support for this library

    Note: servicemp3 still uses gstreamer

    - spark: some OpenPLi enigma2 backports (since Taapat doesn't maintain his enigma2 branch anymore)

    The servicemp3 memleak patch has been applied with some other patches/commits I found useful

    - spark: don't force async mode on the dvbaudiosink anymore, it's now the same as all other receivers again



    So in short, this release should have HLS and mp4 playback working again. (thank you mx3L and chris).



    Also thanks to samsamsam IPTV Player should be working again.

    It's now compatible with OpenSSL and if you install ffmpeg from the feeds, it will install exteplayer3 for you (also on sh4).



    Please refrain from any (cam/smartcard)-emulation or clone-receiver discussion.

    Thanks for testing and be sure to report back your findings.
    MastaG

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

    2016-04-17

    https://mega.nz/#!I9JWFaBB!eMIKYSecC...1qjclR00KR_rus



    Jasper



  6. #346
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    opendroid-5.5-sim2-dm800se-20160424-ssl84D-Houara.nfi




  7. #347
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    OpenPLi 4.0-DM800se - ssl84D - sim2



    BackUp OpenPLi 4.0 of 09/05/2016 for DM800SE Sim 2
    mono tunner
    plugin:

    - Satvenus panel
    - PANDASAT Free IPTV
    - japhar-addons-manager_5.2
    - Flashexpander Modded OpenPLi
    - ClearMem
    - FlashBackup
    - Cccams 2.2.1
    - Oscam



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



  8. #348
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    SatVenus Team Backup DM800se OoZooN image
    by @dragec11

    SatVenus Bootlogo by jopidane

    SatVenus e2 Setings Motor 30w_42e
    21.04.2016.





    Plugins:
    SatVenus Panel 4.5.1
    SatVenus Setings 2.0
    DDplayer 3.29
    Kino_De.
    Temo.Control 1.03
    New Meny
    and more....









    Emu:
    CCcam_2.30
    MGcamd_1.38
    OsCam

    Skin:
    HD_glas16
    Vali.HD.nano.mod
    Default_HD











  9. #349
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    SatVenus Team Backup DM800se
    BlackHole 2.1.6 by @dragec11

    SatVenus e2 Setings motor 30w_42e
    21.04.2016.







    Thanks by ramiMAHER



    Plugins:
    SatVenus Panel
    SatVenus Setings 2.0
    IPTV Player 124.02.05.00
    Flash Expander
    Wather Plugin
    Media Player
    and more...





    Emu:
    CCcam_2.30
    MgCamd_1.38c
    Doscam_0.25
    Skin:
    3D-BlackHole-Orbits










    Image may flash on, or if there is a possibility it is better to put on flashexpander or multiboot because of the size (63Mb) ...
    by dragec11






  10. #350
    Data Registrazione
    Jul 2010
    Messaggi
    9,851
    Post Thanks / Like
    Downloads
    48
    Uploads
    4

    Predefinito

    SatVenus Team Backup DM800se
    D.M.S image v5.0 by dragec11

    SatVenus e2 setings motor 30w_75e
    13.05.2016.





    Plugins:
    SatVenus Panel 4.5.1
    SatVenus Setings 2.0
    LiveFootbal 6.0
    DDplajer 3.29
    Temp.Control 1.03
    Picture Player
    and more...

    Emu:
    CCcam_2.0.11
    Mgcamd_1.38 full
    EvoCamd 2.17









    Skin:
    Dreamy
    Default skin





    Tested,it"s all right......





Pagina 35 di 45 PrimaPrima ... 253334353637 ... UltimaUltima

Informazioni Discussione

Utenti che Stanno Visualizzando Questa Discussione

Ci sono attualmente 1 utenti che stanno visualizzando questa discussione. (0 utenti e 1 ospiti)

Segnalibri

Permessi di Scrittura

  • Tu non puoi inviare nuove discussioni
  • Tu non puoi inviare risposte
  • Tu non puoi inviare allegati
  • Tu non puoi modificare i tuoi messaggi
  •