Log in

View Full Version : BD Rebuilder Beta - Bug Reports Only


Pages : 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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648

turbojet
29th September 2009, 14:10
jdobbs could you please change non-strict AVCHD movie only on DVD to --avchd? Most players won't play --bluray content on DVD. The only reason according to tsmuxer changelog for --bluray is to allow VC-1 to play on Panasonic players which was probably drjake's issue.

Also with current firmwares of all known players the non-strict AVCHD movie only is fully compatible. However strict AVCHD fails to play in Funai based (Phillips, Insignia, Sylvania, etc.) and Denon players. Strict AVCHD option recent changes are good considering this mode should only be meant for playback in PowerDVD/WinDVD from HDD which only supports AC3/LPCM audio. Maybe you would consider changing the default back to non-strict AVCHD with --avchd as it's the most compliant when output is DVD.

jdobbs
29th September 2009, 16:11
@jdobbs

I'm currently converting a BD with two DTS audiotracks (one 5.1 DTS-HD, one normal 5.1 DTS, as told by BDInfo 0.52) to AC3.

I've noticed that in both audio AviSynth-files is now (v0.30.01):

audio = (AudioChannels(audio) > 6) ? GetChannel(audio,1,2,3,4,7,8) : audio

compared to older versions:

audio = (AudioChannels(audio) > 6) ? GetChannel(audio,1,2,3,4,5,6) : audio

Is that OK? What happened to Channels 5 and 6 :eek:? The old way was incorrect. The mapping for 7.1 LPCM (which is what you get as output from NicAudio) is:

L, R, C, LS, cs1, cs2, RS, lfe

For 5.1 LPCM the mapping is:

L, R, C, LS, RS, lfe

So the correct mapping is GetChannel (audio, 1,2,3,4,7,8).

On the DTS tracks you're describing the line has no affect at all. It only makes the conversion if there are more than 6 tracks i.e. "(AudioChannels(audio) > 6)".

jdobbs
29th September 2009, 16:18
New Version Solves the ProblemGood, I was hoping it would.

jdobbs
29th September 2009, 16:19
Got exactly the same result for Silence of the Lambs Region B PAL on Movie Only run. Sorry I closed it down before I had a chance to copy the Logfile (is this stored anywhere for later retrieval?) Use the newest version. That error should have been corrected in v0.29.5.

Yes. The logfile is written to the output directory.

jdobbs
29th September 2009, 16:25
jdobbs could you please change non-strict AVCHD movie only on DVD to --avchd? Most players won't play --bluray content on DVD. The only reason according to tsmuxer changelog for --bluray is to allow VC-1 to play on Panasonic players which was probably drjake's issue.

Also with current firmwares of all known players the non-strict AVCHD movie only is fully compatible. However strict AVCHD fails to play in Funai based (Phillips, Insignia, Sylvania, etc.) and Denon players. Strict AVCHD option recent changes are good considering this mode should only be meant for playback in PowerDVD/WinDVD from HDD which only supports AC3/LPCM audio. Maybe you would consider changing the default back to non-strict AVCHD with --avchd as it's the most compliant when output is DVD.Hmmm... I meant for it to work that way -- but I missed it. I planned for movie-only to BD-5/9 to be written as AVCHD. Right now it outputs as "--avchd" only when "Strict" is selected" (which is on by default). I'll fix it and put out a quick release.

Are you positive about the players, even with the new settings? The whole purpose of the new setting was to make it compatible across more players.

samtroy
29th September 2009, 16:52
@jdobbs & turbojet

jdobbs could you please change non-strict AVCHD movie only on DVD to --avchd? Most players won't play --bluray content on DVD. The only reason according to tsmuxer changelog for --bluray is to allow VC-1 to play on Panasonic players which was probably drjake's issue.

Also with current firmwares of all known players the non-strict AVCHD movie only is fully compatible. However strict AVCHD fails to play in Funai based (Phillips, Insignia, Sylvania, etc.) and Denon players. Strict AVCHD option recent changes are good considering this mode should only be meant for playback in PowerDVD/WinDVD from HDD which only supports AC3/LPCM audio. Maybe you would consider changing the default back to non-strict AVCHD with --avchd as it's the most compliant when output is DVD.

I would agree on that. Non-strict movie-only BD9s should probably be --avchd because of compatability reasons.

Although I like the Profile 4.0 encoding *without* slices very much. From what I have read slices only use up bitrate and are not really useful. I know they are needed for 4.1. How bout a checkbox maybe where profiles 4.0/4.1 could be changed? Would that make sense?

jdobbs
29th September 2009, 17:11
I just updated the first post of this thread with a link to a new release of BD-RB (v0.30.02). Changes for this version:- Fixed a bug in which the AUDIO_AMPLIFY hidden INI
setting was not being read properly.
- Corrected an error in which non-strict movie-only
output to BD-5/9 was being written as "--blu-ray"
rather than "--avchd". Also made "no slices" and
"--level 4.0" restrictions to BD-5/9 movie-only
encodes even when "strict" is not selected. Reversed
the v0.30.01 change -- "strict AVCHD" is no longer
the default. I'm afraid that change may cause too
much confusion for people who have found the "sweet
spot" for their particular player (especially the
removed directories).
- Other minor corrections and cosmetic fixes.

Sn8kbordin
29th September 2009, 20:35
- Corrected an error in which non-strict movie-only
output to BD-5/9 was being written as "--blu-ray"
rather than "--avchd". Also made "no slices" and
"--level 4.0" restrictions to BD-5/9 movie-only
encodes even when "strict" is not selected. Reversed
the v0.30.01 change -- "strict AVCHD" is no longer
the default. I'm afraid that change may cause too
much confusion for people who have found the "sweet
spot" for their particular player (especially the
removed directories).


Does this only apply when you select Target size BD-5 and BD-9?
Or does it also apply to custom size that would fit into DL DVD?

Sharc
29th September 2009, 20:45
No, I didn't do any preprocessing.
Files showing the oddness (re-encoded but not resized):
00002.m2ts (Studio intro)
00125.m2ts (Segment of the main feature). In addition, all audio (DTS) and sups were kept and muxed intact for this segment, instead of being selected and re-encoded to ac3 for audio. It is noted that the 00125.m2ts belongs to the playlist for the "extended version". It is not used for the "theatre version".
The problem (no resizing to 720p and no stripping of audio and sups for mentioned segment) still persists with v0.30.02. Any clue as to why this happens?

jdobbs
29th September 2009, 22:00
Does this only apply when you select Target size BD-5 and BD-9?
Or does it also apply to custom size that would fit into DL DVD?Both.

jdobbs
29th September 2009, 22:01
The problem (no resizing to 720p and no stripping of audio and sups for mentioned segment) still persists with v0.30.02. Any clue as to why this happens? No. I'll have to look at it.

DVD Maniac
29th September 2009, 22:13
Use the newest version. That error should have been corrected in v0.29.5.

Yes. The logfile is written to the output directory.

I was using 30.01........i'll try 30.02 and see what happens.

