Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > (HD) DVD, Blu-ray & (S)VCD > DVD & BD Rebuilder
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 29th June 2016, 16:20   #24381  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
Quote:
Originally Posted by jdobbs View Post
Try using v0.50.14 so we can be sure.

I'll have to fix the forced sub issue since you should never get an error that stops processing. But, on the other hand, why would you ever select "Used SupTitle() for forced subs...", and then deselect all the subs?
I just tested it on my end. I can deselect all the subtitles on a disc with forced subs -- and it still completes fine. Can you give me more details as to your specific situation?
Quote:
After selecting a subtitle stream and marking as "Forced on" they are created successfully:
Code:
#Created by BD Rebuilder - v0.50.15
DirectshowSource("C:\USERS\xxx\VIDEOS\BD_ORIGINAL\TRUE_ROMANCE\BDMV\STREAM\00051.m2ts", fps=23.976, framecount=487, audio=false)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\SupTitle.dll")
SupTitle("C:\USERS\xxx\VIDEOS\BD_RB_WORK_3\WORKFILES\00051.track_4608.sup")
ConvertToYV12().AssumeFPS(24000,1001)
ggtop
I'm a little confused by the example you provided above. SupTitle, when used for forced subs, should only be applied against a .SUP ending in 9999, like this one (from my encode):
Code:
SupTitle("D:\WORKING4\WORKFILES\00001.track_9999.sup")
We are talking about forced subs, right?

[Edit] I've tried every combination I can think of, and I can't repeat the problem you've reported.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net

Last edited by jdobbs; 29th June 2016 at 17:06.
jdobbs is offline   Reply With Quote
Old 29th June 2016, 20:19   #24382  |  Link
Kerry56
Registered User
 
Join Date: Sep 2003
Location: West Texas
Posts: 32
Just a quick question. If you have some MKV files encoded to Blu-ray video specifications, can you Import them into BD Rebuilder and have it not re-encode them? Audio is plain AC3. I just want the menu and all of them put into a Blu-ray structure. Total size of input is approximately 11GB.

I tried this, but it started to re-encode them, ignoring the FORCE_NOENCODE=1 line. I admit I didn't keep it running long, so perhaps I jumped the gun?
Kerry56 is offline   Reply With Quote
Old 29th June 2016, 21:35   #24383  |  Link
ggtop
Registered User
 
Join Date: Mar 2003
Posts: 311
Let me try to shed light upon my situation

I really love the feature of BDRB to output movies as MP4, because I mainly stream them from mediaserver to TV via DLNA. That way I cannot use soft subs. I need them hard coded. BDRB 0.50.14 can hard-code the one (9999) that is present after extraction during encode using SUPTITLE() which is nearly perfect.
My feature request (and included in intermediate version 0.50.15 --> post: 23864) was the ability to hard-code any other subtitle track via right click [Forced on] for alternate output such as MP4. This is very convinient if none subtitle stream contains forced ones such as extras or streams which have "forced" ones only and therefore are not marked as forced. The alternative would be to add the suptitle lines manually in the AVS Editor:
Code:
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\SupTitle.dll")
SupTitle(....)
But this is not very convinient as you have to redo this for every encode respecting other paths and filenames.

Quote:
But, on the other hand, why would you ever select "Used SupTitle() for forced subs...", and then deselect all the subs?
Good question...my understanding of how it works for forced subs is/was that the creation of the 9999 file is fully controlled by setting FORCED_SUB_LANG=deu;ger; (in my case) and therefore the subtitle streams (enabled or disabled) are ignored anyway. Ignored means not not hard-coded.
If I do not select any stream I would expect the 9999 file getting hard-coded into the output.

I made some tests using 0.50.14/15:

source: Death Proof
Version: 0.50.14

