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

ggtop
17th April 2016, 18:25
I'm curious myself. Therefore I started another encode right away.
log:----------------------
[04.17.16] BD Rebuilder v0.50.15
[18:57:05] Source: JUPITER_ASCENDING_00100
- Input BD size: 33,75 GB
- Approximate total content: [02:07:34.313]
- Windows Version: 6.1 [7601]
- MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
- Mode: xxx MP4 Container, 1920x1080, AutoGOP, AC3
- Quality: Good (Very Fast)
- Decoding/Frame serving: DirectShow
- Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[18:57:05] PHASE ONE, Encoding
- [18:57:05] Processing: VID_00042 (1 of 1)
- [18:57:05] Extracting A/V streams [VID_00042]
- [19:13:30] Reencoding video [VID_00042]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 23,976fps, 183.520 frames
- [19:13:30] Reencoding: VID_00042, Pass 1 of 1
Profile:caption=xxx MP4 Container, 1280x720, AutoGOP, AC3
vBitrate=2000
aBitrate=448
aType=0
vFormat=4
vKeyint=Auto
Sorry for the inconvience!!! Obviously the missing container type cType caused the stereo downmix. Copy & paste error in my custom profile.
I'm very sorry stealing your time. I will double-check handling errors on my side next time and hopefully avoid them.
AVS without cType specified:#Created by BD Rebuilder - v0.50.15
LoadPlugin("C:\Users\xxx\Documents\Software\BD_Rebuilder_V05014\tools\nicaudio.dll")
audio=NicDTSSource("00042.track_4354.dts")
audio = (AudioChannels(audio) > 2) ? MixAudio(GetChannel(audio, 1, 2), GetChannel(audio, 3, 3), 0.5858, 0.4142) : audio
ConvertAudioTo16bit(ResampleAudio(audio, 48000))

AVS WITH cType specified:#Created by BD Rebuilder - v0.50.15
LoadPlugin("C:\Users\xxx\Documents\Software\BD_Rebuilder_V05014\tools\nicaudio.dll")
audio=NicDTSSource("00042.track_4354.dts")
audio = (AudioChannels(audio) > 6) ? GetChannel(audio,1,2,3,4,7,8) : audio
ConvertAudioTo16bit(ResampleAudio(audio, 48000))
ggtop

jdobbs
17th April 2016, 20:14
Sorry for the inconvience. Obviously the missing cType caused the Stereo downmix. Copy & paste error in my custom profile.Yep. If you fail to specify a ctype it defaults to 0, which is iPod. Since the iPod only supports stereo output, all audio for that ctype is converted to stereo.

I should probably change the default to MKV.

wakko709
17th April 2016, 22:52
any word on mockingjay_2 now it happing with zero dark thirty

gonca
17th April 2016, 23:48
@wakko709
At one point or another I have used BD_RB on Pacific Rim, Mocking jay 2, and Zero Dark Thirty with no issues.
Perhaps the issue is on your end
Logs and settings would help establish where the problem lies

jdobbs
18th April 2016, 13:37
any word on mockingjay_2 now it happing with zero dark thirtyI got it and tested it. No problems at all.

palburn
18th April 2016, 17:43
Hi, have been on this forum for a number of years, butthis is my first post. Haved BD-Rebuilder prior to BD-RBV04904 and love the software. However, I have now got a problem, I cannot create a BD with Quick Play menus for tv series etc. I rarely use this feature but have done on occasions in the past with no problem. I am in process on converting to BDR a number of TV series but always fail on Menu creation. Currently running BD-RBV05014.
I attach log & ini. files. Have I missed something out of the config file or is this a bug? Any help would be gratefully recieved.

[Options]
VERSION=0.50.0.14
ENCODER=0
MODE=2
ENCODE_QUALITY=2
ONEPASS_ENCODING=0
AUTO_TWOPASSONLY=1
AUTO_QUALITY=0
AUDIO_TO_KEEP=eng;
SUBS_TO_KEEP=eng;
SD_CONVERT=0
OPEN_GOP=0
RESIZE_1080=0
RESIZE_1440=0
RESIZE_720=0
DEINTERLACE=1
SD_TO_1080=0
IGNORE_3D=0
CONVERT_WIDE=0
DTS_REENCODE=0
AC3_REENCODE=0
AC3_640=1
AC3_192=0
KEEP_HD_AUDIO=1
AUDIO_AMPLIFY=1.2
AUDIO_DRC=0
MENU_ACTIVE_COLOR=RED
DECODER=2
AVCHD=1
REMOVE_WORKFILES=1
REMOVE_OUTPUT=0
USE_FILTERS=0
BDMV_CERT_ONLY=0
IVTC_PULLDOWN=0
ASSUME_DVD_PAL=0
FRIMSOURCE=0
COMPLETION_BEEP=0
OUTPUT_SBS=0
NEROAAC=0
SUPTITLE=0
PGSTOSRT=0
AUDIO_TRACK_LIMIT=1
SUBTITLE_TRACK_LIMIT=1
CUSTOM_TARGET_SIZE=23500
TARGET_SIZE=23500
MENU_BACKGROUND=E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\Misc\menuback 2.jpg
MENU_AUDIO=E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\tools\blankclip\blank.ac3
IMPORT_THRESHOLD=15
QUICK_PLAY_THRESHOLD=10
MENU_AUTO_BACKGROUND=0
MENU_AUTO_DVDAUDIO=1
MENU_PLAY_SEQUENTIAL=0
MENU_START_WITH_MENU=1
IMPORT_LIMIT_LANG=0
IMPORT_KEEP_PLAYALL=0
[Paths]
WORKING_PATH=O:\THE--------- \BDR\
SOURCE_PATH=O:\THE----------- \BDR\IMPORTS\---------------\