TRONDROM
30th September 2009, 01:41
I'm going to post this again because no one seems to want to answer my question.

Quick question, I encoded a full movie back up of Punisher 2 War Zone to a BD-25. The disc loads up fine and plays in my Sony BDP-S300, but I've noticed the movie is a bit jumpy and choppy in parts, like the frame rate is stuttering. What could cause this? This is not the first time I've encountered this problem. I ended up just taking the largest M2TS file and running it through Ripbot instead and made a 20gb BDMV AVCHD file instead and burned it and it plays beautiful, but I wanted the whole bluray, extras included. What could cause BD-Rebuilder to cause stuttering of the frame rate?

Capsbackup
30th September 2009, 02:22
I'm going to post this again because no one seems to want to answer my question.


Not the best way to start a question you would like help with! :rolleyes:
Anyway, more info is needed, like the BD-RB log, INI, and if this is a 1080i/p file, etc.. The more info you can provide regarding this disc, the more likely someone could reply.

GaPony
30th September 2009, 03:03
I'm going to post this again because no one seems to want to answer my question.

Quick question, I encoded a full movie back up of Punisher 2 War Zone to a BD-25. The disc loads up fine and plays in my Sony BDP-S300, but I've noticed the movie is a bit jumpy and choppy in parts, like the frame rate is stuttering. What could cause this? This is not the first time I've encountered this problem. I ended up just taking the largest M2TS file and running it through Ripbot instead and made a 20gb BDMV AVCHD file instead and burned it and it plays beautiful, but I wanted the whole bluray, extras included. What could cause BD-Rebuilder to cause stuttering of the frame rate?

It could be a bad burn, bad media, low resources, and about a million other things. How does the BD-Rebuilder result play from the hard drive? What settings are you using in BD-Rebuilder? Are you using the latest firmware for the Sony SAP? Maybe posting the log and .ini settings would give someone something to look at, in order to help answer your question(s).

hudsucker
30th September 2009, 10:25
I have serious issues with reports that are looking at output size or say "it didn't fill the disc!"... in most cases it is meaningless. I'll be happy to add a zero filled file to the output to make it 24GB -- as in most cases that will do about the same to improve the quality as adding bitrate above 20000 Kbs.

This is the time for me to make a confession: With every new version of BD Rebuilder I checked the maximum output size and maximum bitrate of my reference movie `The Siege` (29.7 GB) after encoding.
I belong to the group of users who still believe that in general a higher bitrate means higher picture quality and therefore hate wasting space on a BD-25.

And what can I say - with v030.01 you finally made it!

Updated the maximum bitrate for BD-25 encoding to a higher rate to lower the undersizing probability.

A big THANK YOU for this. For the first time I was able to fill up my disc with 23.2 GB with that movie. (BTW - with v029.05 the maximum size was no more than 17.4 GB)

I use BD Rebuilder to reencode movie-only to BD-25 and now I am REALLY HAPPY to burn my movies with the maximum possible bitrate.
Believe me, on a projector screen size of 98" there are scenes where you can spot the difference between a bitrate of 19,985 kbps with v029.05 and 26,513 kbps with v030.01


@jdobbs: I really appreciate your work very much - have sent you a donation.

samtroy
30th September 2009, 13:45
@jdobbs

Do you have any plans for adding an 'Force a particular subtitle to ON' setting in the next versions? So far I did use BDedit for that (which is definately *not* very user-friendly ;)). There's more and more sources that need a special subtitle stream to be forced ON for foreign dialoge or other stuff..

I know there's already an option like that present in BD Rebuilder's Mode menu but it's greyed out..

jdobbs
30th September 2009, 15:38
@jdobbs

Do you have any plans for adding an 'Force a particular subtitle to ON' setting in the next versions? So far I did use BDedit for that (which is definately *not* very user-friendly ;)). There's more and more sources that need a special subtitle stream to be forced ON for foreign dialoge or other stuff..

I know there's already an option like that present in BD Rebuilder's Mode menu but it's greyed out.. Yeah, I plan to enable that eventually.

Tongariro
30th September 2009, 17:09
I have a problem with Pic In Pic.

I was doing LABYRINTH that has Pic-In-Pic.
As you can see the 2nd audio isn't been selected even if i choose all languages.

The result is that i can see the PIP but i no pip sound just the original.

I got the same result in the HULK.
Am i doing something wrong or missing something?
I am attaching the ini file as well.

Thanks

By the way, Great S/W .
:thanks:


[Options]
MODE=0
QUICK_EXTRAS=0
PRIORITY_CLASS=1
RESIZE=0
MIN_M2TS_SIZE=20
AUDIO_TO_KEEP=all
SUBS_TO_KEEP=ang;eng;enm;heb;
TRELLIS=1
COLOR_BOOST=0
RESIZE_1080=0
SHOW_ENCODER=0
DTS_REENCODE=0
AC3_REENCODE=0
AC3_640=1
KEEP_HD_AUDIO=1
AVCHD=0
AUDIO_TRACK_LIMIT=0
SUBTITLE_TRACK_LIMIT=0
CUSTOM_TARGET_SIZE=7700
ENCODE_QUALITY=2
TARGET_SIZE=23000
VERBOSE_STATUS=1
KEEP_INTERLACING=1
REMOVE_WORKFILES=0
PROCESS_SECONDARY=1
CRF_ENCODING=0
MKV_INTERMEDIATE=0
ONEPASS_ENCODING=0
SD_CONVERT=0
[Paths]
SOURCE_PATH=H:\
WORKING_PATH=D:\ORIG\

Furiousflea
30th September 2009, 20:21
I have a problem with Pic In Pic.

I was doing LABYRINTH that has Pic-In-Pic.
As you can see the 2nd audio isn't been selected even if i choose all languages.

The result is that i can see the PIP but i no pip sound just the original.

I got the same result in the HULK.
Am i doing something wrong or missing something?
I am attaching the ini file as well.

Thanks

By the way, Great S/W .
:thanks:


[Options]
MODE=0
QUICK_EXTRAS=0
PRIORITY_CLASS=1
RESIZE=0
MIN_M2TS_SIZE=20
AUDIO_TO_KEEP=all
SUBS_TO_KEEP=ang;eng;enm;heb;
TRELLIS=1
COLOR_BOOST=0
RESIZE_1080=0
SHOW_ENCODER=0
DTS_REENCODE=0
AC3_REENCODE=0
AC3_640=1
KEEP_HD_AUDIO=1
AVCHD=0
AUDIO_TRACK_LIMIT=0
SUBTITLE_TRACK_LIMIT=0
CUSTOM_TARGET_SIZE=7700
ENCODE_QUALITY=2
TARGET_SIZE=23000
VERBOSE_STATUS=1
KEEP_INTERLACING=1
REMOVE_WORKFILES=0
PROCESS_SECONDARY=1
CRF_ENCODING=0
MKV_INTERMEDIATE=0
ONEPASS_ENCODING=0
SD_CONVERT=0
[Paths]
SOURCE_PATH=H:\
WORKING_PATH=D:\ORIG\