AVS file for segment 00006 after 00005 has been processed successfully and audio conversion has been finalized:
Code:
#Created by BD Rebuilder - v0.50.14
DirectshowSource("C:\USERS\xxx\VIDEOS\BD_ORIGINAL\DEATH_PROOF_BD\BDMV\STREAM\00006.m2ts", fps=23.976, framecount=163504, audio=false)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\SupTitle.dll")
SupTitle("C:\USERS\xxx\VIDEOS\BD_RB_WORK_3\WORKFILES\00006.track_9999.sup")
ConvertToYV12().AssumeFPS(24000,1001)
Log file:
Code:
[06.29.16] BD Rebuilder v0.50.14
[20:44:15] Source:  DEATH_PROOF_BD_00021
  - Input BD size: 31,61 GB
  - Approximate total content: [01:53:44.234]
  - Windows Version: 6.1 [7601]
  - MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
  - Mode: My MP4 Container, 1920x1080, AutoGOP, AAC-256
  - Quality: High Quality (Default)
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[20:44:15] PHASE ONE, Encoding
 - [20:44:15] Processing: VID_00005 (1 of 2)
 - [20:44:15] Extracting A/V streams [VID_00005]
 - [20:55:00] Reencoding video [VID_00005]
   - Source Video: VC-1, 1920x1080
   - Rate/Length: 23,976fps, 114 frames
 - [20:55:00] Reencoding: VID_00005, Pass 1 of 1
 - [20:55:17] Video Encode complete
 - [20:55:17] Processing audio tracks
   - Track 4352 (deu): Reencoding audio to AAC...
 - [21:02:20] Processing: VID_00006 (2 of 2)
 - [21:02:20] Extracting A/V streams [VID_00006]
 - [21:14:57] Reencoding video [VID_00006]
   - Source Video: VC-1, 1920x1080
   - Rate/Length: 23,976fps, 163.504 frames
 - [21:14:57] Reencoding: VID_00006, Pass 1 of 1
[21:16:17]PHASE ONE aborted by user request
This works!

source: Death Proof
Version: 0.50.15

AVS file:
Code:
#Created by BD Rebuilder - v0.50.15
DirectshowSource("C:\USERS\xxx\VIDEOS\BD_ORIGINAL\DEATH_PROOF_BD\BDMV\STREAM\00005.m2ts", fps=23.976, framecount=114, audio=false)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\SupTitle.dll")
Log file:
Code:
[06.29.16] BD Rebuilder v0.50.15
[21:55:36] Source:  DEATH_PROOF_BD_00021
  - Input BD size: 31,61 GB
  - Approximate total content: [01:53:44.234]
  - Windows Version: 6.1 [7601]
  - MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
  - Mode: My MP4 Container, 1920x1080, AutoGOP, AAC-256
  - Quality: High Quality (Default)
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[21:55:36] PHASE ONE, Encoding
 - [21:55:36] Processing: VID_00005 (1 of 2)
 - [21:55:36] Extracting A/V streams [VID_00005]
 - [22:01:31] CreateAVS() 00000 
[22:02:23] - Could not create AVS file
Aborting!
Enabling the subtitle streams in stream window makes no difference. But it works if I set [Forced on] for a stream. I choe the 2nd as this one contains forced Subs only and is identical with the 9999 file.

avs file for segment 00005:
Code:
#Created by BD Rebuilder - v0.50.15
DirectshowSource("C:\USERS\xxx\VIDEOS\BD_ORIGINAL\DEATH_PROOF_BD\BDMV\STREAM\00005.m2ts", fps=23.976, framecount=114, audio=false)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\SupTitle.dll")
SupTitle("C:\USERS\xxx\VIDEOS\BD_RB_WORK_4\WORKFILES\00005.track_4609.sup")
ConvertToYV12().AssumeFPS(24000,1001)
avs file for segment 00006 after 00005 has been processed successfully and audio conversion has been finalized:
Code:
#Created by BD Rebuilder - v0.50.15
DirectshowSource("C:\USERS\xxx\VIDEOS\BD_ORIGINAL\DEATH_PROOF_BD\BDMV\STREAM\00006.m2ts", fps=23.976, framecount=163504, audio=false)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\SupTitle.dll")
SupTitle("C:\USERS\xxx\VIDEOS\BD_RB_WORK_4\WORKFILES\00006.track_4609.sup")
ConvertToYV12().AssumeFPS(24000,1001)
log file:
Code:
----------------------
[06.29.16] BD Rebuilder v0.50.15
[21:55:36] Source:  DEATH_PROOF_BD_00021
  - Input BD size: 31,61 GB
  - Approximate total content: [01:53:44.234]
  - Windows Version: 6.1 [7601]
  - MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
  - Mode: My MP4 Container, 1920x1080, AutoGOP, AAC-256
  - Quality: High Quality (Default)
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[21:55:36] PHASE ONE, Encoding
 - [21:55:36] Processing: VID_00005 (1 of 2)
 - [21:55:36] Extracting A/V streams [VID_00005]
 - [22:01:31] CreateAVS() 00000 