log
----------------------
[15:32:24] Importing: THE_-------------------
- [15:32:31] Importing video file: (1 of 6)
- Collecting audio/video streams from source...
- Integrating into pseudo-BD structure...
- [15:36:45] Importing video file: (2 of 6)
- Collecting audio/video streams from source...
- Integrating into pseudo-BD structure...
- [15:41:04] Importing video file: (3 of 6)
- Collecting audio/video streams from source...
- Integrating into pseudo-BD structure...
- [15:45:20] Importing video file: (4 of 6)
- Collecting audio/video streams from source...
- Integrating into pseudo-BD structure...
- [15:49:41] Importing video file: (5 of 6)
- Collecting audio/video streams from source...
- Integrating into pseudo-BD structure...
- [15:53:52] Importing video file: (6 of 6)
- Collecting audio/video streams from source...
- Integrating into pseudo-BD structure...
- [15:58:16] Creating Quick-Play Menu...
- Encoding menu background...
- Building menu structure...
[15:58:23] Video import completed successfully.
----------------------
[04/16/16] BD Rebuilder v0.50.14
[15:59:11] Source: THE_-------------------
- Input BD size: 27.64 GB
- Approximate total content: [05:38:56.542]
- Target BD size: 22.95 GB
- Windows Version: 6.1 [7601]
- Quick-Play Reauthoring mode enabled
- Quality: High Quality (Default), Two Pass
- Decoding/Frame serving: X264/LAVF
- Audio Settings: AC3=0 DTS=0 HD=1 Kbs=640
[15:59:11] PHASE ONE, Encoding
- [15:59:11] Processing: VID_00001 (1 of 6)
- [15:59:11] Extracting A/V streams [VID_00001]
- [16:02:47] Reencoding video [VID_00001]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 25.000fps, 85,498 frames
- Bitrate: 7,369 Kbs
- [16:02:47] Reencoding: VID_00001, Pass 1 of 2
- [16:21:10] Reencoding: VID_00001, Pass 2 of 2
- [17:08:25] Video Encode complete
- [17:08:25] Processing audio tracks
- Track 4352 (und): Keeping original audio
- [17:08:25] Multiplexing M2TS
- [17:10:14] Processing: VID_00002 (2 of 6)
- [17:10:14] Extracting A/V streams [VID_00002]
- [17:13:36] Reencoding video [VID_00002]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 25.000fps, 80,693 frames
- Bitrate: 7,800 Kbs
- [17:13:36] Reencoding: VID_00002, Pass 1 of 2
- [17:31:42] Reencoding: VID_00002, Pass 2 of 2
- [18:19:48] Video Encode complete
- [18:19:48] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [18:19:48] Multiplexing M2TS
- [18:21:36] Processing: VID_00003 (3 of 6)
- [18:21:36] Extracting A/V streams [VID_00003]
- [18:24:42] Reencoding video [VID_00003]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 25.000fps, 85,125 frames
- Bitrate: 7,303 Kbs
- [18:24:42] Reencoding: VID_00003, Pass 1 of 2
- [18:43:27] Reencoding: VID_00003, Pass 2 of 2
- [19:31:36] Video Encode complete
- [19:31:36] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [19:31:36] Multiplexing M2TS
- [19:33:40] Processing: VID_00004 (4 of 6)
- [19:33:40] Extracting A/V streams [VID_00004]
- [19:37:11] Reencoding video [VID_00004]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 25.000fps, 85,125 frames
- Bitrate: 7,308 Kbs
- [19:37:11] Reencoding: VID_00004, Pass 1 of 2
- [19:55:42] Reencoding: VID_00004, Pass 2 of 2
- [20:46:18] Video Encode complete
- [20:46:18] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [20:46:18] Multiplexing M2TS
- [20:48:03] Processing: VID_00005 (5 of 6)
- [20:48:03] Extracting A/V streams [VID_00005]
- [20:51:23] Reencoding video [VID_00005]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 25.000fps, 84,079 frames
- Bitrate: 7,426 Kbs
- [20:51:24] Reencoding: VID_00005, Pass 1 of 2
- [21:08:45] Reencoding: VID_00005, Pass 2 of 2
- [22:00:10] Video Encode complete
- [22:00:10] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [22:00:10] Multiplexing M2TS
- [22:01:51] Processing: VID_00006 (6 of 6)
- [22:01:51] Extracting A/V streams [VID_00006]
- [22:05:27] Reencoding video [VID_00006]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 25.000fps, 87,880 frames
- Bitrate: 7,043 Kbs
- [22:05:27] Reencoding: VID_00006, Pass 1 of 2
- [22:25:51] Reencoding: VID_00006, Pass 2 of 2
- [23:19:39] Video Encode complete
- [23:19:39] Processing audio tracks
- Track 4352 (und): Keeping original audio
- [23:19:39] Multiplexing M2TS
[23:21:31]PHASE ONE complete
[23:21:31]PHASE TWO - Rebuild Started
- [23:21:31] Rebuilding BD file Structure
- [23:21:32] Creating Quick-Play Menu...
- Encoding menu background...
[23:21:37]ERROR: Failed quick menu creation. No menus.
[23:21:37] - Encode and Rebuild complete
- WORKFILES folder removed.
[23:21:38] JOB: THE_---------------------- finished.


[04/17/16] Checking System Settings
- BD-Rebuilder v0.50.14
- Windows Version: 6.1 [7601]
- Working Path Free Space: 686.33GB
- AVISYNTH Version: 2.6.0.6, Ok
- LAVFILTERS: Ok
- X264: Ok
- AFTEN: Ok
- FAAC: Ok
- MP4BOX: Ok
- WAVI: Ok
- TSMUXER: Ok
- FRIMEncode: Ok
- FRIMDecode: Ok
[04/17/16] Systems Settings Check complete

jdobbs
18th April 2016, 17:59
It failed in trying to encode the file below into an AVC stream:

E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\Misc\menuback 2.jpg

Are you sure it exists and it is a legal JPG file?

palburn
18th April 2016, 19:19
It failed in trying to encode the file below into an AVC stream:

E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\Misc\menuback 2.jpg

Are you sure it exists and it is a legal JPG file?

Absolutely sure and the path is correct. All I did was remove the default menu to a different folder tempoarily and substituted my own custom .jpg. I was wondering if this line from the config was the cause of the problem: MENU_AUTO_BACKGROUND=0. Should this be changed to "1" ?
Thanks JD for your quick reply.