Yeah, you ain't done enuf reading up.

only EAC3+ PiP audio tracks are supported. There's no free DTS-Express muxer available yet. Also if you have a Sony SAP then you need to set audio output to "mix" in the system menu of the player.

samtroy
30th September 2009, 22:32
jdobbs, sorry for asking again but you never answered on that:

Is BD Rebuilder using the "-pad 0" parameter when reencoding audio with Aften? From what I've read, this setting should prevent a ~10ms delay on the reencoded audio.

Or is this negligible maybe?

drmih
30th September 2009, 22:44
@jdobbs
It has been said that the issue with the DTS-Express is that there isn't a freeware muxer. However, I've just been playing with eac3to with hd-dvd/blu-ray Stream Extractor as a GUI, and that is capable of writing out a dts-express track in a variety of formats - so far I've tried both ac3 and wav and the audio files created play fine. Isn't it possible to extract the 2nd audio and then remux it as an ac3 or can't the flag type be changed? Sorry for hassling you about this but I'm trying to see the flaw in this.

Capsbackup
30th September 2009, 23:55
@jdobbs
It has been said that the issue with the DTS-Express is that there isn't a freeware muxer. However, I've just been playing with eac3to with hd-dvd/blu-ray Stream Extractor as a GUI, and that is capable of writing out a dts-express track in a variety of formats - so far I've tried both ac3 and wav and the audio files created play fine. Isn't it possible to extract the 2nd audio and then remux it as an ac3 or can't the flag type be changed? Sorry for hassling you about this but I'm trying to see the flaw in this.

This could be a very cool find drmih!!
I am testing a demux now, and will confirm my findings as well. Hopefully, if this works, it will allow jdobbs to have full PiP functionality regardless of audio type. :)

jdobbs
30th September 2009, 23:55
I have a problem with Pic In Pic.

I was doing LABYRINTH that has Pic-In-Pic.
As you can see the 2nd audio isn't been selected even if i choose all languages.

The result is that i can see the PIP but i no pip sound just the original.

I got the same result in the HULK.
Am i doing something wrong or missing something?
I am attaching the ini file as well.

Thanks

By the way, Great S/W .
:thanks:

Unfortunately there is no way right now to demux DTS-Express, which is what is used for DTS secondary audio. TSMUXER rejects it.

jdobbs
30th September 2009, 23:58
jdobbs, sorry for asking again but you never answered on that:

Is BD Rebuilder using the "-pad 0" parameter when reencoding audio with Aften? From what I've read, this setting should prevent a ~10ms delay on the reencoded audio.

Or is this negligible maybe?Definitely negligible. 10ms is much too small to be in need of correction.

jdobbs
1st October 2009, 00:01
This could be a very cool find drmih!!
I am testing a demux now, and will confirm my findings as well. Hopefully, if this works, it will allow jdobbs to have full PiP functionality regardless of audio type. :)Standard AC3 or WAV can't be used for secondary audio. Only Dolby Digital Plus or DTS Express are accepted. I'm not sure if there is a freeware AC3 Plus encoder out there...

drmih
1st October 2009, 00:04
duplicate posting

Capsbackup
1st October 2009, 00:04
Standard AC3 or WAV can't be used for secondary audio. Only Dolby Digital Plus or DTS Express are accepted. I'm not sure if there is a freeware AC3 Plus encode out there...

Oh well, wishful thinking. :p

nelly09
1st October 2009, 03:41
[22:04:11] BD Rebuilder v0.30.01 (beta)
- Source: LOGICAL_VOLUME_ID
- Input BD size: 20.92 GB
- Approximate total content: [01:43:59.983]
- Target BD size: 22.46 GB
- Windows Version: 6.1 [7600]
- MOVIE-ONLY mode enabled
- Audio Settings: AC3=1 DTS=1 HD=0 Kbs=640
[22:04:11] PHASE ONE, Encoding
- [22:04:11] Extracting A/V streams [VID_00009]
- Error in attempt to extract audio/subs.
- AV frame too large (60005 bytes). Increase AV buffer.
[22:08:48] - Failed to retrieve audio, abort

any help with this? the movie is invincible, tried to do a movie only to bd25, highest quality, didnt change any other settings

tooch22
1st October 2009, 03:59
I have an LG Blu-ray standalone player. I have been burning movie only DVD-9's that can play on computers and PS3 for the whole summer but none of them worked on the LG. Until the .30.01 release then the LG could play them, but they ran into an error about 20mins in to 3 different movies compiled under both .30.01 and 30.02 all three movies had the same error. which is that they would freeze. you can't skip over this freeze either its like the whole end of the movie is unreadable to the LG. all three of these movies play perfectly on Computers and PS3. Thanks for the great program and you're hard work.

Dan Donatucci

setarip_old
1st October 2009, 06:34
@tooch22 Hi!all three of these movies play perfectly on Computers and PS3.If by this you mean that all three burned discs play on computers and your PS3, I'd suggest you try running a DVD/CD cleaning disc on your standalone player...

Aratar
1st October 2009, 10:12
Standard AC3 or WAV can't be used for secondary audio. Only Dolby Digital Plus or DTS Express are accepted. I'm not sure if there is a freeware AC3 Plus encode out there...

Nope, otherwise I'd have already suggested to reencode to ddp a while ago :/

Kakashi Sensei
1st October 2009, 13:35
I came across the same problem for some reason as Nelly09 and others with the extract audio issue. But I think i know what happened at least in my case. I stopped the encode early to do something else on my PC. When i restarted the encode right away the same M2TS fails with the above error. What seems to happen is that tsmuxer.exe isn't closed properly and holds the file in the system so BD rebuilder can't reopen it again. Just ending the process in task manager then the re-encode was able to continue.

Hope this helps other people.

Furiousflea
1st October 2009, 17:48
Unfortunately there is no way right now to demux DTS-Express, which is what is used for DTS secondary audio. TSMUXER rejects it.

You mean mux, not demux right. EAC3To can demux it.

Furiousflea
1st October 2009, 17:54
Standard AC3 or WAV can't be used for secondary audio. Only Dolby Digital Plus or DTS Express are accepted. I'm not sure if there is a freeware AC3 Plus encoder out there...

The Day The Earth Stood Still (2008 version) uses standard AC3 for the PiP track :)

jdobbs
1st October 2009, 19:04
You mean mux, not demux right. EAC3To can demux it. Yeah, but since I use TSMUXER for both it's six of one and a half-dozen of the other. :)

jdobbs
1st October 2009, 19:09
The Day The Earth Stood Still (2008 version) uses standard AC3 for the PiP track :) Then it's out of spec... it has to be DD-Plus or DTS-HD LBR (Express). Are you looking at the original or a backup? It's possible that the backup (since it uses TSMUXER) is DD-Plus but is showing up as AC3 because it isn't using the higher PID that is normally associated with secondary audio.

[Edit] I just looked at my copy of the original -- and there is no secondary audio at all, only secondary video.