[22:02:23] - Could not create AVS file
----------------------
...
----------------------
[06.29.16] BD Rebuilder v0.50.15
[22:10:19] Source:  DEATH_PROOF_BD_00021
  - Input BD size: 31,61 GB
  - Approximate total content: [01:53:44.234]
  - Windows Version: 6.1 [7601]
  - MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
  - Mode: My MP4 Container, 1920x1080, AutoGOP, AAC-256
  - Quality: High Quality (Default)
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
- Resuming from previously started job.
[22:10:21] PHASE ONE, Encoding
 - [22:10:21] Processing: VID_00005 (1 of 2)
 - [22:10:21] Reencoding video [VID_00005]
   - Source Video: VC-1, 1920x1080
   - Rate/Length: 23,976fps, 114 frames
 - [22:10:21] Reencoding: VID_00005, Pass 1 of 1
 - [22:10:24] Video Encode complete
 - [22:10:24] Processing audio tracks
   - Track 4352 (deu): Reencoding audio to AAC...
 - [22:17:09] Processing: VID_00006 (2 of 2)
 - [22:17:09] Extracting A/V streams [VID_00006]
 - [22:29:06] Reencoding video [VID_00006]
   - Source Video: VC-1, 1920x1080
   - Rate/Length: 23,976fps, 163.504 frames
 - [22:29:06] Reencoding: VID_00006, Pass 1 of 1
[22:29:40]PHASE ONE aborted by user request
Obviously this behavior was introduced by my feature request

Quote:
I'm a little confused by the example you provided above. SupTitle, when used for forced subs, should only be applied against a .SUP ending in 9999, like this one (from my encode)
You are right. 0.50.14 cannot do this. Only the enhanced version 0.50.15 can do this via right click [Forced on] on a enabled Subtitle stream This overrides the usage of the 9999 file.

Long post. Still question marks in your face?

ggtop
Attached Images
     

Last edited by ggtop; 29th June 2016 at 21:40.
ggtop is offline   Reply With Quote
Old 30th June 2016, 00:16   #24384  |  Link
Peter_A
Registered User
 
Join Date: Feb 2014
Posts: 23
ERROR preparing intermediate audio

I receive the above error when trying to rebuild/compress a movie (for which I used DVDFab to remove Cinavia, so the audio track is modified from the original). The movie is Amour. Are there any tips to troubleshoot this? Thanks in advance.

Log file below.

----------------------
[06/29/16] BD Rebuilder v0.50.14
[05:52:26] Source: AMOUR_(CINAVIA_REMOVED)
- Input BD size: 30.40 GB
- Approximate total content: [02:07:21.633]
- Target BD size: 23.73 GB
- Windows Version: 6.1 [7601]
- Quality: Highest (Very Slow), Two Pass
- Decoding/Frame serving: DirectShow
- Audio Settings: AC3=0 DTS=1 HD=0 Kbs=640
[05:52:26] PHASE ONE, Encoding
- [05:52:26] Processing: VID_00001 (1 of 1)
- [05:52:26] Extracting A/V streams [VID_00001]
- Extracting video streams [VID_00001]
- Extracting audio streams [VID_00001]
- [06:17:05] Reencoding video [VID_00001]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 23.976fps, 183,216 frames
- Bitrate: 24,052 Kbs
- [06:17:05] Reencoding: VID_00001, Pass 1 of 2
- [06:52:09] Reencoding: VID_00001, Pass 2 of 2
- [10:02:46] Video Encode complete
- [10:02:47] Processing audio tracks
- Track 4352 (fra): Reencoding audio to AC3...
- ERROR preparing intermediate audio.
[10:02:48] - Failed to reencode audio, aborted
Peter_A is offline   Reply With Quote
Old 30th June 2016, 00:56   #24385  |  Link
Ch3vr0n
Registered User
 
Join Date: Jan 2009
Posts: 1,368
Tips? Yes, use the original source in bdrb. As per op, bug reports for preprocessed sources are not accepted. Running the source through dvdcrap first is just that. Bdrb FIRST, THEN dvdfab.
Ch3vr0n is offline   Reply With Quote
Old 30th June 2016, 04:57   #24386  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
Quote:
Originally Posted by Kerry56 View Post
Just a quick question. If you have some MKV files encoded to Blu-ray video specifications, can you Import them into BD Rebuilder and have it not re-encode them? Audio is plain AC3. I just want the menu and all of them put into a Blu-ray structure. Total size of input is approximately 11GB.

I tried this, but it started to re-encode them, ignoring the FORCE_NOENCODE=1 line. I admit I didn't keep it running long, so perhaps I jumped the gun?
If it is already compliant (and you know that definitely) -- just burn the pseudo-BD structure. You don't have to reencode.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net
jdobbs is offline   Reply With Quote
Old 30th June 2016, 05:00   #24387  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
Quote:
Originally Posted by Peter_A View Post
I receive the above error when trying to rebuild/compress a movie (for which I used DVDFab to remove Cinavia, so the audio track is modified from the original). The movie is Amour. Are there any tips to troubleshoot this? Thanks in advance.

Log file below.