RowanM
18th April 2016, 19:22
E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\Misc\menuback 2.jpg


There is a space a between "menuback" and the "2", is that correct?

If so then try putting quotes around the complete filename and that might help it.

Like:

"E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\Misc\menuback 2.jpg"

palburn
18th April 2016, 19:50
Cheers Rowan, will try that as well, as I'm following a suggestion from JD and changing the location of menu images to close to the root of a drive
I have just created a new folder at the root of the drive for backgound images for menus:BD Backgrounds as I wondered if the required .jpg was 6 levels down from the root, thus causing the problem.

jdobbs
18th April 2016, 20:33
There is a space a between "menuback" and the "2", is that correct?

If so then try putting quotes around the complete filename and that might help it.

Like:

"E:\Software\DVD & Video\Blu Ray\BD Rebuilder\BD-RBV05014\BD_Rebuilder\Misc\menuback 2.jpg"BD-RB does that automatically. I'm confident the menu system works correctly -- it's probably the feature I used most these days.

mparade
18th April 2016, 22:24
@jdobbs

Would it be possible to insert --frame-packing 4 in the X264 command line when creating TAB 3D output? This would help my new media tank to automatically recognize my 3D contents.

It would be really appreciated.

jdobbs
18th April 2016, 22:49
@jdobbs

Would it be possible to insert --frame-packing 4 in the X264 command line when creating TAB 3D output? This would help my new media tank to automatically recognize my 3D contents.

It would be really appreciated.No problem. I'll get it into the next release.

mparade
18th April 2016, 23:48
No problem. I'll get it into the next release.

Thank you very much.

Lathe
19th April 2016, 02:22
- [23:21:32] Creating Quick-Play Menu...
- Encoding menu background...
[23:21:37]ERROR: Failed quick menu creation. No menus.



I don't know if this is relevant to your situation, but whenever I use the Quick-Play deal, every time it goes to 'encode menu background' I get a prompt telling me something like an action is being called without the proper permission, or something like that. I just hit "ok" and it continues just fine. I also notice a similar prompt every time Avisynth is called. I THINK that it has something to do with the locations of the .exe's, but I honestly don't know...

jdobbs
19th April 2016, 02:29
I don't know if this is relevant to your situation, but whenever I use the Quick-Play deal, every time it goes to 'encode menu background' I get a prompt telling me something like an action is being called without the proper permission, or something like that. I just hit "ok" and it continues just fine. I also notice a similar prompt every time Avisynth is called. I THINK that it has something to do with the locations of the .exe's, but I honestly don't know...Hmm... I use this feature all the time and I've never gotten that. Can you capture the screen the next time you see it and let me see what it looks like?

Lathe
19th April 2016, 02:54
Hmm... I use this feature all the time and I've never gotten that. Can you capture the screen the next time you see it and let me see what it looks like?

Sho-nuff boss, will do it...

Lathe
20th April 2016, 01:55
Okay, here is the prompt I always get when I either use the Quick-Play import function (right after it says 'encoding menu background') or when Avisynth is called during encodes (resizing, etc...) I have no idea why and it doesn't really affect me much as long as I click 'ok' when the prompt occurs so that the program can continue.

jdobbs
20th April 2016, 02:38
Interesting. Are sure you're using the version of X264 that is included with BD-RB?

Flanker-B
20th April 2016, 19:11
Hello Everybody,

Does anyone know how to bypass this error? Or what the problem is. I saw that skylab has the same problem on page 328. But no one had respond to him.

The problem is that at the end of bd rebuilder. There occurs an error. "CopyDirStructure"

I poste the log with this message

Thanks in Advance,

Ronald

-----------------------
[13:18:41] BD Rebuilder v0.31.06 (beta)
- Source: BOURNE_ULTIMATUM_BLURAY
- Input BD size: 40,65 GB
- Approximate total content: [03:21:51.841]
- Target BD size: 22,46 GB
- Windows Version: 6.0 [6002]
- Audio Settings: AC3=0 DTS=0 HD=1 Kbs=640
[13:18:41] PHASE ONE, Encoding
- [13:18:41] Extracting A/V streams [VID_00082]
- [13:18:45] Reencoding: VID_00082 (1 of 21)
- [13:19:30] Extracting A/V streams [VID_00080]
- [13:19:35] Reencoding: VID_00080 (2 of 21)
- [13:20:25] Extracting A/V streams [VID_00113]
- [13:20:29] Reencoding: VID_00113 (3 of 21)
- [13:21:23] Extracting A/V streams [VID_00116]
- [13:21:28] Reencoding: VID_00116 (4 of 21)
- [13:22:25] Extracting A/V streams [VID_00118]
- [13:22:31] Reencoding: VID_00118 (5 of 21)
- [13:23:29] Extracting A/V streams [VID_00117]
- [13:23:35] Reencoding: VID_00117 (6 of 21)
- [13:24:45] Extracting A/V streams [VID_00112]
- [13:24:53] Reencoding: VID_00112 (7 of 21)
- [13:26:28] Extracting A/V streams [VID_00111]
- [13:26:36] Reencoding: VID_00111 (8 of 21)
- [13:28:28] Extracting A/V streams [VID_00119]
- [13:28:38] Reencoding: VID_00119 (9 of 21)
- [13:30:10] Extracting A/V streams [VID_00115]
- [13:30:18] Reencoding: VID_00115 (10 of 21)
- [13:31:44] Extracting A/V streams [VID_00114]
- [13:31:58] Reencoding: VID_00114 (11 of 21)
- [13:34:20] Extracting A/V streams [VID_00010]
- [13:34:35] Reencoding: VID_00010 (12 of 21)
- [13:37:00] Extracting A/V streams [VID_00395]
- [13:37:20] Reencoding: VID_00395 (13 of 21)
- [13:39:52] Extracting A/V streams [VID_00394]
- [13:40:13] Reencoding: VID_00394 (14 of 21)
- [13:42:48] Extracting A/V streams [VID_00399]
- [13:43:11] Reencoding: VID_00399 (15 of 21)
- [13:46:07] Extracting A/V streams [VID_00401]
- [13:46:31] Reencoding: VID_00401 (16 of 21)
- [13:49:20] Extracting A/V streams [VID_00400]
- [13:49:43] Reencoding: VID_00400 (17 of 21)
- [13:52:39] Extracting A/V streams [VID_00396]
- [13:53:02] Reencoding: VID_00396 (18 of 21)
- [13:56:09] Extracting A/V streams [VID_00397]
- [13:56:39] Reencoding: VID_00397 (19 of 21)
- [13:59:54] Extracting A/V streams [VID_00398]
- [14:00:20] Reencoding: VID_00398 (20 of 21)
- [14:03:45] Extracting A/V streams [VID_00009]
- [14:31:55] Reencoding: VID_00009 (21 of 21)
- [14:31:55] Reencoding secondary video [TRK_02]
- [15:01:49] Reencoding secondary video [TRK_03]
[03:11:30]PHASE ONE complete
[03:11:30]PHASE TWO - Rebuild Started
- [03:11:30] Rebuilding BD file Structure
- [03:11:30] CopyDirStructure() 00076 1200
- [07:54:10] CopyDirStructure() 00076 1200
- [07:54:11] CopyDirStructure() 00076 1200
- [07:54:12] CopyDirStructure() 00076 1200
- [07:54:12] CopyDirStructure() 00076 1200
[07:54:13] - Aborted at user request