Nav1
1st October 2009, 19:27
I have to wait 5 days before I can post. Hi everyone. Jdobbs first I want to say very nice program. Question for you jdobbs. I am using Bd rebuilder 8 month now. Started using older versions 20.03 and upgrading to newer versions. Some way along versions 20.09 to 24.01 not sure which versions everything started working fine. I have 14 blu ray movies which I rebuild to BD5,than burn with Img and than play on Sony blu ray player. It was superb video quality and sound no distortion at all. And each movie took to rebuild about 7 hours (Movie Only).Since I upgrading to newer versions and now I have 30.02.There is a bug.When it finish rebuild I burn with Img and than play on Sony blu ray player somewhere along the movie the video Freeze and audio is running in the background. Never happen with older versions. Is there a way I can download the older versions to test again. Because when I download the older versions and install on my PC it says "This beta has expired. Please upgrade to a newer versions" Any suggestion Jdobbs. Thanks.

Here’s the list of blu ray movies I rebuild to BD5 (Older Versions)
Valkyrie
Pink Panther
The Code
My Bloody Valentine
Push
Underworld
International
Defiance
Wanted
Friday The 13th
Yesman
The Spirit
Seven Pounds
Body Of Lies

drmih
1st October 2009, 19:41
Then it's out of spec... it has to be DD-Plus or DTS-HD LBR (Express). Are you looking at the original or a backup? It's possible that the backup (since it uses TSMUXER) is DD-Plus but is showing up as AC3 because it isn't using the higher PID that is normally associated with secondary audio.

[Edit] I just looked at my copy of the original -- and there is no secondary audio at all, only secondary video.

Has it ever been tried as non-conformant? At present you either keep 'silent' PiP or exclude it. I'm guessing that PCs may well handle non-conformant streams and perhaps even some SAPs. I know it's a bit sloppy but a beta which worked on some systems with AC3 as a second audio would surely be preferable to not at all, particularly if there is unlikely to be any movement on a freeware solution in the near future.

drmih
1st October 2009, 19:42
The Day The Earth Stood Still (2008 version) uses standard AC3 for the PiP track :)

A stupid question but does the redone version actually work re: 2nd audio stream as ac3.

jdobbs
1st October 2009, 19:57
Has it ever been tried as non-conformant? At present you either keep 'silent' PiP or exclude it. I'm guessing that PCs may well handle non-conformant streams and perhaps even some SAPs. I know it's a bit sloppy but a beta which worked on some systems with AC3 as a second audio would surely be preferable to not at all, particularly if there is unlikely to be any movement on a freeware solution in the near future. It doesn't matter. I won't write a program that (knowingly) creates non-compliant streams... I'll leave that to the hackers.

My plan is to demux/remux them myself if nothing else comes along soon. But I want to avoid having to do so if possible.

jdobbs
1st October 2009, 19:59
I have to wait 5 days before I can post. Hi everyone. Jdobbs first I want to say very nice program. Question for you jdobbs. I am using Bd rebuilder 8 month now. Started using older versions 20.03 and upgrading to newer versions. Some way along versions 20.09 to 24.01 not sure which versions everything started working fine. I have 14 blu ray movies which I rebuild to BD5,than burn with Img and than play on Sony blu ray player. It was superb video quality and sound no distortion at all. And each movie took to rebuild about 7 hours (Movie Only).Since I upgrading to newer versions and now I have 30.02.There is a bug.When it finish rebuild I burn with Img and than play on Sony blu ray player somewhere along the movie the video Freeze and audio is running in the background. Never happen with older versions. Is there a way I can download the older versions to test again. Because when I download the older versions and install on my PC it says "This beta has expired. Please upgrade to a newer versions" Any suggestion Jdobbs. Thanks.

Here’s the list of blu ray movies I rebuild to BD5 (Older Versions)
Valkyrie
Pink Panther
The Code
My Bloody Valentine
Push
Underworld
International
Defiance
Wanted
Friday The 13th
Yesman
The Spirit
Seven Pounds
Body Of Lies I put that timeout in specifically to keep people from using older versions. This is a beta test. It doesn't make a lot of sense to test versions that are months old... if you have a bug, report it. By the way, I have a Sony Player also -- and I've not seen any problems like this. Are you sure your burner is good? Discs?

You haven't really given me anything to work with as far as helping you. Are you doing movie-only? Full? What specific disc is causing the issue? What settings are you using?

I'm sorry, and I really don't want to be rude, but this is a beta test -- I need information so I can fix current versions, not requests for old ones (which, by the way, have Bugs that have since been fixed).

Nav1
1st October 2009, 20:58
Thanks for the quick reply. I'm doing movies only and the burner is Lite-on. The only setting I did in ffdshow is Mpeg2 enable and VC1 disable. The movies I have problem is Crank2 (High Voltage) and Battle of Terra is animation. PS I also disable in ffdshow WMV 1/7 WMV 2/8 WMV 3/9 is that correct. No setting change in BD Rebuilder.

turbojet
1st October 2009, 21:18
Hmmm... I meant for it to work that way -- but I missed it. I planned for movie-only to BD-5/9 to be written as AVCHD. Right now it outputs as "--avchd" only when "Strict" is selected" (which is on by default). I'll fix it and put out a quick release.

Thanks for the new version

Are you positive about the players, even with the new settings? The whole purpose of the new setting was to make it compatible across more players.

Ya I've still been keeping up with that database and while the audio formats matter in powerdvd/windvd, empty directories have a lot more to do with playability as weird as it sounds.

A wild guess but could the newly reported freeze problems have something to do with x264's --slices or new --nal-hrd implementation as opposed to tsmuxer's nal-hrd?

Also any news on BDSup2Sub? TSMuxer sub resizing success rate is decresing greatly for me on newer titles.

DGenerateKane
2nd October 2009, 02:54
I'm having trouble with Pirates of the Caribbean Dead Man's Chest. It always fails encoding at the same spot. I've ripped it multiple times with the last three stable versions of AnyDVD HD, and have tried two versions of BD-RE. Anyone know what my problem is? I know others have been successful so I'm hoping whatever my problem is can be fixed easily.