----------------------
[06/29/16] BD Rebuilder v0.50.14
[05:52:26] Source: AMOUR_(CINAVIA_REMOVED)
- Input BD size: 30.40 GB
- Approximate total content: [02:07:21.633]
- Target BD size: 23.73 GB
- Windows Version: 6.1 [7601]
- Quality: Highest (Very Slow), Two Pass
- Decoding/Frame serving: DirectShow
- Audio Settings: AC3=0 DTS=1 HD=0 Kbs=640
[05:52:26] PHASE ONE, Encoding
- [05:52:26] Processing: VID_00001 (1 of 1)
- [05:52:26] Extracting A/V streams [VID_00001]
- Extracting video streams [VID_00001]
- Extracting audio streams [VID_00001]
- [06:17:05] Reencoding video [VID_00001]
- Source Video: MPEG-4 (AVC), 1920x1080
- Rate/Length: 23.976fps, 183,216 frames
- Bitrate: 24,052 Kbs
- [06:17:05] Reencoding: VID_00001, Pass 1 of 2
- [06:52:09] Reencoding: VID_00001, Pass 2 of 2
- [10:02:46] Video Encode complete
- [10:02:47] Processing audio tracks
- Track 4352 (fra): Reencoding audio to AC3...
- ERROR preparing intermediate audio.
[10:02:48] - Failed to reencode audio, aborted
Either Aften or AVISYNTH (via NicAudio) is catching an error in the audio encode -- which would imply that it is highly likely there is a problem in the source. I would suspect it is has something to do with the file DVDFab created -- but not having the source "suspect" is about as far as I can go.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net

Last edited by jdobbs; 30th June 2016 at 15:01.
jdobbs is offline   Reply With Quote
Old 30th June 2016, 05:09   #24388  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
@ggtop

Ok. I understand what you're doing. But I can do the same thing on the sources I'm using for testing and not get an error. That's the problem. Maybe if you post the contents of your BDREBUILDER.INI file I can try it with the exact same settings you are using and possibly repeat it. I don't have DEATH_PROOF, and with no donations for a year now I'm no longer buying discs just for testing, so I can't use that as a source.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net
jdobbs is offline   Reply With Quote
Old 30th June 2016, 06:40   #24389  |  Link
Kerry56
Registered User
 
Join Date: Sep 2003
Location: West Texas
Posts: 32
Quote:
Originally Posted by jdobbs View Post
If it is already compliant (and you know that definitely) -- just burn the pseudo-BD structure. You don't have to reencode.
Ok, thanks for the answer.
Kerry56 is offline   Reply With Quote
Old 30th June 2016, 08:39   #24390  |  Link
ggtop
Registered User
 
Join Date: Mar 2003
Posts: 311
Quote:
Originally Posted by jdobbs View Post
@ggtop

Ok. I understand what you're doing. But I can do the same thing on the sources I'm using for testing and not get an error. That's the problem. Maybe if you post the contents of your BDREBUILDER.INI file I can try it with the exact same settings you are using and possibly repeat it. I don't have DEATH_PROOF, and with no donations for a year now I'm no longer buying discs just for testing, so I can't use that as a source.
Hi jdobbs,

I made some more tests this morning and I think I can point you where it fails. Using 0.50.15 the setting FORCED_SUB_LANG=deu is not being populated into the inf file. The line is missing and very likely the reason the 9999 file is not created and present and therefore cannot be referenced in the AVS file.

Please be aware that this happens ONLY in multipart sources in which the mpls has more than 1 m2ts.

I also tried a playlist on my Death Proof BD that does not have the initail Trailer and for this one it worked.


I will collect the logs and inf files and post them in a few minutes.


ggtop

Last edited by ggtop; 30th June 2016 at 08:42.
ggtop is offline   Reply With Quote
Old 30th June 2016, 11:35   #24391  |  Link
Peter_A
Registered User
 
Join Date: Feb 2014
Posts: 23
Quote:
Originally Posted by Ch3vr0n View Post
Tips? Yes, use the original source in bdrb. As per op, bug reports for preprocessed sources are not accepted. Running the source through dvdcrap first is just that. Bdrb FIRST, THEN dvdfab.
Thanks for the "tip," however, that won't work. DVDFab needs the original source to remove Cinavia; it would not be detected otherwise.
I generally use DVDFab only to rip (and no other processing). In this case, however, it needs to be used also to remove the Cinavia.

In any case, I've done other titles with Cinavia in the same manner without issue; there seems just to be a problem with this title. The LPCM audio seems to play fine, via MPC-HC. My question was primarily if there were specific known issues in the audio stream that can cause that specific error. Maybe I'll try compressing in DVDFab and see if it works.
Peter_A is offline   Reply With Quote
Old 30th June 2016, 11:46   #24392  |  Link
Peter_A
Registered User
 
