Tüm uydu sistemi fırsatları için tıklayın !


Experimental Release DM8000

Dreambox Kategorisinde ve Dreambox 8000 HD Serisi Forumunda Bulunan Experimental Release DM8000 Konusunu Görüntülemektesiniz,Konu İçerigi Kısaca : Experimental Release DM8000 Dreambox Update is the online update center for automatically update OpenDreambox-based Dreambox installations. Images -> http://dreamboxupdate.com/opendreamb...dm8000/images/ Feeds ...

Konu Kilitli
Toplam 8 sonuçtan 1 ile 8 arasındakiler gösteriliyor.
  1. #1
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Yeni Experimental Release DM8000

    Experimental Release DM8000

    Dreambox Update is the online update center for automatically update OpenDreambox-based Dreambox installations.

    Images -> http://dreamboxupdate.com/opendreamb...dm8000/images/

    Feeds -> http://dreamboxupdate.com/opendreamb...0/experimental







  2. #2
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Standart

    experimental-dm8000_20091103



    18:53 today enigma2
    Commit by andreas.monzner on experimental :: r895e6dc35b9a /lib/python/Components/NimManager.py:
    Merge branch 'enable_experimental_unicable_support' into experimental
    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: r022dec47e667 /lib/ (2 files in 2 dirs):
    Merge branch 'enable_experimental_m2ts_support' into experimental
    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: r6adcecd07381 /lib/python/Plugins/Extensions/CutListEditor/plugin.py:
    Merge branch 'bug_246_cutlistedit' into experimental
    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: r765e1c0b8f36 /lib/ (4 files in 2 dirs):
    Merge branch 'bug_245_record_playback_fixes' into experimental
    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: r18469e4dedcf / (14 files in 4 dirs):
    Merge branch 'bug_236_recordpath' into experimental
    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: rf488e1db5b36 / (3 files in 2 dirs):
    Merge branch '219_negative_ac3_pcm_delay' into experimental
    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: r3434371ea1aa /lib/python/Components/NimManager.py:

    Revert "disable unicable for release 2.6"

    This reverts commit 597d64c2e00be8759286e37fd15823b1c1518845.

    #
    18:53 today enigma2
    Commit by andreas.monzner on experimental :: re5953c16c3ff /lib/ (2 files in 2 dirs):

    Revert "disable m2ts support for release 2.6"

    This reverts commit bce2a7b606d6fdfdcac86c7ccc1c02f147dc26c9.

    #
    18:53 today enigma2
    Commit by stefan.pluecken on experimental :: r0fd217d2eef3 / (3 files in 2 dirs):

    bug #219

    * introduce ConfigSelectionNumber to allow left/right buttons for positive and negative number ranges
    * use it to set up config.av.generalAC3delay and config.av.generalPCMdelay

    #
    18:53 today enigma2
    Commit by felix.domke on experimental :: r29e5a4e183ce /lib/python/Plugins/Extensions/CutListEditor/plugin.py:

    By Anders Holst: Improve custlist editor

    1. Show the current seek state next next to the service time.
    It is very convenient to see how fast one is winding, when scanning
    through a movie.

    2. Don't jump away from the current position whenever a cut or mark is
    added or removed.
    2a. The variable self.last_cuts was not initialized, causing a jump
    to the first mark position when the first cut is made.
    2b. Search backwards for the first difference between old and new
    cut lists: After having produced a cut pair (out - in) you
    would like to end up at the end (in) rather than beginning
    (out). (This also gives more intuitive selected positions in
    the general case.)
    2c. Inhibit jumping whenever a cut or mark is removed: You don't
    want to leave that position now when it has no mark to easily
    jump back to.

    3. Standing at either border of a cut, at IN or OUT, should always count
    as inside the cut, so that removing it is enabled from there.
    3a. Count standing exactly at the end of a cut as also standing
    in an "OUT" area.
    3b. It was not possible to remove a "cut from the beginning" at
    all if there was any mark before the "IN" point - it was not
    correctly recognized as an "OUT" area.

    Also note that nowadays, with the more exact seeking code of Enigma2
    (on both platforms, DM7025 and DM800/8000), the CutListEditor can't be
    accused of being imprecise any more: As long as you put your cuts at
    GOP boundaries (which you are most likely to do if you fine tune your
    position with GOP single-stepping), the CutListEditor now has perfect
    precision! :-)

    patch for #246

    #
    18:53 today enigma2
    Commit by felix.domke on experimental :: r4a7a8362a83b /lib/ (4 files in 2 dirs):

    By Anders Holst:

    * My previous code for "slow rewind" (aka "SeekBackHack") is not required any more. Indeed, since the change in "decoder states" some time ago my code stopped working and is now only destructively interfering with the new winding approach, effectively ruining the speed accuracy for slow rewind. Similarly, the "non-smooth winding" code ruins the accuracy for high winding speeds. The patch below removes the "SeekBackHack", and temporarily disables the "non-smooth winding" code until we know whether the decoder states will allow simultaneous repeat and skip rates again. (InfoBarGenerics.py)
    * Due to a bug in 'eDVBTSTools::findNextPicture', rewind was always at the required speed minus one. (The frame just played was counted as one when skipping backwards.) Fixed below. (tstools.cpp)
    * A piece of code to apparently increase precision in seeking, by always aligning to an i-frame start, had exactly the opposite effect: GOP single-stepping fails completely on DM7025 and gets highly unreliable on DM800. The piece of code is removed. (It destructively interferes with previous code by me to hit frames somewhat before the GOP start. As an alternative, my previous code can be removed instead, and the currently removed piece of code adjusted to work. But then it has to be done differently on the two platforms.) (dvb.cpp)
    * By some reason eDVBVideo::getPTS only returns even numbers on DM800 even when it should be odd. This ruins GOP single stepping in 50% of the cases. This is easy to compensate for by adding a margin of 1 in getAccessPoint. (pvrparse.cpp)
    * After the above, when GOP single-stepping works reliable on both platforms and on SD/HD, the correct step lengths can be used. (InfoBarGenerics.py)

    #
    18:53 today enigma2
    Commit by felix.domke on experimental :: r7560beb3e371 / (14 files in 4 dirs):

    By Anders Holst:

    At regular intervalls there are questions in the forum (in at least
    three or four different threads on only this subject) on how to
    configure the recording paths so you don't have to set them to the
    same thing over and over again in e.g EPG timers. People apparently
    forget to set it, and miss their recordings because the harddisk is
    full or not built in. They want an easy way to change the default from
    /hdd/movies/ to a NAS or a USB device.

    I have rebased the patch in this thread from March 23, added two minor
    bugfixes, and hopefully made it less controversial by making sure that
    it only affects the expert setup level. I don't think there should be
    anything controversial about this patch now, and no known bugs. It
    only provides functionality that several people are screaming to get.

    Synopsis: The patch changes the "Timeshift path..." setup dialogue
    into a "Recording paths..." dialogue where you can easily configure
    both the timeshift and the other recording paths.
    >>>DOWNLOAD<<<







  3. #3
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Standart

    20-11-2009

    experimental-dm8000_20091120.nfi










  4. #4
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Standart

    02.12.2009

    experimental-dm8000_20091202




    experimental-dm8000







  5. #5
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419







  6. #6
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Standart

    23.03.2009

    Opendreambox 1.5

    experimental-dm8000_20100323







  7. #7
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Standart

    24.03.2009

    Opendreambox 1.5

    experimental-dm8000_20100324







  8. #8
    Moderator abdurrahman elitaş - ait Kullanıcı Resmi (Avatar)
    Üyelik tarihi
    Mar 2009
    Mesajlar
    419

    Standart

    26.03.2010

    Opendreambox 1.5


    experimental-dm8000_20100326.nfi







Konu Bilgisi

Users Browsing this Thread

Şu anda 1 üyemiz bu konuya göz atıyor. (0 kayıtlı üye ve 1 misafir.)

     

Bu Konu İçin Etiketler

Bu Konuyu Paylaşın !

Bu Konuyu Paylaşın !

Yetkileriniz

  • Konu Acma Yetkiniz Yok
  • Cevap Yazma Yetkiniz Yok
  • Eklenti Yükleme Yetkiniz Yok
  • Mesajınızı Değiştirme Yetkiniz Yok
Valid XHTML 1.0 Transitional

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335