[23:10:23] BD Rebuilder v0.30.02 (beta)
- Source: PIRATES2
- Input BD size: 39.87 GB
- Approximate total content: [03:31:26.089]
- Target BD size: 22.46 GB
- Windows Version: 6.1 [7600]
- Audio Settings: AC3=0 DTS=0 HD=1 Kbs=640
[23:10:26] PHASE ONE, Encoding
- [23:10:26] Extracting A/V streams [VID_00002]
- [23:10:26] Reencoding: VID_00002 (1 of 18)
- [23:10:26] Collecting video information
- Video: 1920x1080, 23.976fps, 24 frames
- Bitrate: 500 Kbs
- [23:10:26] Reencoding: VID_00002, Pass 1 of 2
- [23:10:27] Reencoding: VID_00002, Pass 2 of 2
- [23:10:27] Video Encode complete
- [23:10:27] Reencoding audio tracks (if req'd)
- [23:10:27] Multiplexing M2TS
- [23:10:28] Extracting A/V streams [VID_00013]
- [23:10:29] Reencoding: VID_00013 (2 of 18)
- [23:10:29] Collecting video information
- Video: 1920x1080, 23.976fps, 217 frames
- [23:10:29] Reencoding: VID_00013, Pass 1 of 1
- [23:10:33] Video Encode complete
- [23:10:33] Reencoding audio tracks (if req'd)
- [23:10:33] Multiplexing M2TS
- [23:10:33] Extracting A/V streams [VID_00019]
- [23:10:34] Reencoding: VID_00019 (3 of 18)
- [23:10:34] Collecting video information
- Video: 1920x1080, 23.976fps, 298 frames
- [23:10:34] Reencoding: VID_00019, Pass 1 of 1
- [23:10:41] Video Encode complete
- [23:10:41] Reencoding audio tracks (if req'd)
- [23:10:41] Multiplexing M2TS
- [23:10:41] Extracting A/V streams [VID_00027]
- [23:10:42] Reencoding: VID_00027 (4 of 18)
- [23:10:42] Collecting video information
- Video: 1920x1080, 23.976fps, 393 frames
- [23:10:42] Reencoding: VID_00027, Pass 1 of 1
- [23:10:50] Video Encode complete
- [23:10:50] Reencoding audio tracks (if req'd)
- [23:10:50] Multiplexing M2TS
- [23:10:51] Extracting A/V streams [VID_00024]
- [23:10:53] Reencoding: VID_00024 (5 of 18)
- [23:10:53] Collecting video information
- Video: 1920x1080, 23.976fps, 1,689 frames
- [23:10:53] Reencoding: VID_00024, Pass 1 of 1
- [23:11:25] Video Encode complete
- [23:11:25] Reencoding audio tracks (if req'd)
- [23:11:25] Multiplexing M2TS
- [23:11:27] Extracting A/V streams [VID_00018]
- [23:11:29] Reencoding: VID_00018 (6 of 18)
- [23:11:29] Collecting video information
- Video: 1920x1080, 23.976fps, 1,176 frames
- [23:11:29] Reencoding: VID_00018, Pass 1 of 1
- [23:11:50] Video Encode complete
- [23:11:50] Reencoding audio tracks (if req'd)
- [23:11:50] Multiplexing M2TS
- [23:11:52] Extracting A/V streams [VID_00026]
- [23:11:54] Reencoding: VID_00026 (7 of 18)
- [23:11:54] Collecting video information
- Video: 1920x1080, 23.976fps, 1,537 frames
- [23:11:54] Reencoding: VID_00026, Pass 1 of 1
- [23:12:28] Video Encode complete
- [23:12:28] Reencoding audio tracks (if req'd)
- [23:12:28] Multiplexing M2TS
- [23:12:29] Extracting A/V streams [VID_00010]
- [23:12:32] Reencoding: VID_00010 (8 of 18)
- [23:12:32] Collecting video information
- Video: 1920x1080, 23.976fps, 3,057 frames
- [23:12:32] Reencoding: VID_00010, Pass 1 of 1
- [23:13:19] Video Encode complete
- [23:13:19] Reencoding audio tracks (if req'd)
- [23:13:19] Multiplexing M2TS
- [23:13:21] Extracting A/V streams [VID_00022]
- [23:13:24] Reencoding: VID_00022 (9 of 18)
- [23:13:24] Collecting video information
- Video: 1920x1080, 23.976fps, 2,160 frames
- [23:13:24] Reencoding: VID_00022, Pass 1 of 1
- [23:14:02] Video Encode complete
- [23:14:02] Reencoding audio tracks (if req'd)
- [23:14:02] Multiplexing M2TS
- [23:14:04] Extracting A/V streams [VID_00012]
- [23:14:07] Reencoding: VID_00012 (10 of 18)
- [23:14:07] Collecting video information
- Video: 1920x1080, 23.976fps, 1,824 frames
- [23:14:07] Reencoding: VID_00012, Pass 1 of 1
- [23:14:41] Video Encode complete
- [23:14:41] Reencoding audio tracks (if req'd)
- [23:14:41] Multiplexing M2TS
- [23:14:44] Extracting A/V streams [VID_00021]
- [23:14:48] Reencoding: VID_00021 (11 of 18)
- [23:14:48] Collecting video information
- Video: 1920x1080, 23.976fps, 3,599 frames
- [23:14:48] Reencoding: VID_00021, Pass 1 of 1
- [23:16:04] Video Encode complete
- [23:16:04] Reencoding audio tracks (if req'd)
- [23:16:04] Multiplexing M2TS
- [23:16:07] Extracting A/V streams [VID_00017]
- [23:16:13] Reencoding: VID_00017 (12 of 18)
- [23:16:13] Collecting video information
- Video: 1920x1080, 23.976fps, 3,697 frames
- [23:16:13] Reencoding: VID_00017, Pass 1 of 1
- [23:17:20] Video Encode complete
- [23:17:20] Reencoding audio tracks (if req'd)
- [23:17:20] Multiplexing M2TS
- [23:17:23] Extracting A/V streams [VID_00015]
- [23:17:31] Reencoding: VID_00015 (13 of 18)
- [23:17:31] Collecting video information
- Video: 1920x1080, 23.976fps, 3,586 frames
- [23:17:31] Reencoding: VID_00015, Pass 1 of 1
- [23:18:41] Video Encode complete
- [23:18:41] Reencoding audio tracks (if req'd)
- [23:18:41] Multiplexing M2TS
- [23:18:44] Extracting A/V streams [VID_00016]
- [23:18:52] Reencoding: VID_00016 (14 of 18)
- [23:18:52] Collecting video information
- Video: 1920x1080, 23.976fps, 3,612 frames
- [23:18:52] Reencoding: VID_00016, Pass 1 of 1
- [23:19:56] Video Encode complete
- [23:19:56] Reencoding audio tracks (if req'd)
- [23:19:56] Multiplexing M2TS
- [23:19:59] Extracting A/V streams [VID_00014]
- [23:20:07] Reencoding: VID_00014 (15 of 18)
- [23:20:07] Collecting video information
- Video: 1920x1080, 23.976fps, 3,683 frames
- [23:20:07] Reencoding: VID_00014, Pass 1 of 1
- [23:21:13] Video Encode complete
- [23:21:13] Reencoding audio tracks (if req'd)
- [23:21:13] Multiplexing M2TS
- [23:21:18] Extracting A/V streams [VID_00023]
- [23:21:35] Reencoding: VID_00023 (16 of 18)
- [23:21:35] Collecting video information
- Video: 1920x1080, 23.976fps, 14,173 frames
- [23:21:35] Reencoding: VID_00023, Pass 1 of 1
- [23:26:37] Video Encode complete
- [23:26:37] Reencoding audio tracks (if req'd)
- [23:26:37] Multiplexing M2TS
- [23:26:47] Extracting A/V streams [VID_00025]
- [23:27:38] Reencoding: VID_00025 (17 of 18)
- [23:27:38] Collecting video information
- Video: 1920x1080, 23.976fps, 42,717 frames
- [23:27:38] Reencoding: VID_00025, Pass 1 of 1
- [23:42:53] Video Encode complete
- [23:42:53] Reencoding audio tracks (if req'd)
- [23:42:53] Multiplexing M2TS
- [23:43:18] Extracting A/V streams [VID_00001]
- [23:52:14] Reencoding: VID_00001 (18 of 18)
- [23:52:14] Collecting video information
- Video: 1920x1080, 23.976fps, 216,720 frames
- Bitrate: 7,583 Kbs
- [23:52:14] Reencoding: VID_00001, Pass 1 of 2
- [23:52:14] Reencoding: VID_00001, Pass 2 of 2
- Encode failed. Retrying.
- Encode failed. Retrying.
- Reached retry limit. Aborting.
[23:55:17] - Failed video encode, aborted

jdobbs
2nd October 2009, 04:53
I'm having trouble with Pirates of the Caribbean Dead Man's Chest. It always fails encoding at the same spot. I've ripped it multiple times with the last three stable versions of AnyDVD HD, and have tried two versions of BD-RE. Anyone know what my problem is? I know others have been successful so I'm hoping whatever my problem is can be fixed easily.I'll check it out.

marius1
2nd October 2009, 15:33
[22:04:11] BD Rebuilder v0.30.01 (beta)
- Source: LOGICAL_VOLUME_ID
- Input BD size: 20.92 GB
- Approximate total content: [01:43:59.983]
- Target BD size: 22.46 GB
- Windows Version: 6.1 [7600]
- MOVIE-ONLY mode enabled
- Audio Settings: AC3=1 DTS=1 HD=0 Kbs=640
[22:04:11] PHASE ONE, Encoding
- [22:04:11] Extracting A/V streams [VID_00009]
- Error in attempt to extract audio/subs.
- AV frame too large (60005 bytes). Increase AV buffer.
[22:08:48] - Failed to retrieve audio, abort

any help with this? the movie is invincible, tried to do a movie only to bd25, highest quality, didnt change any other settings

I'm having the same problem with I Love You Man, except my log is missing the "AV frame too large" line.

By-Tor
2nd October 2009, 16:46
I'm having trouble with Pirates of the Caribbean Dead Man's Chest. It always fails encoding at the same spot. I've ripped it multiple times with the last three stable versions of AnyDVD HD, and have tried two versions of BD-RE. Anyone know what my problem is? I know others have been successful so I'm hoping whatever my problem is can be fixed easily.

[23:10:23] BD Rebuilder v0.30.02 (beta)
- Source: PIRATES2
- Input BD size: 39.87 GB
- Approximate total content: [03:31:26.089]
- Target BD size: 22.46 GB
- Windows Version: 6.1 [7600]
- Audio Settings: AC3=0 DTS=0 HD=1 Kbs=640
[23:10:26] PHASE ONE, Encoding
- [23:10:26] Extracting A/V streams [VID_00002]
- [23:10:26] Reencoding: VID_00002 (1 of 18)
- [23:10:26] Collecting video information
- Video: 1920x1080, 23.976fps, 24 frames
- Bitrate: 500 Kbs
- [23:10:26] Reencoding: VID_00002, Pass 1 of 2
- [23:10:27] Reencoding: VID_00002, Pass 2 of 2
- [23:10:27] Video Encode complete
- [23:10:27] Reencoding audio tracks (if req'd)
- [23:10:27] Multiplexing M2TS
- [23:10:28] Extracting A/V streams [VID_00013]
- [23:10:29] Reencoding: VID_00013 (2 of 18)
- [23:10:29] Collecting video information
- Video: 1920x1080, 23.976fps, 217 frames
- [23:10:29] Reencoding: VID_00013, Pass 1 of 1
- [23:10:33] Video Encode complete
- [23:10:33] Reencoding audio tracks (if req'd)
- [23:10:33] Multiplexing M2TS
- [23:10:33] Extracting A/V streams [VID_00019]
- [23:10:34] Reencoding: VID_00019 (3 of 18)
- [23:10:34] Collecting video information
- Video: 1920x1080, 23.976fps, 298 frames
- [23:10:34] Reencoding: VID_00019, Pass 1 of 1
- [23:10:41] Video Encode complete
- [23:10:41] Reencoding audio tracks (if req'd)
- [23:10:41] Multiplexing M2TS
- [23:10:41] Extracting A/V streams [VID_00027]
- [23:10:42] Reencoding: VID_00027 (4 of 18)
- [23:10:42] Collecting video information
- Video: 1920x1080, 23.976fps, 393 frames
- [23:10:42] Reencoding: VID_00027, Pass 1 of 1
- [23:10:50] Video Encode complete
- [23:10:50] Reencoding audio tracks (if req'd)
- [23:10:50] Multiplexing M2TS
- [23:10:51] Extracting A/V streams [VID_00024]
- [23:10:53] Reencoding: VID_00024 (5 of 18)
- [23:10:53] Collecting video information
- Video: 1920x1080, 23.976fps, 1,689 frames
- [23:10:53] Reencoding: VID_00024, Pass 1 of 1
- [23:11:25] Video Encode complete
- [23:11:25] Reencoding audio tracks (if req'd)
- [23:11:25] Multiplexing M2TS
- [23:11:27] Extracting A/V streams [VID_00018]
- [23:11:29] Reencoding: VID_00018 (6 of 18)
- [23:11:29] Collecting video information
- Video: 1920x1080, 23.976fps, 1,176 frames
- [23:11:29] Reencoding: VID_00018, Pass 1 of 1
- [23:11:50] Video Encode complete
- [23:11:50] Reencoding audio tracks (if req'd)
- [23:11:50] Multiplexing M2TS
- [23:11:52] Extracting A/V streams [VID_00026]
- [23:11:54] Reencoding: VID_00026 (7 of 18)
- [23:11:54] Collecting video information
- Video: 1920x1080, 23.976fps, 1,537 frames
- [23:11:54] Reencoding: VID_00026, Pass 1 of 1
- [23:12:28] Video Encode complete
- [23:12:28] Reencoding audio tracks (if req'd)
- [23:12:28] Multiplexing M2TS
- [23:12:29] Extracting A/V streams [VID_00010]
- [23:12:32] Reencoding: VID_00010 (8 of 18)
- [23:12:32] Collecting video information
- Video: 1920x1080, 23.976fps, 3,057 frames
- [23:12:32] Reencoding: VID_00010, Pass 1 of 1
- [23:13:19] Video Encode complete
- [23:13:19] Reencoding audio tracks (if req'd)
- [23:13:19] Multiplexing M2TS
- [23:13:21] Extracting A/V streams [VID_00022]
- [23:13:24] Reencoding: VID_00022 (9 of 18)
- [23:13:24] Collecting video information
- Video: 1920x1080, 23.976fps, 2,160 frames
- [23:13:24] Reencoding: VID_00022, Pass 1 of 1
- [23:14:02] Video Encode complete
- [23:14:02] Reencoding audio tracks (if req'd)
- [23:14:02] Multiplexing M2TS
- [23:14:04] Extracting A/V streams [VID_00012]
- [23:14:07] Reencoding: VID_00012 (10 of 18)
- [23:14:07] Collecting video information
- Video: 1920x1080, 23.976fps, 1,824 frames
- [23:14:07] Reencoding: VID_00012, Pass 1 of 1
- [23:14:41] Video Encode complete
- [23:14:41] Reencoding audio tracks (if req'd)
- [23:14:41] Multiplexing M2TS
- [23:14:44] Extracting A/V streams [VID_00021]
- [23:14:48] Reencoding: VID_00021 (11 of 18)
- [23:14:48] Collecting video information
- Video: 1920x1080, 23.976fps, 3,599 frames
- [23:14:48] Reencoding: VID_00021, Pass 1 of 1
- [23:16:04] Video Encode complete
- [23:16:04] Reencoding audio tracks (if req'd)
- [23:16:04] Multiplexing M2TS
- [23:16:07] Extracting A/V streams [VID_00017]
- [23:16:13] Reencoding: VID_00017 (12 of 18)
- [23:16:13] Collecting video information
- Video: 1920x1080, 23.976fps, 3,697 frames
- [23:16:13] Reencoding: VID_00017, Pass 1 of 1
- [23:17:20] Video Encode complete
- [23:17:20] Reencoding audio tracks (if req'd)
- [23:17:20] Multiplexing M2TS
- [23:17:23] Extracting A/V streams [VID_00015]
- [23:17:31] Reencoding: VID_00015 (13 of 18)
- [23:17:31] Collecting video information
- Video: 1920x1080, 23.976fps, 3,586 frames
- [23:17:31] Reencoding: VID_00015, Pass 1 of 1
- [23:18:41] Video Encode complete
- [23:18:41] Reencoding audio tracks (if req'd)
- [23:18:41] Multiplexing M2TS
- [23:18:44] Extracting A/V streams [VID_00016]
- [23:18:52] Reencoding: VID_00016 (14 of 18)
- [23:18:52] Collecting video information
- Video: 1920x1080, 23.976fps, 3,612 frames
- [23:18:52] Reencoding: VID_00016, Pass 1 of 1
- [23:19:56] Video Encode complete
- [23:19:56] Reencoding audio tracks (if req'd)
- [23:19:56] Multiplexing M2TS
- [23:19:59] Extracting A/V streams [VID_00014]
- [23:20:07] Reencoding: VID_00014 (15 of 18)
- [23:20:07] Collecting video information
- Video: 1920x1080, 23.976fps, 3,683 frames
- [23:20:07] Reencoding: VID_00014, Pass 1 of 1
- [23:21:13] Video Encode complete
- [23:21:13] Reencoding audio tracks (if req'd)
- [23:21:13] Multiplexing M2TS
- [23:21:18] Extracting A/V streams [VID_00023]
- [23:21:35] Reencoding: VID_00023 (16 of 18)
- [23:21:35] Collecting video information
- Video: 1920x1080, 23.976fps, 14,173 frames
- [23:21:35] Reencoding: VID_00023, Pass 1 of 1
- [23:26:37] Video Encode complete
- [23:26:37] Reencoding audio tracks (if req'd)
- [23:26:37] Multiplexing M2TS
- [23:26:47] Extracting A/V streams [VID_00025]
- [23:27:38] Reencoding: VID_00025 (17 of 18)
- [23:27:38] Collecting video information
- Video: 1920x1080, 23.976fps, 42,717 frames
- [23:27:38] Reencoding: VID_00025, Pass 1 of 1
- [23:42:53] Video Encode complete
- [23:42:53] Reencoding audio tracks (if req'd)
- [23:42:53] Multiplexing M2TS
- [23:43:18] Extracting A/V streams [VID_00001]
- [23:52:14] Reencoding: VID_00001 (18 of 18)
- [23:52:14] Collecting video information
- Video: 1920x1080, 23.976fps, 216,720 frames
- Bitrate: 7,583 Kbs
- [23:52:14] Reencoding: VID_00001, Pass 1 of 2
- [23:52:14] Reencoding: VID_00001, Pass 2 of 2
- Encode failed. Retrying.
- Encode failed. Retrying.
- Reached retry limit. Aborting.
[23:55:17] - Failed video encode, aborted



I had this problem doing that film and was advised to use DVDFAB HDDcrypter and it worked for me I had tried like you
doing various rips with no success until i used dvdfab, hope this helps ..... i think the posts where about 219 in forum

GaPony
2nd October 2009, 18:10
I put POTC 2 (Dead Man's Chest) in to run before going to bed last night and it completed without any issues.. Final output was 21.4gb.

-----------------------
[02:34:11] BD Rebuilder v0.30.02 (beta)
- Source: PIRATES2
- Input BD size: 39.87 GB
- Approximate total content: [03:31:26.089]
- Target BD size: 22.46 GB
- Windows Version: 5.1 [2600]
- Audio Settings: AC3=1 DTS=1 HD=1 Kbs=640
[02:34:13] PHASE ONE, Encoding
- [02:34:13] Extracting A/V streams [VID_00002]
- [02:34:14] Reencoding: VID_00002 (1 of 18)
- [02:34:14] Collecting video information
- Video: 1920x1080, 23.976fps, 24 frames
- Bitrate: 500 Kbs
- [02:34:14] Reencoding: VID_00002, Pass 1 of 2
- [02:34:15] Reencoding: VID_00002, Pass 2 of 2
- [02:34:15] Video Encode complete
- [02:34:15] Reencoding audio tracks (if req'd)
- [02:34:15] Multiplexing M2TS
- [02:34:16] Extracting A/V streams [VID_00013]
- [02:34:17] Reencoding: VID_00013 (2 of 18)
- [02:34:17] Collecting video information
- Video: 1920x1080, 23.976fps, 217 frames
- [02:34:17] Reencoding: VID_00013, Pass 1 of 1
- [02:34:21] Video Encode complete
- [02:34:21] Reencoding audio tracks (if req'd)
- [02:34:21] Multiplexing M2TS
- [02:34:21] Extracting A/V streams [VID_00019]
- [02:34:22] Reencoding: VID_00019 (3 of 18)
- [02:34:22] Collecting video information
- Video: 1920x1080, 23.976fps, 298 frames
- [02:34:22] Reencoding: VID_00019, Pass 1 of 1
- [02:34:28] Video Encode complete
- [02:34:28] Reencoding audio tracks (if req'd)
- [02:34:28] Multiplexing M2TS
- [02:34:29] Extracting A/V streams [VID_00027]
- [02:34:30] Reencoding: VID_00027 (4 of 18)
- [02:34:30] Collecting video information
- Video: 1920x1080, 23.976fps, 393 frames
- [02:34:30] Reencoding: VID_00027, Pass 1 of 1
- [02:34:38] Video Encode complete
- [02:34:38] Reencoding audio tracks (if req'd)
- [02:34:38] Multiplexing M2TS
- [02:34:38] Extracting A/V streams [VID_00024]
- [02:34:40] Reencoding: VID_00024 (5 of 18)
- [02:34:40] Collecting video information
- Video: 1920x1080, 23.976fps, 1,689 frames
- [02:34:40] Reencoding: VID_00024, Pass 1 of 1
- [02:35:12] Video Encode complete
- [02:35:12] Reencoding audio tracks (if req'd)
- [02:35:12] Multiplexing M2TS
- [02:35:13] Extracting A/V streams [VID_00018]
- [02:35:15] Reencoding: VID_00018 (6 of 18)
- [02:35:15] Collecting video information
- Video: 1920x1080, 23.976fps, 1,176 frames
- [02:35:15] Reencoding: VID_00018, Pass 1 of 1
- [02:35:36] Video Encode complete
- [02:35:36] Reencoding audio tracks (if req'd)
- [02:35:36] Multiplexing M2TS
- [02:35:37] Extracting A/V streams [VID_00026]
- [02:35:40] Reencoding: VID_00026 (7 of 18)
- [02:35:40] Collecting video information
- Video: 1920x1080, 23.976fps, 1,537 frames
- [02:35:40] Reencoding: VID_00026, Pass 1 of 1
- [02:36:12] Video Encode complete
- [02:36:12] Reencoding audio tracks (if req'd)
- [02:36:12] Multiplexing M2TS
- [02:36:13] Extracting A/V streams [VID_00010]
- [02:36:15] Reencoding: VID_00010 (8 of 18)
- [02:36:15] Collecting video information
- Video: 1920x1080, 23.976fps, 3,057 frames
- [02:36:15] Reencoding: VID_00010, Pass 1 of 1
- [02:37:02] Video Encode complete
- [02:37:02] Reencoding audio tracks (if req'd)
- [02:37:02] Multiplexing M2TS
- [02:37:03] Extracting A/V streams [VID_00022]
- [02:37:06] Reencoding: VID_00022 (9 of 18)
- [02:37:06] Collecting video information
- Video: 1920x1080, 23.976fps, 2,160 frames
- [02:37:06] Reencoding: VID_00022, Pass 1 of 1
- [02:37:44] Video Encode complete
- [02:37:44] Reencoding audio tracks (if req'd)
- [02:37:44] Multiplexing M2TS
- [02:37:45] Extracting A/V streams [VID_00012]
- [02:37:49] Reencoding: VID_00012 (10 of 18)
- [02:37:49] Collecting video information
- Video: 1920x1080, 23.976fps, 1,824 frames
- [02:37:49] Reencoding: VID_00012, Pass 1 of 1
- [02:38:22] Video Encode complete
- [02:38:22] Reencoding audio tracks (if req'd)
- [02:38:22] Multiplexing M2TS
- [02:38:24] Extracting A/V streams [VID_00021]
- [02:38:29] Reencoding: VID_00021 (11 of 18)
- [02:38:29] Collecting video information
- Video: 1920x1080, 23.976fps, 3,599 frames
- [02:38:29] Reencoding: VID_00021, Pass 1 of 1
- [02:39:42] Video Encode complete
- [02:39:42] Reencoding audio tracks (if req'd)
- [02:39:42] Multiplexing M2TS
- [02:39:44] Extracting A/V streams [VID_00017]
- [02:39:51] Reencoding: VID_00017 (12 of 18)
- [02:39:51] Collecting video information
- Video: 1920x1080, 23.976fps, 3,697 frames
- [02:39:51] Reencoding: VID_00017, Pass 1 of 1
- [02:40:56] Video Encode complete
- [02:40:56] Reencoding audio tracks (if req'd)
- [02:40:56] Multiplexing M2TS
- [02:40:59] Extracting A/V streams [VID_00015]
- [02:41:06] Reencoding: VID_00015 (13 of 18)
- [02:41:06] Collecting video information
- Video: 1920x1080, 23.976fps, 3,586 frames
- [02:41:06] Reencoding: VID_00015, Pass 1 of 1
- [02:42:15] Video Encode complete
- [02:42:15] Reencoding audio tracks (if req'd)
- [02:42:15] Multiplexing M2TS
- [02:42:18] Extracting A/V streams [VID_00016]
- [02:42:25] Reencoding: VID_00016 (14 of 18)
- [02:42:25] Collecting video information
- Video: 1920x1080, 23.976fps, 3,612 frames
- [02:42:25] Reencoding: VID_00016, Pass 1 of 1
- [02:43:27] Video Encode complete
- [02:43:27] Reencoding audio tracks (if req'd)
- [02:43:27] Multiplexing M2TS
- [02:43:30] Extracting A/V streams [VID_00014]
- [02:43:37] Reencoding: VID_00014 (15 of 18)
- [02:43:37] Collecting video information
- Video: 1920x1080, 23.976fps, 3,683 frames
- [02:43:37] Reencoding: VID_00014, Pass 1 of 1
- [02:44:43] Video Encode complete
- [02:44:43] Reencoding audio tracks (if req'd)
- [02:44:43] Multiplexing M2TS
- [02:44:45] Extracting A/V streams [VID_00023]
- [02:45:03] Reencoding: VID_00023 (16 of 18)
- [02:45:03] Collecting video information
- Video: 1920x1080, 23.976fps, 14,173 frames
- [02:45:03] Reencoding: VID_00023, Pass 1 of 1
- [02:49:52] Video Encode complete
- [02:49:52] Reencoding audio tracks (if req'd)
- [02:49:52] Multiplexing M2TS
- [02:49:58] Extracting A/V streams [VID_00025]
- [02:50:47] Reencoding: VID_00025 (17 of 18)
- [02:50:47] Collecting video information
- Video: 1920x1080, 23.976fps, 42,717 frames
- [02:50:47] Reencoding: VID_00025, Pass 1 of 1
- [03:05:13] Video Encode complete
- [03:05:13] Reencoding audio tracks (if req'd)
- [03:05:13] Multiplexing M2TS
- [03:05:31] Extracting A/V streams [VID_00001]
- [03:13:20] Reencoding: VID_00001 (18 of 18)
- [03:13:20] Collecting video information
- Video: 1920x1080, 23.976fps, 216,720 frames
- Bitrate: 8,489 Kbs
- [03:13:21] Reencoding: VID_00001, Pass 1 of 2
- [05:26:26] Reencoding: VID_00001, Pass 2 of 2
- [10:13:18] Video Encode complete
- [10:13:18] Reencoding audio tracks (if req'd)
- [10:13:18] Multiplexing M2TS
[10:23:03]PHASE ONE complete
[10:23:03]PHASE TWO - Rebuild Started
- [10:23:03] Rebuilding BD file Structure
[10:23:29] - Encode and Rebuild complete
- WORKFILES folder removed.
[10:23:29]JOB: PIRATES2 finished.

DGenerateKane
3rd October 2009, 12:05
I had this problem doing that film and was advised to use DVDFAB HDDcrypter and it worked for me I had tried like you
doing various rips with no success until i used dvdfab, hope this helps ..... i think the posts where about 219 in forum

Same problem at the same spot, wondering if there is a problem with the disc at this point.