Join Date: Feb 2014
Posts: 23
Quote:
Originally Posted by jdobbs View Post
Either Aften or AVISYNTH (via NicAudio) is catching an error in the audio encode -- which would imply that it is highly likely there is a problem in the source. I would suspect it is has something to do with the file DVDFab created -- but not having the source "suspect" is about as far as I can go.
Thanks. That's pretty much what I figured. The audio (French, LPCM) does seem to play fine, through MPC-HC. I'll try to resize it in DVDFab (not my first choice, but it may be the only choice here).

Last edited by jdobbs; 30th June 2016 at 15:00.
Peter_A is offline   Reply With Quote
Old 30th June 2016, 19:25   #24393  |  Link
Kerry56
Registered User
 
Join Date: Sep 2003
Location: West Texas
Posts: 32
Quote:
Just a quick question. If you have some MKV files encoded to Blu-ray video specifications, can you Import them into BD Rebuilder and have it not re-encode them? Audio is plain AC3. I just want the menu and all of them put into a Blu-ray structure. Total size of input is approximately 11GB.

I tried this, but it started to re-encode them, ignoring the FORCE_NOENCODE=1 line. I admit I didn't keep it running long, so perhaps I jumped the gun?
Quote:
If it is already compliant (and you know that definitely) -- just burn the pseudo-BD structure. You don't have to reencode.
Just a heads up on the result. Original MKV's have perfect synchronization between video and audio. The pseudo-BD loses sync on several of the videos. I'll try another method for BD authoring, this just looked like a shortcut for a simple Blu-ray.
Kerry56 is offline   Reply With Quote
Old 30th June 2016, 22:32   #24394  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
There's gotta' be something wrong with your system. I've done hundreds of imports in testing and have never had one out of sync.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net
jdobbs is offline   Reply With Quote
Old 30th June 2016, 22:55   #24395  |  Link
ggtop
Registered User
 
Join Date: Mar 2003
Posts: 311
Quote:
I will collect the logs and inf files and post them in a few minutes.
A few minutes later...

This is the log for an encode using 0.50.15 for playlist 00006 (VID_00006 only):
Code:
[06.30.16] BD Rebuilder v0.50.15
[08:55:57] Source:  DEATH_PROOF_BD_00006
  - Input BD size: 31,60 GB
  - Approximate total content: [01:53:39.479]
  - Windows Version: 6.1 [7601]
  - MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
  - Mode: My MP4 Container, 1920x1080, AutoGOP, AAC-256
  - Quality: High Quality (Default)
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[08:55:57] PHASE ONE, Encoding
 - [08:55:57] Processing: VID_00006 (1 of 1)
 - [08:55:57] Extracting A/V streams [VID_00006]
 - [09:07:17] Reencoding video [VID_00006]
   - Source Video: VC-1, 1920x1080
   - Rate/Length: 23,976fps, 163.504 frames
 - [09:07:17] Reencoding: VID_00006, Pass 1 of 1
[09:17:04]PHASE ONE aborted by user request
Works!
inf file for this one:
Code:
[Status]
LABEL=DEATH_PROOF_BD
VERSION=v0.50.15
SOURCE_SIZE=33934872576
SOURCE_VIDEO_SIZE=33934872576
TARGET_SIZE=24641536000
REDUCTION=.726141992866283
RESIZE_1080=0
RESIZE_1440=0
AUDIO_TO_KEEP=deu;eng;ger;
KEEP_HD_AUDIO=0
SUBS_TO_KEEP=deu;eng;ger;
BACKUP_MODE=1
MOVIEONLY_TYPE=37
USE_LAVF=0
INSTANCES=1
DGDECNV=0
DGDECIM=0
FRIMSOURCE=0
FFMS2=0
SSIF_MODE=0
QUICK=0
ENCODE_STEP=1.5
FORCED_SUB_LANG=deu
REBUILD_COMPLETE=0
[00006]
AUDIO=1000
PGS=00
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=24641536000
SPLITS=1

What I have observed is the following:
BDRB processes VID_00005 first and therefore extracts playlist 00021: video part from 00005.m2ts and full audio and all subtiles from the playlist 00021. After those 00021* files are created they are renamed to 00005. The AVS file is created and BDRB quits with error "CreateAVS() 00000".
The 00005.track_9999.sup file is present at that time. Could it be that BDRB tries to put 00021.track_9999.sup into the AVS?