This error happens to me since the last update, the only thing it happens only once and the gap is short!

jdobbs
20th April 2016, 20:14
That error (00076) is "Path not found". How long is the path you are using? A first guess might be that it is too long.

maximizer
20th April 2016, 21:01
@Flanker-B

You are using an old Beta version (v0.31.06) of BD Rebuilder. I suggest to update to Beta version v0.50.014...

jdobbs
20th April 2016, 22:51
Wow. I didn't even notice that. That's not just old -- it's 7 years ago old. That's really digging up old reports.

Lathe
21st April 2016, 04:34
Interesting. Are sure you're using the version of X264 that is included with BD-RB?

AFAIK, yes...

Is there any way for me to check...?

CV91913
21st April 2016, 05:59
Wow. I didn't even notice that. That's not just old -- it's 7 years ago old. That's really digging up old reports.

And, he's running Vista!

Sharc
21st April 2016, 17:08
AFAIK, yes...

Is there any way for me to check...?
Help => Inspect (Show settings)

jdobbs
21st April 2016, 17:31
AFAIK, yes...

Is there any way for me to check...?As Sharc said.

You only get this when the menu is encoding? You don't get it at any other time that X264 is executed?

jdobbs
21st April 2016, 17:40
@Lathe

I did some googling -- and it seems there are a few possible reasons for the error. The most common seems to be either a DLL that was changed by some other program installation, or a rights issue. But there are a bunch of other reported reasons too.