log file for the mutipart attempt:
Code:
----------------------
[06.30.16] BD Rebuilder v0.50.15
[23:48:15] Source:  DEATH_PROOF_BD_00021
  - Input BD size: 31,61 GB
  - Approximate total content: [01:53:44.234]
  - Windows Version: 6.1 [7601]
  - MOVIE-ONLY/ALTERNATE OUTPUT mode enabled
  - Mode: My MP4 Container, 1920x1080, AutoGOP, AAC-256
  - Quality: High Quality (Default)
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=0 Kbs=640
[23:48:15] PHASE ONE, Encoding
 - [23:48:15] Processing: VID_00005 (1 of 2)
 - [23:48:15] Extracting A/V streams [VID_00005]
 - [23:53:58] Reencoding video [VID_00005]
   - Source Video: VC-1, 1920x1080
   - Rate/Length: 23,976fps, 114 frames
 - [23:53:58] Reencoding: VID_00005, Pass 1 of 1
 - [23:54:01] Video Encode complete
 - [23:54:01] Processing audio tracks
   - Track 4352 (deu): Reencoding audio to AAC...
[23:57:23]PHASE ONE aborted by user request
inf file for this attempt:
Code:
[Status]
LABEL=DEATH_PROOF_BD
VERSION=v0.50.15
SOURCE_SIZE=33942312960
SOURCE_VIDEO_SIZE=33942312960
TARGET_SIZE=24641536000
REDUCTION=.725982817642372
RESIZE_1080=0
RESIZE_1440=0
AUDIO_TO_KEEP=deu;eng;ger;
KEEP_HD_AUDIO=0
SUBS_TO_KEEP=deu;eng;ger;
BACKUP_MODE=1
MOVIEONLY_TYPE=37
USE_LAVF=0
INSTANCES=1
DGDECNV=0
DGDECIM=0
FRIMSOURCE=0
FFMS2=0
SSIF_MODE=0
QUICK=0
ENCODE_STEP=3
REBUILD_COMPLETE=0
[00005]
AUDIO=1000
PGS=01
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=5401591
SPLITS=1
In my previous post I wrote that the setting FORCED_SUB_LANG=deu is not populated into the inf file. That only happens if I select a sub stream as [Forced on]. This is the expected behavior I guess I chose to prefer a complete stream instead of forced subs.
BTW After VID_00005 is processed I can stop the encoding and deselect subtitles and resume processing and BDRB uses 9999 file. THE AVS error only happens on the first "part". I can even delete the file 00006.track_9999.sup. It immediately gets recreated if all sub stream are disabled and I resume the Encoding. Just a side note.

ggtop

Last edited by ggtop; 30th June 2016 at 23:09.
ggtop is offline   Reply With Quote
Old 1st July 2016, 20:39   #24396  |  Link
Thaddäus
Registered User
 
Join Date: Jun 2016
Posts: 8
I've also got a curious problem which I'm not able to fix: I bought a new PC some months ago (Core i7 6700K, 16 GB RAM, Win 10 x64) and I can't get BD Rebuilder to work precisely.

The encoding-process works perfectly but as soon as it comes to Phase 2 there are problems most of the time. As an example here's the logfile of my attempt to use BD Rebuilder with "The Hateful 8" but it also happens with other BDs:

Code:
[06.30.16] BD Rebuilder v0.50.14
[17:33:59] Source:  HATEFUL_8
  - Input BD size: 42,21 GB
  - Approximate total content: [03:08:18.385]
  - Target BD size: 22,95 GB
  - Windows Version: 6.2 [9200]
  - Quality: Highest (Very Slow), Two Pass
  - Decoding/Frame serving: DirectShow
  - Audio Settings: AC3=0 DTS=0 HD=1 Kbs=640