Just to eliminate the possiblity of a corrupt X264.EXE try going to this page (http://komisar.gin.by/) and download/rename the 32 and 64 bit versions and replace x264.exe and x264-64.exe in the tools folder.

MrVideo
21st April 2016, 20:43
And, he's running Vista!

Hey, I run XP (both 32bit and 64bit) as I have programs that will never be updated for Win7, or its later ilk. :D

Lathe
21st April 2016, 23:09
@Lathe

I did some googling -- and it seems there are a few possible reasons for the error. The most common seems to be either a DLL that was changed by some other program installation, or a rights issue. But there are a bunch of other reported reasons too.

Just to eliminate the possiblity of a corrupt X264.EXE try going to this page (http://komisar.gin.by/) and download/rename the 32 and 64 bit versions and replace x264.exe and x264-64.exe in the tools folder.

Thanks JD! No, the prompt doesn't show during regular encodes, whether 1 or 2 pass. I ALWAYS use the internal LAV / x264 filters. The ONLY time I see it is when it is going to encode the menu BACKGROUND, not the menu itself, and also when Avisynth is called like when there is a resize. Those are the only times I see that exact prompt, I think in both cases.

I will do what you say and let you know what happens. Like I say, it really isn't a big deal as long as I click the 'ok' prompt when it comes up, and then BDRB continues as normal.

CV91913
21st April 2016, 23:11
Hey, I run XP (both 32bit and 64bit) as I have programs that will never be updated for Win7, or its later ilk. :D
I still have XP on a laptop. I would not have commented had the OS been XP but, from my experience, Vista was a disaster. Ran it for about 2 weeks and then reverted.

MrVideo
22nd April 2016, 02:41
Where I worked last, which was part of a very large global corporation, they refused to install Vista.

jdobbs
22nd April 2016, 13:31
I installed Vista, and shortly thereafter uninstalled it. I then stayed with XP until Windows 7 came out.

jdobbs
22nd April 2016, 13:34
Thanks JD! No, the prompt doesn't show during regular encodes, whether 1 or 2 pass. I ALWAYS use the internal LAV / x264 filters. The ONLY time I see it is when it is going to encode the menu BACKGROUND, not the menu itself, and also when Avisynth is called like when there is a resize. Those are the only times I see that exact prompt, I think in both cases.

I will do what you say and let you know what happens. Like I say, it really isn't a big deal as long as I click the 'ok' prompt when it comes up, and then BDRB continues as normal.The only thing I can think of that is unique about encoding the menu background is the use of ImageSource() in AVISYNTH. But I can't see how that would result in an R6034 error in x264. More importantly -- I use it all the time and I've never seen it myself.

Sharc
22nd April 2016, 13:49
The only thing I can think of that is unique about encoding the menu background is the use of ImageSource() in AVISYNTH. But I can't see how that would result in an R6034 error in x264. More importantly -- I use it all the time and I've never seen it myself.
I have been using ImageSource() for creating test clips from .bmp files many times and never had a problem with x264.

mparade
22nd April 2016, 21:30
I have tried the multiprocess feature with complex filter chains.
As a result, I must tell it is a stupefying and essential feature of BD-RB very very useful mainly for filter chains that are either complex or cannot be used in MT mode. Multiprocess in automatic mode pushed my processor utilization up from 20-25% to 98-100% averagely. :thanks: jdobbs again...

Lathe
23rd April 2016, 22:28
The only thing I can think of that is unique about encoding the menu background is the use of ImageSource() in AVISYNTH. But I can't see how that would result in an R6034 error in x264. More importantly -- I use it all the time and I've never seen it myself.

Yeah, it sounds pretty much like it's narrowed down to when Avisynth is called from BDRB is when it happens. Perhaps if I try to re-DL Avisynth again from your 1st page, that might help.

No biggie, really. Just a prompt :)

Flanker-B
27th April 2016, 09:16
Wow. I didn't even notice that. That's not just old -- it's 7 years ago old. That's really digging up old reports.

I just quoted the report with the same error because I am receiving the same error with the lates version every time I try to rebuild a bluray. Everithing worked fine untill I switched my sata controller to AHCI instead of native ide mode because I got a SSD (from what I understood SSD's TRIM function requires AHCI).

PLUS bd rebulider seems to create some sort of almost endless loop when copying files so the result folders : D:\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BOURNE_ULTIM_G52\BDMV. Work files do contain all resulting files but sup files are not muxed back into m2ts.

And here is my error report
----------------------
[04.26.16] BD Rebuilder v0.50.14
[22:37:17] Source: BOURNE_ULTIM_G52
- Input BD size: 40,65 GB
- Approximate total content: [03:32:55.253]
- Target BD size: 22,95 GB
- Windows Version: 6.2 [9200]
- Quality: High Quality (Default), ABR
- Decoding/Frame serving: DirectShow
- Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[22:37:17] PHASE ONE, Encoding
- [22:37:17] Processing: VID_00009 (1 of 21)
- [22:37:17] Extracting A/V streams [VID_00009]
- [22:49:15] Reencoding video [VID_00009]
- [22:49:15] Reencoding secondary video [TRK_02]
- Encode failed. Aborting.
- BD-Rebuilder v0.50.14
- Windows Version: 6.2 [9200]
- Working Path Free Space: 223,61GB
- AVISYNTH Version: 2.6.0.6, Ok
- LAVFILTERS: Ok
- X264: Ok
- AFTEN: Ok
- FAAC: Ok
- MP4BOX: Ok
- WAVI: Ok
- TSMUXER: Ok
- FRIMEncode: Ok
- FRIMDecode: Ok
[23:10:57] - Failed video encode, aborted
----------------------
[04.26.16] BD Rebuilder v0.50.14
[23:11:00] Source: BOURNE_ULTIM_G52
- Input BD size: 40,65 GB
- Approximate total content: [03:32:55.253]
- Target BD size: 22,95 GB
- Windows Version: 6.2 [9200]
- Quality: High Quality (Default), ABR
- Decoding/Frame serving: DirectShow
- Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
- Resuming from previously started job.
[23:11:01] PHASE ONE, Encoding
- [23:11:01] Processing: VID_00009 (1 of 21)
- [23:11:01] Reencoding video [VID_00009]
- [23:11:01] Reencoding secondary video [TRK_02]
[23:11:04]PHASE ONE aborted by user request
----------------------
[04.26.16] BD Rebuilder v0.50.11
[23:17:08] Source: BOURNE_ULTIM_G52
- Input BD size: 40,65 GB
- Approximate total content: [03:32:55.253]
- Target BD size: 22,95 GB
- Windows Version: 6.1 [7601]
- Quality: High Quality (Default), Two Pass
- Decoding/Frame serving: X264/LAVF
- Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[23:17:08] PHASE ONE, Encoding
- [23:17:08] Processing: VID_00009 (1 of 21)
- [23:17:08] Extracting A/V streams [VID_00009]
- [23:28:49] Reencoding video [VID_00009]
- [23:28:49] Reencoding secondary video [TRK_02]
- [23:33:29] Reencoding secondary video [TRK_03]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 165.768 frames
- Bitrate: 18.108 Kbs
- [23:36:01] Reencoding: VID_00009, Pass 1 of 2
- [00:40:11] Reencoding: VID_00009, Pass 2 of 2
- [03:20:52] Video Encode complete
- [03:20:52] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- Track 6656 (eng): Keeping original audio
- [03:20:52] Multiplexing M2TS
- [03:30:07] Processing: VID_00010 (2 of 21)
- [03:30:07] Extracting A/V streams [VID_00010]
- [03:30:23] Reencoding video [VID_00010]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 22.245 frames
- Bitrate: 2.303 Kbs
- [03:30:23] Reencoding: VID_00010, Pass 1 of 2
- [03:31:14] Reencoding: VID_00010, Pass 2 of 2
- [03:34:10] Video Encode complete
- [03:34:10] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:34:10] Multiplexing M2TS
- [03:34:16] Processing: VID_00080 (3 of 21)
- [03:34:16] Extracting A/V streams [VID_00080]
- [03:34:22] Reencoding video [VID_00080]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 1.465 frames
- Bitrate: 5.851 Kbs
- [03:34:22] Reencoding: VID_00080, Pass 1 of 2
- [03:34:44] Reencoding: VID_00080, Pass 2 of 2
- [03:35:31] Video Encode complete
- [03:35:31] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:35:31] Multiplexing M2TS
- [03:35:35] Processing: VID_00082 (4 of 21)
- [03:35:35] Extracting A/V streams [VID_00082]
- [03:35:40] Reencoding video [VID_00082]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 1.296 frames
- Bitrate: 5.459 Kbs
- [03:35:40] Reencoding: VID_00082, Pass 1 of 2
- [03:35:59] Reencoding: VID_00082, Pass 2 of 2
- [03:36:39] Video Encode complete
- [03:36:39] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:36:39] Multiplexing M2TS
- [03:36:43] Processing: VID_00111 (5 of 21)
- [03:36:43] Extracting A/V streams [VID_00111]
- [03:36:50] Reencoding video [VID_00111]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 10.187 frames
- Bitrate: 2.269 Kbs
- [03:36:50] Reencoding: VID_00111, Pass 1 of 2
- [03:37:16] Reencoding: VID_00111, Pass 2 of 2
- [03:38:45] Video Encode complete
- [03:38:45] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:38:45] Multiplexing M2TS
- [03:38:49] Processing: VID_00112 (6 of 21)
- [03:38:49] Extracting A/V streams [VID_00112]
- [03:38:57] Reencoding video [VID_00112]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 8.981 frames
- Bitrate: 2.280 Kbs
- [03:38:57] Reencoding: VID_00112, Pass 1 of 2
- [03:39:21] Reencoding: VID_00112, Pass 2 of 2
- [03:40:55] Video Encode complete
- [03:40:55] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:40:55] Multiplexing M2TS
- [03:41:00] Processing: VID_00113 (7 of 21)
- [03:41:00] Extracting A/V streams [VID_00113]
- [03:41:06] Reencoding video [VID_00113]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 6.108 frames
- Bitrate: 2.289 Kbs
- [03:41:06] Reencoding: VID_00113, Pass 1 of 2
- [03:41:23] Reencoding: VID_00113, Pass 2 of 2
- [03:42:20] Video Encode complete
- [03:42:20] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:42:20] Multiplexing M2TS
- [03:42:25] Processing: VID_00114 (8 of 21)
- [03:42:25] Extracting A/V streams [VID_00114]
- [03:42:36] Reencoding video [VID_00114]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 19.380 frames
- Bitrate: 2.277 Kbs
- [03:42:36] Reencoding: VID_00114, Pass 1 of 2
- [03:43:28] Reencoding: VID_00114, Pass 2 of 2
- [03:46:28] Video Encode complete
- [03:46:28] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:46:28] Multiplexing M2TS
- [03:46:33] Processing: VID_00115 (9 of 21)
- [03:46:33] Extracting A/V streams [VID_00115]
- [03:46:42] Reencoding video [VID_00115]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 11.107 frames
- Bitrate: 2.269 Kbs
- [03:46:42] Reencoding: VID_00115, Pass 1 of 2
- [03:47:11] Reencoding: VID_00115, Pass 2 of 2
- [03:48:52] Video Encode complete
- [03:48:52] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:48:52] Multiplexing M2TS
- [03:48:57] Processing: VID_00116 (10 of 21)
- [03:48:57] Extracting A/V streams [VID_00116]
- [03:49:03] Reencoding video [VID_00116]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 6.625 frames
- Bitrate: 2.275 Kbs
- [03:49:03] Reencoding: VID_00116, Pass 1 of 2
- [03:49:21] Reencoding: VID_00116, Pass 2 of 2
- [03:50:22] Video Encode complete
- [03:50:22] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:50:22] Multiplexing M2TS
- [03:50:26] Processing: VID_00117 (11 of 21)
- [03:50:26] Extracting A/V streams [VID_00117]
- [03:50:33] Reencoding video [VID_00117]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 7.625 frames
- Bitrate: 2.256 Kbs
- [03:50:33] Reencoding: VID_00117, Pass 1 of 2
- [03:50:53] Reencoding: VID_00117, Pass 2 of 2
- [03:52:03] Video Encode complete
- [03:52:03] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:52:03] Multiplexing M2TS
- [03:52:08] Processing: VID_00118 (12 of 21)
- [03:52:08] Extracting A/V streams [VID_00118]
- [03:52:14] Reencoding video [VID_00118]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 7.397 frames
- Bitrate: 2.278 Kbs
- [03:52:14] Reencoding: VID_00118, Pass 1 of 2
- [03:52:33] Reencoding: VID_00118, Pass 2 of 2
- [03:53:39] Video Encode complete
- [03:53:39] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:53:39] Multiplexing M2TS
- [03:53:43] Processing: VID_00119 (13 of 21)
- [03:53:43] Extracting A/V streams [VID_00119]
- [03:53:50] Reencoding video [VID_00119]
- Source Video: MPEG-2, 720x480
- Rate/Length: 29,970fps, 10.346 frames
- Bitrate: 2.271 Kbs
- [03:53:50] Reencoding: VID_00119, Pass 1 of 2
- [03:54:16] Reencoding: VID_00119, Pass 2 of 2
- [03:55:44] Video Encode complete
- [03:55:44] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [03:55:44] Multiplexing M2TS
- [03:55:48] Processing: VID_00394 (14 of 21)
- [03:55:48] Extracting A/V streams [VID_00394]
- [03:56:04] Reencoding video [VID_00394]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 3.816 frames
- Bitrate: 13.821 Kbs
- [03:56:04] Reencoding: VID_00394, Pass 1 of 2
- [03:57:27] Reencoding: VID_00394, Pass 2 of 2
- [04:00:34] Video Encode complete
- [04:00:34] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:00:34] Multiplexing M2TS
- [04:00:43] Processing: VID_00395 (15 of 21)
- [04:00:43] Extracting A/V streams [VID_00395]
- [04:01:01] Reencoding video [VID_00395]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 3.744 frames
- Bitrate: 13.761 Kbs
- [04:01:01] Reencoding: VID_00395, Pass 1 of 2
- [04:02:25] Reencoding: VID_00395, Pass 2 of 2
- [04:05:47] Video Encode complete
- [04:05:47] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:05:47] Multiplexing M2TS
- [04:05:55] Processing: VID_00396 (16 of 21)
- [04:05:55] Extracting A/V streams [VID_00396]
- [04:06:13] Reencoding video [VID_00396]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 4.392 frames
- Bitrate: 13.823 Kbs
- [04:06:13] Reencoding: VID_00396, Pass 1 of 2
- [04:07:53] Reencoding: VID_00396, Pass 2 of 2
- [04:11:43] Video Encode complete
- [04:11:43] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:11:43] Multiplexing M2TS
- [04:11:52] Processing: VID_00397 (17 of 21)
- [04:11:52] Extracting A/V streams [VID_00397]
- [04:12:09] Reencoding video [VID_00397]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 4.680 frames
- Bitrate: 13.543 Kbs
- [04:12:09] Reencoding: VID_00397, Pass 1 of 2
- [04:13:52] Reencoding: VID_00397, Pass 2 of 2
- [04:17:57] Video Encode complete
- [04:17:57] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:17:57] Multiplexing M2TS
- [04:18:05] Processing: VID_00398 (18 of 21)
- [04:18:05] Extracting A/V streams [VID_00398]
- [04:18:27] Reencoding video [VID_00398]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 4.968 frames
- Bitrate: 13.731 Kbs
- [04:18:27] Reencoding: VID_00398, Pass 1 of 2
- [04:20:18] Reencoding: VID_00398, Pass 2 of 2
- [04:24:41] Video Encode complete
- [04:24:41] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:24:41] Multiplexing M2TS
- [04:24:49] Processing: VID_00399 (19 of 21)
- [04:24:49] Extracting A/V streams [VID_00399]
- [04:25:05] Reencoding video [VID_00399]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 4.008 frames
- Bitrate: 13.806 Kbs
- [04:25:05] Reencoding: VID_00399, Pass 1 of 2
- [04:26:35] Reencoding: VID_00399, Pass 2 of 2
- [04:30:06] Video Encode complete
- [04:30:06] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:30:06] Multiplexing M2TS
- [04:30:13] Processing: VID_00400 (20 of 21)
- [04:30:13] Extracting A/V streams [VID_00400]
- [04:30:29] Reencoding video [VID_00400]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 4.200 frames
- Bitrate: 13.677 Kbs
- [04:30:29] Reencoding: VID_00400, Pass 1 of 2
- [04:32:02] Reencoding: VID_00400, Pass 2 of 2
- [04:35:42] Video Encode complete
- [04:35:42] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:35:42] Multiplexing M2TS
- [04:35:49] Processing: VID_00401 (21 of 21)
- [04:35:49] Extracting A/V streams [VID_00401]
- [04:36:04] Reencoding video [VID_00401]
- Source Video: VC-1, 1920x1080
- Rate/Length: 23,976fps, 4.056 frames
- Bitrate: 13.742 Kbs
- [04:36:04] Reencoding: VID_00401, Pass 1 of 2
- [04:37:36] Reencoding: VID_00401, Pass 2 of 2
- [04:41:13] Video Encode complete
- [04:41:13] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- [04:41:13] Multiplexing M2TS
[04:41:20]PHASE ONE complete
[04:41:20]PHASE TWO - Rebuild Started
- [04:41:20] Rebuilding BD file Structure
- [04:41:20] CopyDirStructure() 00076 1200
- [10:04:30] CopyDirStructure() 00076 1200
- [10:04:31] CopyDirStructure() 00076 1200
- [10:04:31] CopyDirStructure() 00076 1200
- [10:04:32] CopyDirStructure() 00076 1200
- [10:04:32] CopyDirStructure() 00076 1200
- [10:04:33] CopyDirStructure() 00076 1200
- [10:04:33] CopyDirStructure() 00076 1200
- [10:04:33] CopyDirStructure() 00076 1200
[10:04:33] - Aborted per user request

jdobbs
27th April 2016, 16:03
I'd look for another source of your problem. BD-RB doesn't have the capability to tell it's on your computer and only create those problems there. There are thousands of other installations -- and it isn't doing it anywhere else.

Flanker-B
28th April 2016, 20:12
I'd look for another source of your problem. BD-RB doesn't have the capability to tell it's on your computer and only create those problems there. There are thousands of other installations -- and it isn't doing it anywhere else.

I know it's probably an issue on my end, but there are also a lot of other problem reports with some newer versions of Intel RST (Rapid Storage Technologies) drivers on some chipsets (like it can completely mess up windows update on windows 7 and 10).

jdobbs
28th April 2016, 23:52
I know it's probably an issue on my end, but there are also a lot of other problem reports with some newer versions of Intel RST (Rapid Storage Technologies) drivers on some chipsets (like it can completely mess up windows update on windows 7 and 10).There is no way that BD-RB can get into an endless loop creating folders -- unless your file system has issues. I can't fix your file system issues.

Lathe
29th April 2016, 05:22
There is no way that BD-RB can get into an endless loop creating folders -- unless your file system has issues. I can't fix your file system issues.

Geez JD...

I thought you could do anything... :cool:

KaraokeAmerica
29th April 2016, 05:27
There is no way that BD-RB can get into an endless loop creating folders -- unless your file system has issues. I can't fix your file system issues.