[17:34:00] PHASE ONE, Encoding
 - [17:34:00] Processing: VID_00021 (1 of 5)
 - [17:34:00] Extracting A/V streams [VID_00021]
 - [17:47:36] Reencoding video [VID_00021]
   - Source Video: MPEG-4 (AVC), 1920x1080
   - Rate/Length: 23,976fps, 242.260 frames
   - Bitrate: 9.312 Kbs
 - [17:47:36] Reencoding: VID_00021, Pass 1 of 2
 - [18:20:09] Reencoding: VID_00021, Pass 2 of 2
 - [20:34:18] Video Encode complete
 - [20:34:18] Processing audio tracks
   - Track 4352 (deu): Keeping original audio
   - Track 4353 (eng): Keeping original audio
 - [20:34:18] Multiplexing M2TS
 - [20:39:51] Processing: VID_00101 (2 of 5)
 - [20:39:51] Extracting A/V streams [VID_00101]
 - [20:40:06] Reencoding video [VID_00101]
   - Source Video: MPEG-4 (AVC), 1920x1080
   - Rate/Length: 23,976fps, 7.166 frames
   - Bitrate: 7.194 Kbs
 - [20:40:06] Reencoding: VID_00101, Pass 1 of 2
 - [20:41:01] Reencoding: VID_00101, Pass 2 of 2
 - [20:44:37] Video Encode complete
 - [20:44:37] Processing audio tracks
   - Track 4352 (eng): Keeping original audio
 - [20:44:37] Multiplexing M2TS
 - [20:44:43] Processing: VID_00102 (3 of 5)
 - [20:44:43] Extracting A/V streams [VID_00102]
 - [20:45:04] Reencoding video [VID_00102]
   - Source Video: MPEG-4 (AVC), 1920x1080
   - Rate/Length: 23,976fps, 10.854 frames
   - Bitrate: 7.196 Kbs
 - [20:45:04] Reencoding: VID_00102, Pass 1 of 2
 - [20:46:26] Reencoding: VID_00102, Pass 2 of 2
 - [20:52:01] Video Encode complete
 - [20:52:01] Processing audio tracks
   - Track 4352 (eng): Keeping original audio
 - [20:52:01] Multiplexing M2TS
 - [20:52:09] Processing: VID_00103 (4 of 5)
 - [20:52:09] Extracting A/V streams [VID_00103]
 - [20:52:17] Reencoding video [VID_00103]
   - Source Video: MPEG-4 (AVC), 1920x1080
   - Rate/Length: 24,000fps, 3.243 frames
   - Bitrate: 5.906 Kbs
 - [20:52:17] Reencoding: VID_00103, Pass 1 of 2
 - [20:52:41] Reencoding: VID_00103, Pass 2 of 2
 - [20:54:03] Video Encode complete
 - [20:54:03] Processing audio tracks
   - Track 4352 (deu): Keeping original audio
 - [20:54:03] Multiplexing M2TS
 - [20:54:08] Processing: VID_00104 (5 of 5)
 - [20:54:08] Extracting A/V streams [VID_00104]
 - [20:54:16] Reencoding video [VID_00104]
   - Source Video: MPEG-4 (AVC), 1920x1080
   - Rate/Length: 24,000fps, 3.409 frames
   - Bitrate: 5.905 Kbs
 - [20:54:16] Reencoding: VID_00104, Pass 1 of 2
 - [20:54:41] Reencoding: VID_00104, Pass 2 of 2
 - [20:56:06] Video Encode complete
 - [20:56:06] Processing audio tracks
   - Track 4352 (deu): Keeping original audio
 - [20:56:06] Multiplexing M2TS
[20:56:10]PHASE ONE complete
[20:56:10]PHASE TWO - Rebuild Started
 - [20:56:10] Rebuilding stream 00021 [1 of 5]
 - [20:56:10] Multiplexing M2TS
 - Error in attempt to multiplex: MUX_00021.meta
 - Can't create file D:\EIGENE DATEIEN\EIGENE VIDEOS\THE HATEFUL EIGHT\REBUILD\WORKFILES\TMP\BDMV\STREAM\00000.m2ts
 - Failed to rebuild BD file(s).  Aborted.
Sometimes I'm lucky and it works, for example on "The Revenant" which had only 3 video files, but the more files there are the bigger the chance to get this kind of error. There's no regularity in this - if I go and try to resume a job it might work or the error comes at least with another stream.

Now the most curious thing about it: If I copy the Workfiles to an external drive and resume the job on another machine it finishes perfectly. But as this is only a stupid workaround I'd prefer to get the problem fixed on the i7-PC.

I don't know if it's helpful, but here's the *.inf of the project:

Code:
[Status]
LABEL=HATEFUL_8
VERSION=v0.50.14
SOURCE_SIZE=45326066075
SOURCE_VIDEO_SIZE=44868710400
TARGET_SIZE=24641536000
REDUCTION=.538998783548724
RESIZE_1080=0
RESIZE_1440=0
AUDIO_TO_KEEP=deu;eng;ger;
KEEP_HD_AUDIO=-1
SUBS_TO_KEEP=all
BACKUP_MODE=0
MOVIEONLY_TYPE=0
USE_LAVF=0
INSTANCES=1
DGDECNV=0
DGDECIM=0
FRIMSOURCE=0
FFMS2=0
SSIF_MODE=0
QUICK=0
ENCODE_STEP=0
COMPLETED=5
REBUILD_COMPLETE=0
[00021]
AUDIO=11
PGS=1111
APULLDOWN=0
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=23164774496
RATE=9312
SPLITS=1
NSTART=27000000
NEND=481691734
NSIZE=22350342144
FLINK=0
MLINK=0
[00101]
AUDIO=1
PGS=1
APULLDOWN=0
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=305356799
RATE=7194
SPLITS=1
NSTART=27000000
NEND=40449686
NSIZE=302174208
FLINK=0
MLINK=0
[00102]
AUDIO=1
PGS=1
APULLDOWN=0
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=462827096
RATE=7196
SPLITS=1
NSTART=27000000
NEND=47371601
NSIZE=457568256
FLINK=0
MLINK=0
[00103]
AUDIO=1
PGS=
APULLDOWN=0
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=122486465
RATE=5906
SPLITS=1
NSTART=27000000
NEND=33080625
NSIZE=120084480
FLINK=0
MLINK=0
[00104]
AUDIO=1
PGS=
APULLDOWN=0
S1440=0
VIDEO2=0
V2MBRATE=0
M2TS_TARGET=128735470
RATE=5905
SPLITS=1
NSTART=27000000
NEND=33391875
NSIZE=125945856
FLINK=0
MLINK=0
I installed everything as described, this is what "Inspect" says:

Code:
[07.01.16] Checking System Settings
  - BD-Rebuilder v0.50.14
  - Windows Version: 6.2 [9200]
  - Working Path Free Space: 1.806,73GB
  - AVISYNTH Version: 2.6.0.6, Ok
  - LAVFILTERS:  Ok
  - AnyDVD settings check: Ok.
  - X264:  Ok
  - AFTEN:  Ok
  - FAAC:  Ok
  - MP4BOX:  Ok
  - WAVI:  Ok
  - TSMUXER:  Ok
  - FRIMEncode:  Ok
  - FRIMDecode:  Ok
[07.01.16] Systems Settings Check complete
I also tried to de- and re-install BD Rebuilder, ffdshow and LAV-filters but none of it was the solution. Maybe someone of you has got another idea what I might try to get it solved.

Thaddäus is offline   Reply With Quote
Old 1st July 2016, 22:47   #24397  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
@Thaddäus

My best guess would be a permissions issue. It looks like you have plenty of space (1.8TB) Try running BD-RB with admin privileges and see if it goes away. If it does, then adjusting the output folder permissions my fix it.

Is D: a USB connected drive? I've seen reports before when there were driver issues on USB connected drives (although I've never actually seen it myself that I can remember). If so, you might want to test setting the working folder to a SATA connected drive just to prove/disprove it as an issue.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net

Last edited by jdobbs; 1st July 2016 at 23:01.
jdobbs is offline   Reply With Quote
Old 1st July 2016, 22:58   #24398  |  Link
ggtop
Registered User
 
Join Date: Mar 2003
Posts: 311
Quote:
If I copy the Workfiles to an external drive and resume the job on another machine it finishes perfectly. But as this is only a stupid workaround I'd prefer to get the problem fixed on the i7-PC.
Do you resume the rebuild from the external HDD attached to another computer or do you copy the files there? What does happen if you resume the rebuild from that external drive attached to your i7?
Personally I prefer not to use long paths (and avoid spaces in names). You can try to move your WORKFILES folder directly into the root of d:\


ggtop

Last edited by ggtop; 1st July 2016 at 23:01.
ggtop is offline   Reply With Quote
Old 1st July 2016, 23:06   #24399  |  Link
jdobbs
Moderator
 
Join Date: Oct 2001
Posts: 20,976
@ggtop

I haven't given up on your problem. I'm just doing testing to see if I can find a way to repeat it. I'd like to make sure that the new code I added (to allow for hardcoding full subtitles) is clean before I release a new version.
__________________
Help with development of new apps: Donations.
Website: www.jdobbs.net

Last edited by jdobbs; 2nd July 2016 at 02:38.
jdobbs is offline   Reply With Quote
Old 2nd July 2016, 03:57   #24400  |  Link
Lathe
Registered User
 
Lathe's Avatar
 
Join Date: Aug 2005
Posts: 1,100
Quote:
Originally Posted by Peter_A View Post
Thanks. That's pretty much what I figured. The audio (French, LPCM) does seem to play fine, through MPC-HC. I'll try to resize it in DVDFab (not my first choice, but it may be the only choice here).
What I would try to do is use UsEac3to. Drop in the movie file and see if it accepts the audio track. Choose the LPCM audio track and convert it to another comparable format. For example, if the bit rate is not too high (< or around 640) convert to AC3 @ 640. If the bit rate is substantially higher, convert to 'W64' which is basically LPCM wav also (I don't know if i would actually change it or not) Then, use TSMuxer and remux the video and NEW converted audio back into a BDMV structure. Then, if you need to shrink it further, use BDRB at that point, or if you don't, simply keep it or burn it that way.
Lathe is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 22:57.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.