Slacker.....;)

veggav
30th April 2016, 02:16
Hey Jdobbs it has been some time since I used BD-Rebuilder for the last time and I was checking the changelog and considering a few things:

1. You added the possibility to output a Blu-Ray structure but the within the M2TS container you get h.265 HEVC, which reduces the filesize considerably. Since the UHD Blu-Ray uses h.265, do you think in the future would be possible to get full blu-ray backup, with menus and extras to play on UHD players but everything encoded with h265 HEVC?

2. I know I have posted this before but are we ever going to get an option to add a subtitle or audio stream to a full blu-ray backup?

3. I've seen BD-Rebuilder is able to convert several DVDs to Blu-ray, since the DVD Menu has nothing to do with the Blu-Ray structure, is that possible to keep? Does BD-Rebuilder creates a small menu to select the discs or something like it?

Thank you for your effort with this amazing software!

jdobbs
30th April 2016, 02:24
1. Hopefully, but there are still a lot of undefined requirements as to how HEVC will be included. So it still remains to be seen what might have to be done to make it compliant.

2. Don't know -- as it's really risky to start changing that sort of thing on a full backup.

3. The DVD menu is cludgy because there were such limitations in DVD -- often you'll find text (selections) built into the backdrop. So BD-RB creates a new menu when you import. You have an opportunity to edit the titles, and also choose a backdrop. BD-RB will attempt to pull the background audio from the first DVD being imported -- and if it doesn't have one, you can specify an AC3 stream to use as background audio.

There are also several hidden parameters you can play with (see HIDDENOPTS.TXT) to customize your import menus (like fonts, placement, and number of items per menu page). The number of individual items that can be imported into a single BD is virtually unlimited.

Lathe
30th April 2016, 05:54
2. I know I have posted this before but are we ever going to get an option to add a subtitle or audio stream to a full blu-ray backup?

Well, the easiest way to do that I think is to rip the Blu-ray, or whatever you are going to use as the source for BDRB, then using TSMuxer, simply add the audio or subtitle file that you want to add to what you have and re-render the BDMV folder, and then use the resulting folder (with your additional files added) to process through BDRB.

Ch3vr0n
30th April 2016, 14:07
Don't forget about 1. The protection mechanism still needs to be broken first. That's a hefty task, considering there's no official documentation. Dvdfab AFAIK said they're not going to bother, James @ RedFox said he'd look into adding support but guess to the documentation lack the entire mechanism needs to be reverse engineered.

Verstuurd vanaf mijn Nexus 5 met Tapatalk

jdobbs
30th April 2016, 14:49
Well, the easiest way to do that I think is to rip the Blu-ray, or whatever you are going to use as the source for BDRB, then using TSMuxer, simply add the audio or subtitle file that you want to add to what you have and re-render the BDMV folder, and then use the resulting folder (with your additional files added) to process through BDRB.There's a high probability of problems if you do that -- especially for discs using BD-J.

Lathe
1st May 2016, 01:49
There's a high probability of problems if you do that -- especially for discs using BD-J.

Oh, wasn't aware, sorry...

Lathe
2nd May 2016, 08:10
This is SO bloody annoying; I do NOT know what the heck I am doing wrong... And, I'm pretty sure this has happened before.

I imported 2 MKV files into BDRB so that they could be re-encoded into a proper BDMV format with a menu. After importing them into the 'Pseudo BDMV' structure, I bloody CHECKED to make sure that in the PINO.INF file that the AR adjustments were showing. The original AR for both MKV files are 2.35:1. BUT... BDRB just finished re-encoding the first file (2 passes, automatic setting) and darned if the resulting m2ts file isn't STILL in the same ratio!

I cannot for the life of me figure out why BDRB does not correct the AR and fill in the missing black borders when creating the new, re-encoded file...??? Here is what the PINO.INF file looks like:

[VideoAdjust]
00000=.AddBorders(0,88,0,88)

This is the BDRB log for the Import:

21:38:36] Importing BDs: IMPORTS
- Analyzing source playlists...
- Title Editing Dialog...
- Importing BD: Title01 [ 1 of 2]
- Importing Playlist 00000 [01:41:50.020]
- Importing BD: Title02 [ 2 of 2]
- Importing Playlist 00000 [01:47:48.712]
- Creating Quick-Play Menu...
- Encoding menu background...
- Building menu structure...
[21:42:52] Import completed successfully.

When importing the parent folders above, each one contains a BDMV, CERT, & PSEUDO folder (the last of which contains the VideoAdjust command) Why doesn't BDRB then 'see' and execute it?

I will attach a snapshot of the re-encoded m2ts MediaInfo file showing the NON-adjusted AR. It has clearly been re-encoded because the original file had 12 reframes, which my OPPO will not play (it will only play up to 7 with a 720 resolution, thus the reason for my re-encode, in addition to the 2.35:1 AR)

Here is the BDRB log through re-encoding the first file:

[05/01/16] BD Rebuilder v0.50.14
[21:47:14] Source: IMPORTS
- Input BD size: 20.45 GB
- Approximate total content: [03:29:39.274]
- Target BD size: 20.02 GB
- Windows Version: 6.2 [9200]
- Auto Quality: Better (Faster), Two Pass
- X264 Tweak(s) enabled [just deblock & qcomp for both passes ]
- Decoding/Frame serving: X264/LAVF
- Audio Settings: AC3=0 DTS=0 HD=1 Kbs=640
[21:47:15] PHASE ONE, Encoding
- [21:47:15] Processing: VID_00001 (1 of 2)
- [21:47:15] Extracting A/V streams [VID_00001]
- [21:49:25] Reencoding video [VID_00001]
- Source Video: MPEG-4 (AVC), 1280x720
- Rate/Length: 23.976fps, 146,494 frames
- Bitrate: 10,444 Kbs
- [21:49:25] Reencoding: VID_00001, Pass 1 of 2
- [22:32:00] Reencoding: VID_00001, Pass 2 of 2
- [23:35:07] Video Encode complete
- [23:35:07] Processing audio tracks
- Track 4352 (eng): Keeping original audio
- Track 4353 (und): Keeping original audio
- Track 4354 (und): Keeping original audio
- [23:35:07] Multiplexing M2TS

This is the IMPORTS.INF file:

[Status]
LABEL=IMPORTS
VERSION=v0.50.14
SOURCE_SIZE=21959123945
SOURCE_VIDEO_SIZE=21958606848
TARGET_SIZE=21495808000
REDUCTION=.978900485435751
RESIZE_1080=0
RESIZE_1440=0
AUDIO_TO_KEEP=eng;
KEEP_HD_AUDIO=-1
SUBS_TO_KEEP=eng;
BACKUP_MODE=0
MOVIEONLY_TYPE=0
USE_LAVF=-1
INSTANCES=1
DGDECNV=0
DGDECIM=0
FRIMSOURCE=0
FFMS2=0
SSIF_MODE=0
QUICK=1
ENCODE_STEP=1.5
COMPLETED=1
[00001]
AUDIO=111
PGS=011
APULLDOWN=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=9941672483
RATE=10444
SPLITS=1
NSTART=27000000
NEND=301950924
NSIZE=9710100480
FLINK=0
MLINK=0
[00002]
AUDIO=111
PGS=1
APULLDOWN=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=11785190423
RATE=11645
SPLITS=1

I should have known something was wrong, because as I mentioned here recently, anytime Avisynth is called I get that weird prompt, in other words any time any resizing is done. And in the 2 passes this time, I didn't get the prompt... so, it's like Avisynth was never called.

I sure wish I knew what the heck I must be doing wrong...