Page 1 of 1

[Resolved:]VFR is put onto destination when transcoding

Posted: Sat Apr 02, 2011 1:29 am
by Sarasotaslim
When one transcodes a standard commercial DVD or transcodes a file containing older codecs
(e.g. h.263, and low-quality '.flv' videos from YouTube, etc),
to a destination of h.264, and chooses 'same as source' (the normal default) for 'Framerate' drop-down,
the resulting output file will become "VFR". [VFR='variable frame rate']

I see this behavior on both Linux-version and Windows-version of Handbrake, and have been seeing this
on the normal versions available over the past six months.

My 'question/issue' is:

Is this a possible 'bug' or is this a 'feature'?
(or stated another way)
Is this what users want and would expect?

I would have thought that 'same as source' would/should result in a 'CONSTANT' framerate, for the output,
since the source was a constant framerate. :shock:

EDIT: Maybe better wording would have been "variable:<= to src", rather than "same as source".

But, to ACHIEVE a constant framerate on the destination, I've recently learned that one MUST
'force' a constant framerate, by adjusting that 'Framerate' dropdown in the 'Video' tab to one
of the non-default 'specific' values, such as "29.97(NTSC Video)", or whatever.

[I wasn't sure whether to post this in one of the other forums. Feel free to move it, as needed.]

TIA...

S Slim

Re: VFR is put onto destination when transcoding

Posted: Sat Apr 02, 2011 3:21 am
by JohnAStebbins
You would be surprised how many sources are variable frame rate. DVDs *are* VFR for example. The framerate that you think it is just designates a nominal rate. The real rate is completely defined by timestamps in the stream. And there is a timestamp per frame. The granularity of those timestamps is 1/90000 seconds. In order to faithfully reproduce those timestamps, you have to do VFR output.

If your source truly is CFR, the VFR output will match it timestamp for timestamp. So the timing won't be any different. It's just header information that informs the decoder ahead of time that it *may* encounter variable frame timing.

Re: VFR is put onto destination when transcoding

Posted: Sat Apr 02, 2011 4:22 am
by TedJ
For the record, "same as source" also outputs VFR under the 0.9.4 release but it was not flagged as such.

Re: VFR is put onto destination when transcoding

Posted: Mon Apr 04, 2011 8:08 pm
by Sarasotaslim
Ah, thanks for both those clarifications. Makes sense.

Just for the record, the primary reason I brought this up, is that over at the Veetle-broadcasting
website, there is a caveat in their 'Pretranscode' article located at this URL:
http://veetle.com/index.php/article/view/preTranscode

where they have some self-contradicting 'waffle-words' that say:
FPS: Some newer transcoding software will do variable framerate (VFR) if you don't specify a hard framerate.
Veetle's player can sometimes run into issues playing back VFR smoothly.
You should set the final framerate to be the same as the source framerate.
Note at beginning, they say you need to specify a 'hard framerate', but then later say to use 'same as source'.

After some discussion among broadcasters in a forum post there, we finally concluded that no one can
recall seeing such any lack of smooth playback on Veetle from any pre-transcoded files that we
NOW notice DO have VFR coded into them. That thread is at this URL:
http://forums.veetle.com/forums/viewtop ... f=8&t=2792

So, it seems to be becoming mostly a "non-issue". 8)

Regards...

S Slim

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Tue Apr 05, 2011 2:23 pm
by Archivar
[I repeat my post here, because it didn't show in the support forum]

Hi,
the VFR topic is also important to me. I've already encoded a lot of DVDs with 0.9.5 and the "Same as Source" setting.
Thankfully my BD-Player LG BX580 has absolutely no problems playing these files. But I also heard that most other players have problems.
That concerns me, because I want to be sure, that my next players in the future will play these files as well.

I understand now that MediaInfo shows only the nominal fps and not the real. It reads the header of a file. Would it be possible to remove the VFR flag in the header of the MKV file without encoding? MKVmerge also changes the header when remuxing but there is no option to remove a vfr flag. Do you know a way to do it?

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Tue Apr 05, 2011 7:03 pm
by JohnAStebbins
The VFR information is encoded in the h.264 SPS VUI num_units_in_tick, timescale and fixed_frame_rate fields.
For handbrake's VFR output, these are set to:
num_units_in_tick=1
time_scale=90000*2
fixed_frame_rate=0

For CFR they should be (assuming 23.976fps nominal frame rate):
num_units_in_tick=24
time_scale=1001*2
fixed_frame_rate=1

The SPS (and PPS) is encoded into the mkv in the track private data portion of the track header. So you would need to find (or write) a program to extract and modify this. Keep in mind that doing so creates an invalid stream. In the future you may find you'll have more trouble playing a stream modified in this way then you would have if you just left it alone.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Tue Apr 05, 2011 11:48 pm
by Archivar
Thank you for your exact information.
For handbrake's VFR output, these are set to:
num_units_in_tick=1
time_scale=90000*2
fixed_frame_rate=0
Is this the location where MediaInfo is looking for VFR or CFR?

Other files not created by handbrake are not recognised by MediaInfo as VFR. Even the vob and m2ts files of commercial DVDs and BDs don't show a VFR information, at least I never saw it. Why? Are these tracks invalid as you mentioned?

What was different with 0.9.4 that MediaInfo didn't see the VFR Information?

I really like handbrake and I don't know a better program for encoding my DVDs. But because of the compatibility issues with many players I don't know what the best setting is to ensure best compatibility for many years? Using a specific framerate setting without VFR? At least I never noticed any stuttering or async when using a specific fps CFR. (In contrast I noticed stuttering with 'same as source' + deteline on.)

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 1:11 am
by JohnAStebbins
Archivar wrote:Thank you for your exact information.
For handbrake's VFR output, these are set to:
num_units_in_tick=1
time_scale=90000*2
fixed_frame_rate=0
Is this the location where MediaInfo is looking for VFR or CFR?
Since I haven't looked at MediaInfo's source code, I don't know what they look at. But this information from the SPS seems like the most likely candidate.
Other files not created by handbrake are not recognised by MediaInfo as VFR. Even the vob and m2ts files of commercial DVDs and BDs don't show a VFR information, at least I never saw it. Why? Are these tracks invalid as you mentioned?
DVDs are mpeg2 and don't have these exact fields. But there are similar flags to indicate whether the stream has multiple frame rates. In either case, the authors may be taking some liberties with the specification. I can't find anything in the specs that define what should be flagged if the media is mostly CFR but has a few splice points that result in short or long frames. These flags are provided primarily as an aid to the decoder so that it can manage buffer levels properly. If the variance from true CFR is small, flagging it as CFR wont break the decoder.
What was different with 0.9.4 that MediaInfo didn't see the VFR Information?
0.9.4 set the SPS fields as if it were doing CFR output at the nominal frame rate we detected in the input stream. One of the problems with this is that x264 doesn't do proper rate control if you don't tell it you are giving it VFR input. That means it doesn't hit it's target bitrate or RF factor. This is probably less of a problem for BD sources than for DVD. I've never seen a BD source that switches back and forth between NTSC telecine and interlaced sequences the way many DVDs do. But we can't predict what the characteristics of the stream are going to be without scanning the whole stream which would be time consuming. FYI, a DVD that is telecined can properly flag that it is constant frame rate, while the output HandBrake will generate will still be VFR. A telecined sequence when detelecined results in 24fps progressive frames, while a interlaced sequence when deinterlaced results in 30fps. So a DVD that switches back and forth between telecine and interlace can be correctly flagged as 30fps CFR, but result in VFR after filtering. This happens all the time with DVDs.
I really like handbrake and I don't know a better program for encoding my DVDs. But because of the compatibility issues with many players I don't know what the best setting is to ensure best compatibility for many years? Using a specific framerate setting without VFR? At least I never noticed any stuttering or async when using a specific fps CFR. (In contrast I noticed stuttering with 'same as source' + deteline on.)
Stuttering with 'same as source' + detelecine could be an indication of another problem and may have nothing to do with VFR. You should test that encode on a player that doesn't have a problem with VFR before placing the blame.

I encode everything with VFR and just won't buy any broken players. There are plenty of good ones to choose from. I'm very happy with my boxee box.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 1:50 am
by Archivar
Stuttering with 'same as source' + detelecine could be an indication of another problem and may have nothing to do with VFR. You should test that encode on a player that doesn't have a problem with VFR before placing the blame.
I tested it with VLC/ WMP Classic and it stuttered. This is always the case when the detelecine filter is active and I don't choose the nominal fps. I don't know if VFR on or off makes any difference. If I choose 'same as source' the average fps indicated by MediaInfo is something like 22,65. It seems to me that the detelecine filter drops too many frames without replacing the gaps. But set to a nominal fps (e.g. 25) the resulting video is playing smoothly.
I encode everything with VFR and just won't buy any broken players. There are plenty of good ones to choose from. I'm very happy with my boxee box.
Plenty? :o I asked in another forum (hifi-forum.de) some users of different common BD-Players (Panasonic, Philips) to check out a sample MKV-file flagged as VFR. They couldn't play it. Also users with other modells reported problems with Samsung BD-Players. Furtunately my LG is playing it, but I don't want to stick to LG only because of this VFR issue. Interestingly my 'Samsung Wave II' mobile phone is playing it too, but its a little bit stuttering compared to CFR flagged videos.

If you know plenty modells that support VFR flags, please give me a list. :)

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 2:17 am
by Deleted User 11865
PlayStation 3, Xbox 360 (IIRC), WD TV, Apple devices, Boxee box, most HTPCs. Plenty of others, those are just the ones I know about.

Many TVs and Blu-Ray players are broken, but lack of VFR support isn't always their only shortcoming:

- some lack anamorphic support
- some will scale any content - even non-anamorphic - to 16:9 regardless of the actual aspect ratio
- thanks to Cinavia support, ripping your DVD/Blu-Ray collection to files might soon become hit and miss

You should probably steer clear of those as your primary player for anything other than DVD and Blu-Ray discs.

Anyway, there is no reason to make the workarounds for all these bugs (disable VFR, disable anamorphic, disable cropping, etc.) the default.
You can always create your custom preset if you need to.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 2:25 am
by Deleted User 11865
Archivar wrote:
Stuttering with 'same as source' + detelecine could be an indication of another problem and may have nothing to do with VFR. You should test that encode on a player that doesn't have a problem with VFR before placing the blame.
I tested it with VLC/ WMP Classic and it stuttered. This is always the case when the detelecine filter is active and I don't choose the nominal fps. I don't know if VFR on or off makes any difference. If I choose 'same as source' the average fps indicated by MediaInfo is something like 22,65. It seems to me that the detelecine filter drops too many frames without replacing the gaps. But set to a nominal fps (e.g. 25) the resulting video is playing smoothly.
I also find the detelecine filter to be unreliable.
But setting a hard framerate is a hacky workaround; detelecine is still dropping too many frames, but CFR is duplicating some of the frames that are left to maintain the target framerate (or, if detelecine doesn't drop enough frames, CFR will drop additional frames).
Sometimes the result may end up even less smooth than with detelecine + Same as source.

I personally find that decomb + Same as source (i.e. detelecine off, telecine artifacts treated like interlacing artifacts) can be an equally suitable workaround for PAL sources or NTSC sources that are mostly 23.976 fps (e.g. Stargate SG-1).

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 2:27 am
by JohnAStebbins
Your detelecine issue sounds like it could be a bug. Needs looking into. But it would help to have a source I could reproduce it with. I haven't seen it.

List: boxee (and anything else based on Intel CE4100 platform), any apple device (adds a dozen items to the list), WDTV, acer tablets (and anything else based on nvidia tegra2 which adds dozens more to the list), xoom, samsung tablets. My dad has an old tvix that's always amazed me in it's ability to play anything I through at it give how old it is. These are just items I have personal experience with.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 10:15 am
by Archivar
Rodeo wrote:PlayStation 3, Xbox 360 (IIRC), WD TV, Apple devices, Boxee box, most HTPCs. Plenty of others, those are just the ones I know about.
JohnAStebbins wrote:List: boxee (and anything else based on Intel CE4100 platform), any apple device (adds a dozen items to the list), WDTV, acer tablets (and anything else based on nvidia tegra2 which adds dozens more to the list), xoom, samsung tablets. My dad has an old tvix that's always amazed me in it's ability to play anything I through at it give how old it is. These are just items I have personal experience with.
The PS3 doesn't support MKV. And the other devices/ HTPCs on your list don't have a BD-drive, afaik. That's bad for me, because I store my files on BD-R's.
I know of the 'HDI Dune HD' having a BD-drive, but I don't know if it's supporting VFR flags. The WD TV V2 is reported to have an issue with Audio Sync during playback with any MKV files encoded with the VFR flag (klick here).
Rodeo wrote:I personally find that decomb + Same as source (i.e. detelecine off, telecine artifacts treated like interlacing artifacts) can be an equally suitable workaround for PAL sources or NTSC sources that are mostly 23.976 fps (e.g. Stargate SG-1).
Some sources are not sufficiently decombed/deinterlaced when only using custom decomb without detelecine.
JohnAStebbins wrote:Your detelecine issue sounds like it could be a bug. Needs looking into. But it would help to have a source I could reproduce it with. I haven't seen it.
I will look if I find a source file.

Edit:
Do you know a tool with which I can scan a DVD or a file to determine how many percent of it are VFR or CFR? So I could decide which encoding settings in handbrake to choose. It would be nice to implement such optional feature in handbrake.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 12:43 pm
by Deleted User 11865
Archivar wrote:Edit:
Do you know a tool with which I can scan a DVD or a file to determine how many percent of it are VFR or CFR? So I could decide which encoding settings in handbrake to choose. It would be nice to implement such optional feature in handbrake.
Not as far as I know.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 3:19 pm
by JohnAStebbins
That's bad for me, because I store my files on BD-R's
I was going to say that sounds like an expensive way to store movies. But a quick price check shows the cost per GB is pretty much the same as a 2TB HDD. Media prices have come down since I last checked that option. I like the convenience of having everything online on HDD. But to each their own I suppose.

Are the sources that you have detelecine problems with all PAL? If so, I think I can find something to reproduce the problem with. I just don't usually enable detelecine on PAL sources because it's a known problem and usually isn't needed.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Wed Apr 06, 2011 6:16 pm
by Archivar
25GB BD-Rs (Verbatim) here in Germany are still nearly twice the price per GB than a 2TB HDD (Samsung Story).
But the price was never a crucial point for me. I have bad experiences with crashed HDDs and loss of many important files.
So I decided to store every important file, such as favorite video files, on DVD-R DLs and BD-Rs. If a disc one day becomes
unreadable, I have a minimum risk and loose only a small part of my collection...

Almost all of the sources that I encode with handbrake are PAL 25fps. There is a big number of films which benefit of the detelecine filter even with PAL (eg. The Little Rascals/Our Gang comedy series), but I have to make sure to choose a hard framerate to prevent stuttering and low nominal fps in the encoded file.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Thu Apr 07, 2011 6:27 pm
by Deleted User 11865
Rodeo wrote:
Archivar wrote:Edit:
Do you know a tool with which I can scan a DVD or a file to determine how many percent of it are VFR or CFR? So I could decide which encoding settings in handbrake to choose. It would be nice to implement such optional feature in handbrake.
Not as far as I know.
Correction: there is a way to check this. Encode as CFR in HandBrake and look in the log for "CFR/PFR" - that line will tell you how many frames HandBrake had to drop or duplicate to reach the specified CFR. This isn't exactly a percentage, bit it'll give you an idea of how far the source is from the target framerate. Of course that information is only available at the end of the encode.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Thu Apr 07, 2011 6:47 pm
by Archivar
Thank you, this is really helpful! I just encoded a DVD 25 fps CFR and looked at the line, it showed:

Code: Select all

render: 159934 frames output, 0 dropped and 0 duped for CFR/PFR
So CFR encoding was the right decision this time. :D Would be cool to calculate this before encoding.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Sat Apr 09, 2011 3:27 pm
by Archivar
I now have found a source video with the above mentioned stuttering problem when detelecine is enabled.
Here are the log files for 3 different settings.

1) detelecine + 25fps CFR

result: 67724 frames output, 0 dropped and 4248 duped for CFR/PFR (6,27%) -> very stuttering

Code: Select all

# Windows GUI 0.9.5 2011010300
# Running: Microsoft Windows NT 6.0.6002 Service Pack 2
# CPU: Intel(R) Core(TM)2 Quad  CPU   Q9550  @ 2.83GHz
# Ram: 4094 MB
# Screen: 1280x1024
# Temp Dir: C:\Users\AAA\AppData\Local\Temp\
# Install Dir: D:\Programme\Videotools\Handbrake
# Data Dir: C:\Users\AAA\AppData\Roaming\HandBrake\HandBrake\0.9.5.3728

# CLI Query:  -i "P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden" -t 69 -c 1-7 -o "P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden.mkv"  -f mkv --detelecine --decomb=" 1:2:6:9:15:4:8" -w 720 --loose-anamorphic  -e x264 -b 1800 -2  -r 25 -a 3 -E copy:ac3 -6 auto -R Auto -B auto -D 0 --markers="C:\Users\AAA\AppData\Local\Temp\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden-69-chapters.csv" -x rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2 --verbose=1
# User Query: False
-------------------------------------------

[00:39:09] hb_init: checking cpu count
[00:39:09] hb_init: starting libhb thread
HandBrake 0.9.5 (2011010300) - MinGW i386 - http://handbrake.fr
4 CPUs detected
Opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden...
[00:39:09] hb_scan: path=P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden, title_index=69
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden/BDMV/index.bdmv
libbluray/bluray.c:960: nav_get_title_list(P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden) failed (0x2290598)
[00:39:09] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
[00:39:09] scan: DVD has 73 title(s)
[00:39:09] scan: scanning title 69
[00:39:09] scan: opening IFO for VTS 10
[00:39:09] scan: duration is 00:45:09 (2709120 ms)
[00:39:09] pgc_id: 2, pgn: 1: pgc: 0x22a1960
[00:39:09] scan: vts=10, ttn=2, cells=0->6, blocks=0->1408939, 1401602 blocks
[00:39:09] scan: checking audio 1
[00:39:09] scan: id=80bd, lang=English (AC3), 3cc=eng ext=0
[00:39:09] scan: checking audio 2
[00:39:09] scan: id=81bd, lang=Francais (AC3), 3cc=fra ext=0
[00:39:09] scan: checking audio 3
[00:39:09] scan: id=82bd, lang=Deutsch (AC3), 3cc=deu ext=0
[00:39:09] scan: checking audio 4
[00:39:09] scan: id=83bd, lang=Espanol (AC3), 3cc=spa ext=0
[00:39:09] scan: checking audio 5
[00:39:09] scan: id=84bd, lang=Italiano (AC3), 3cc=ita ext=0
[00:39:09] scan: checking subtitle 1
[00:39:09] scan: id=20bd, lang=English, 3cc=eng
[00:39:09] scan: checking subtitle 2
[00:39:09] scan: id=21bd, lang=Francais, 3cc=fra
[00:39:09] scan: checking subtitle 3
[00:39:09] scan: id=22bd, lang=Espanol, 3cc=spa
[00:39:09] scan: checking subtitle 4
[00:39:09] scan: id=23bd, lang=Deutsch, 3cc=deu
[00:39:09] scan: checking subtitle 5
[00:39:09] scan: id=24bd, lang=Italiano, 3cc=ita
[00:39:09] scan: checking subtitle 6
[00:39:09] scan: id=25bd, lang=Nederlands, 3cc=nld
[00:39:09] scan: checking subtitle 7
[00:39:09] scan: id=26bd, lang=Portugues, 3cc=por
[00:39:09] scan: checking subtitle 8
[00:39:09] scan: id=27bd, lang=Greek, Modern, 3cc=ell
[00:39:09] scan: checking subtitle 9
[00:39:09] scan: id=28bd, lang=Dansk, 3cc=dan
[00:39:09] scan: checking subtitle 10
[00:39:09] scan: id=29bd, lang=Suomi, 3cc=fin
[00:39:09] scan: checking subtitle 11
[00:39:09] scan: id=2abd, lang=Svenska, 3cc=swe
[00:39:09] scan: checking subtitle 12
[00:39:09] scan: id=2bbd, lang=Norsk, 3cc=nor
[00:39:09] scan: checking subtitle 13
[00:39:09] scan: id=2cbd, lang=Polish, 3cc=pol
[00:39:09] scan: checking subtitle 14
[00:39:09] scan: id=2dbd, lang=English, 3cc=eng
[00:39:09] scan: title 69 has 7 chapters
[00:39:09] scan: chap 1 c=0->0, b=0->2619 (2620), 10365 ms
[00:39:09] scan: chap 2 c=1->1, b=1408940->1430709 (21770), 57192 ms
[00:39:09] scan: chap 3 c=2->2, b=31728->598686 (566959), 1088907 ms
[00:39:09] scan: chap 4 c=3->3, b=598687->1387014 (788328), 1507077 ms
[00:39:09] scan: chap 5 c=4->4, b=1387015->1392250 (5236), 13367 ms
[00:39:09] scan: chap 6 c=5->5, b=1392251->1408858 (16608), 32118 ms
[00:39:09] scan: chap 7 c=6->6, b=1408859->1408939 (81), 90 ms
[00:39:09] scan: aspect = 0
[00:39:09] scan: decoding previews for title 69
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[00:39:09] scan: title angle(s) 1
[00:39:09] scan: audio 0x83bd: AC-3, rate=48000Hz, bitrate=256000 Espanol (AC3) (2.0 ch)
[00:39:09] scan: audio 0x81bd: AC-3, rate=48000Hz, bitrate=192000 Francais (AC3) (2.0 ch)
[00:39:09] scan: audio 0x80bd: AC-3, rate=48000Hz, bitrate=160000 English (AC3) (2.0 ch)
[00:39:09] scan: audio 0x82bd: AC-3, rate=48000Hz, bitrate=160000 Deutsch (AC3) (2.0 ch)
[00:39:09] scan: audio 0x84bd: AC-3, rate=48000Hz, bitrate=160000 Italiano (AC3) (2.0 ch)
Scanning title 69...
[00:39:09] scan: 10 previews, 720x576, 25.000 fps, autocrop = 2/0/8/12, aspect 4:3, PAR 16:15
[00:39:09] scan: title (0) job->width:704, job->height:544
[00:39:09] libhb: scan thread found 1 valid title(s)
+ title 69:
  + vts 10, ttn 2, cells 0->6 (1401602 blocks)
  + duration: 00:45:09
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 2/0/8/12
  + chapters:
    + 1: cells 0->0, 2620 blocks, duration 00:00:10
    + 2: cells 1->1, 21770 blocks, duration 00:00:57
    + 3: cells 2->2, 566959 blocks, duration 00:18:09
    + 4: cells 3->3, 788328 blocks, duration 00:25:07
    + 5: cells 4->4, 5236 blocks, duration 00:00:13
    + 6: cells 5->5, 16608 blocks, duration 00:00:32
    + 7: cells 6->6, 81 blocks, duration 00:00:00
  + audio tracks:
    + 1, English (AC3) (2.0 ch) (iso639-2: eng), 48000Hz, 160000bps
    + 2, Francais (AC3) (2.0 ch) (iso639-2: fra), 48000Hz, 192000bps
    + 3, Deutsch (AC3) (2.0 ch) (iso639-2: deu), 48000Hz, 160000bps
    + 4, Espanol (AC3) (2.0 ch) (iso639-2: spa), 48000Hz, 256000bps
    + 5, Italiano (AC3) (2.0 ch) (iso639-2: ita), 48000Hz, 160000bps
  + subtitle tracks:
    + 1, English (iso639-2: eng) (Bitmap)(VOBSUB)
    + 2, Francais (iso639-2: fra) (Bitmap)(VOBSUB)
    + 3, Espanol (iso639-2: spa) (Bitmap)(VOBSUB)
    + 4, Deutsch (iso639-2: deu) (Bitmap)(VOBSUB)
    + 5, Italiano (iso639-2: ita) (Bitmap)(VOBSUB)
    + 6, Nederlands (iso639-2: nld) (Bitmap)(VOBSUB)
    + 7, Portugues (iso639-2: por) (Bitmap)(VOBSUB)
    + 8, Greek, Modern (iso639-2: ell) (Bitmap)(VOBSUB)
    + 9, Dansk (iso639-2: dan) (Bitmap)(VOBSUB)
    + 10, Suomi (iso639-2: fin) (Bitmap)(VOBSUB)
    + 11, Svenska (iso639-2: swe) (Bitmap)(VOBSUB)
    + 12, Norsk (iso639-2: nor) (Bitmap)(VOBSUB)
    + 13, Polish (iso639-2: pol) (Bitmap)(VOBSUB)
    + 14, English (iso639-2: eng) (Bitmap)(VOBSUB)
Reading chapter markers from file C:\Users\AAA\AppData\Local\Temp\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden-69-chapters.csv
[00:39:09] 2 job(s) to process
[00:39:09] starting job
[00:39:09] sync: expecting 67752 video frames
[ac3 @ 0x22a8bc0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[00:39:09] job configuration:
[00:39:09]  * source
[00:39:09]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[00:39:09]    + title 69, chapter(s) 1 to 7
[00:39:09]  * destination
[00:39:09]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden.mkv
[00:39:09]    + container: Matroska (.mkv)
[00:39:09]      + chapter markers
[00:39:09]  * video track
[00:39:09]    + decoder: mpeg2
[00:39:09]      + bitrate 8800 kbps
[00:39:09]    + frame rate: 25.000 fps -> constant 25.000 fps
[00:39:09]    + loose anamorphic
[00:39:09]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[00:39:09]      + pixel aspect ratio: 1184 / 1107
[00:39:09]      + display dimensions: 770 * 592
[00:39:09]    + filters
[00:39:09]      + Detelecine (pullup) (default settings)
[00:39:09]      + Decomb ( 1:2:6:9:15:4:8)
[00:39:09]    + encoder: x264
[00:39:09]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[00:39:09]      + bitrate: 1800 kbps, pass: 1
[00:39:09]  * audio track 0
[00:39:09]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[00:39:09]      + bitrate: 160 kbps, samplerate: 48000 Hz
[00:39:09]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[00:39:09] yadif thread started for segment 0
[00:39:09] yadif thread started for segment 1
[00:39:09] yadif thread started for segment 2
[00:39:09] decomb thread started for segment 0
[00:39:09] yadif thread started for segment 3
[00:39:09] encx264: encoding with stored aspect 1184/1107
x264 [info]: using SAR=1184/1107
libdvdread: Encrypted DVD support unavailable.
[00:39:09] decomb thread started for segment 1
libdvdread: Device (null) inaccessible, CSS authentication not available.
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
[00:39:09] decomb thread started for segment 3
[00:39:09] decomb thread started for segment 2
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[00:39:10] reader: first SCR 146 id 224 DTS 21600
[00:39:10] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[00:39:18] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[00:39:18] output track 0: ac3 in sync after skipping 736 bytes
[00:40:20] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[00:40:20] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[00:40:21] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[00:40:21] output track 0: ac3 in sync after skipping 608 bytes
[00:40:21] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[00:40:22] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[00:40:22] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[00:40:23] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[00:40:24] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[00:40:24] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[00:40:25] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[00:40:25] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[00:40:25] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[01:00:02] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[01:29:08] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[01:29:23] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[01:30:04] 2708.583678s: Video -> Film
[01:30:04] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[01:30:04] 2708.703678s: Film -> Video
[01:30:04] reader: done. 2 scr changes
[01:30:07] work: average encoding speed for job is 22.157125 fps
[01:30:07] sync: got 67707 frames, 67752 expected
[01:30:07] mpeg2 done: 67707 frames
[01:30:07] render: 67724 frames output, 0 dropped and 4248 duped for CFR/PFR
[01:30:07] render: lost time: 15228000 (4230 frames)
[01:30:07] render: gained time: 15228000 (14136 frames) (0 not accounted for)
[01:30:07] render: average dropped frame duration: 3600
x264 [info]: frame I:457   Avg QP:15.29  size: 57834  PSNR Mean Y:48.47 U:51.23 V:51.52 Avg:49.21 Global:48.28
x264 [info]: frame P:21344 Avg QP:17.71  size: 17888  PSNR Mean Y:45.95 U:49.15 V:49.58 Avg:46.77 Global:45.93
x264 [info]: frame B:45923 Avg QP:21.96  size:  4457  PSNR Mean Y:44.42 U:48.65 V:49.20 Avg:45.41 Global:44.39
x264 [info]: consecutive B-frames:  4.9%  5.0% 21.8% 68.3%
x264 [info]: mb I  I16..4:  5.0% 79.1% 16.0%
x264 [info]: mb P  I16..4:  1.1%  7.7%  0.9%  P16..4: 49.8% 23.3%  4.8%  0.3%  0.2%    skip:12.0%
x264 [info]: mb B  I16..4:  0.2%  0.4%  0.0%  B16..8: 35.4%  6.0%  1.5%  direct: 8.7%  skip:47.7%  L0:38.1% L1:47.5% BI:14.4%
x264 [info]: final ratefactor: 18.23
x264 [info]: 8x8 transform intra:78.2% inter:63.3%
x264 [info]: coded y,uvDC,uvAC intra: 80.2% 83.6% 53.8% inter: 26.4% 26.5% 3.4%
x264 [info]: i16 v,h,dc,p: 23% 45%  5% 27%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 20%  5%  7%  8%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 16%  5%  9%  9%  7%  7%  6%
x264 [info]: i8c dc,h,v,p: 47% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:8.3% UV:5.3%
x264 [info]: ref P L0: 55.0% 12.5% 21.8%  7.7%  2.9%  0.1%
x264 [info]: ref B L0: 85.4% 11.6%  3.0%
x264 [info]: ref B L1: 94.7%  5.3%
x264 [info]: SSIM Mean Y:0.9856495 (18.431db)
x264 [info]: PSNR Mean Y:44.930 U:48.828 V:49.337 Avg:45.867 Global:44.842 kb/s:1810.00
[01:30:07] decomb: deinterlaced 34163 | blended 0 | unfiltered 29313 | total 63476
[01:30:07] starting job
[01:30:07] sync: expecting 67707 video frames
[ac3 @ 0x2d09fc0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[01:30:07] job configuration:
[01:30:07]  * source
[01:30:07]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[01:30:07]    + title 69, chapter(s) 1 to 7
[01:30:07]  * destination
[01:30:07]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden.mkv
[01:30:07]    + container: Matroska (.mkv)
[01:30:07]      + chapter markers
[01:30:07]  * video track
[01:30:07]    + decoder: mpeg2
[01:30:07]      + bitrate 8800 kbps
[01:30:07]    + frame rate: 25.000 fps -> constant 25.000 fps
[01:30:07]    + loose anamorphic
[01:30:07]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[01:30:07]      + pixel aspect ratio: 1184 / 1107
[01:30:07]      + display dimensions: 770 * 592
[01:30:07]    + filters
[01:30:07]      + Detelecine (pullup) (default settings)
[01:30:07]      + Decomb ( 1:2:6:9:15:4:8)
[01:30:07]    + encoder: x264
[01:30:07]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[01:30:07]      + bitrate: 1800 kbps, pass: 2
[01:30:07]  * audio track 0
[01:30:07]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[01:30:07]      + bitrate: 160 kbps, samplerate: 48000 Hz
[01:30:07]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[01:30:07] yadif thread started for segment 0
[01:30:07] yadif thread started for segment 1
[01:30:07] decomb thread started for segment 0
[01:30:07] yadif thread started for segment 3
[01:30:07] encx264: encoding with stored aspect 1184/1107
x264 [info]: using SAR=1184/1107
libdvdread: Encrypted DVD support unavailable.
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
[01:30:07] decomb thread started for segment 2
[01:30:07] yadif thread started for segment 2
libdvdread: Device (null) inaccessible, CSS authentication not available.
[01:30:07] decomb thread started for segment 1
[01:30:07] decomb thread started for segment 3
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[01:30:07] reader: first SCR 146 id 224 DTS 21600
[01:30:07] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[01:30:16] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[01:30:16] output track 0: ac3 in sync after skipping 736 bytes
[01:31:16] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[01:31:16] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[01:31:17] output track 0: ac3 in sync after skipping 608 bytes
[01:31:17] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[01:31:17] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[01:31:17] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[01:31:18] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[01:31:18] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[01:31:19] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[01:31:20] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[01:31:21] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[01:31:21] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[01:31:21] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[01:50:46] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[02:16:28] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[02:16:42] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[02:17:20] 2708.583678s: Video -> Film
[02:17:20] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[02:17:20] 2708.703678s: Film -> Video
[02:17:20] reader: done. 2 scr changes
[02:17:21] work: average encoding speed for job is 23.918272 fps
[02:17:21] sync: got 67707 frames, 67707 expected
[02:17:21] mpeg2 done: 67707 frames
[02:17:21] render: 67724 frames output, 0 dropped and 4248 duped for CFR/PFR
[02:17:21] render: lost time: 15228000 (4230 frames)
[02:17:21] render: gained time: 15228000 (14136 frames) (0 not accounted for)
[02:17:21] render: average dropped frame duration: 3600
x264 [info]: frame I:457   Avg QP:15.52  size: 56385  PSNR Mean Y:48.38 U:51.11 V:51.41 Avg:49.11 Global:48.41
x264 [info]: frame P:21344 Avg QP:17.89  size: 17743  PSNR Mean Y:45.90 U:49.11 V:49.55 Avg:46.73 Global:46.15
x264 [info]: frame B:45923 Avg QP:22.17  size:  4467  PSNR Mean Y:44.38 U:48.63 V:49.18 Avg:45.38 Global:44.59
x264 [info]: consecutive B-frames:  4.9%  5.0% 21.8% 68.3%
x264 [info]: mb I  I16..4:  5.5% 78.4% 16.1%
x264 [info]: mb P  I16..4:  1.2%  7.5%  0.9%  P16..4: 50.0% 22.7%  5.0%  0.3%  0.2%    skip:12.2%
x264 [info]: mb B  I16..4:  0.2%  0.4%  0.1%  B16..8: 35.4%  5.8%  1.4%  direct: 8.4%  skip:48.3%  L0:38.0% L1:47.6% BI:14.4%
x264 [info]: 8x8 transform intra:77.0% inter:64.0%
x264 [info]: coded y,uvDC,uvAC intra: 78.7% 82.8% 51.3% inter: 26.0% 25.8% 2.9%
x264 [info]: i16 v,h,dc,p: 24% 45%  5% 27%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 18% 19%  5%  8%  8%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 15%  5%  9%  9%  8%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:8.3% UV:5.3%
x264 [info]: ref P L0: 59.4% 15.0% 16.0%  7.3%  2.2%  0.1%
x264 [info]: ref B L0: 84.9% 12.9%  2.3%
x264 [info]: ref B L1: 94.6%  5.4%
x264 [info]: SSIM Mean Y:0.9858061 (18.479db)
x264 [info]: PSNR Mean Y:44.887 U:48.799 V:49.308 Avg:45.831 Global:45.044 kb/s:1800.25
[02:17:21] mux: track 0, 67724 frames, 609582101 bytes, 1800.17 kbps, fifo 8
[02:17:21] mux: track 1, 84656 frames, 54179840 bytes, 160.00 kbps, fifo 128
[02:17:21] decomb: deinterlaced 34163 | blended 0 | unfiltered 29313 | total 63476
[02:17:21] libhb: work result = 0
Rip done!
HandBrake has exited.
2) detelecine + 25fps + VFR

result: 63476 frames output, 0 dropped and 0 duped for CFR/PFR -> not less stuttering than video 1

Code: Select all

# Windows GUI 0.9.5 2011010300
# Running: Microsoft Windows NT 6.0.6002 Service Pack 2
# CPU: Intel(R) Core(TM)2 Quad  CPU   Q9550  @ 2.83GHz
# Ram: 4094 MB
# Screen: 1280x1024
# Temp Dir: C:\Users\AAA\AppData\Local\Temp\
# Install Dir: D:\Programme\Videotools\Handbrake
# Data Dir: C:\Users\AAA\AppData\Roaming\HandBrake\HandBrake\0.9.5.3728

# CLI Query:  -i "P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden" -t 69 -c 1-7 -o "P:\Videos\Mysterien Und Geheimnisse Der Welt - Ägyptische Pyramiden-69.mkv"  -f mkv --detelecine --decomb=" 1:2:6:9:15:4:8" -w 720 --loose-anamorphic  -e x264 -b 1800 -2  -r 25 --pfr  -a 3 -E copy:ac3 -6 auto -R Auto -B auto -D 0 --markers="C:\Users\AAA\AppData\Local\Temp\Mysterien Und Geheimnisse Der Welt - Ägyptische Pyramiden-69-69-chapters.csv" -x rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2 --verbose=1
# User Query: False
-------------------------------------------

[10:17:06] hb_init: checking cpu count
[10:17:06] hb_init: starting libhb thread
HandBrake 0.9.5 (2011010300) - MinGW i386 - http://handbrake.fr
4 CPUs detected
Opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden...
[10:17:06] hb_scan: path=P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden, title_index=69
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden/BDMV/index.bdmv
libbluray/bluray.c:960: nav_get_title_list(P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden) failed (0x22f05c8)
[10:17:06] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
[10:17:06] scan: DVD has 73 title(s)
[10:17:06] scan: scanning title 69
[10:17:06] scan: opening IFO for VTS 10
[10:17:06] scan: duration is 00:45:09 (2709120 ms)
[10:17:06] pgc_id: 2, pgn: 1: pgc: 0x2301990
[10:17:06] scan: vts=10, ttn=2, cells=0->6, blocks=0->1408939, 1401602 blocks
[10:17:06] scan: checking audio 1
[10:17:06] scan: id=80bd, lang=English (AC3), 3cc=eng ext=0
[10:17:06] scan: checking audio 2
[10:17:06] scan: id=81bd, lang=Francais (AC3), 3cc=fra ext=0
[10:17:06] scan: checking audio 3
[10:17:06] scan: id=82bd, lang=Deutsch (AC3), 3cc=deu ext=0
[10:17:06] scan: checking audio 4
[10:17:06] scan: id=83bd, lang=Espanol (AC3), 3cc=spa ext=0
[10:17:06] scan: checking audio 5
[10:17:06] scan: id=84bd, lang=Italiano (AC3), 3cc=ita ext=0
[10:17:06] scan: checking subtitle 1
[10:17:06] scan: id=20bd, lang=English, 3cc=eng
[10:17:06] scan: checking subtitle 2
[10:17:06] scan: id=21bd, lang=Francais, 3cc=fra
[10:17:06] scan: checking subtitle 3
[10:17:06] scan: id=22bd, lang=Espanol, 3cc=spa
[10:17:06] scan: checking subtitle 4
[10:17:06] scan: id=23bd, lang=Deutsch, 3cc=deu
[10:17:06] scan: checking subtitle 5
[10:17:06] scan: id=24bd, lang=Italiano, 3cc=ita
[10:17:06] scan: checking subtitle 6
[10:17:06] scan: id=25bd, lang=Nederlands, 3cc=nld
[10:17:06] scan: checking subtitle 7
[10:17:06] scan: id=26bd, lang=Portugues, 3cc=por
[10:17:06] scan: checking subtitle 8
[10:17:06] scan: id=27bd, lang=Greek, Modern, 3cc=ell
[10:17:06] scan: checking subtitle 9
[10:17:06] scan: id=28bd, lang=Dansk, 3cc=dan
[10:17:06] scan: checking subtitle 10
[10:17:06] scan: id=29bd, lang=Suomi, 3cc=fin
[10:17:06] scan: checking subtitle 11
[10:17:06] scan: id=2abd, lang=Svenska, 3cc=swe
[10:17:06] scan: checking subtitle 12
[10:17:06] scan: id=2bbd, lang=Norsk, 3cc=nor
[10:17:06] scan: checking subtitle 13
[10:17:06] scan: id=2cbd, lang=Polish, 3cc=pol
[10:17:06] scan: checking subtitle 14
[10:17:06] scan: id=2dbd, lang=English, 3cc=eng
[10:17:06] scan: title 69 has 7 chapters
[10:17:06] scan: chap 1 c=0->0, b=0->2619 (2620), 10365 ms
[10:17:06] scan: chap 2 c=1->1, b=1408940->1430709 (21770), 57192 ms
[10:17:06] scan: chap 3 c=2->2, b=31728->598686 (566959), 1088907 ms
[10:17:06] scan: chap 4 c=3->3, b=598687->1387014 (788328), 1507077 ms
[10:17:06] scan: chap 5 c=4->4, b=1387015->1392250 (5236), 13367 ms
[10:17:06] scan: chap 6 c=5->5, b=1392251->1408858 (16608), 32118 ms
[10:17:06] scan: chap 7 c=6->6, b=1408859->1408939 (81), 90 ms
[10:17:06] scan: aspect = 0
[10:17:06] scan: decoding previews for title 69
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[10:17:06] scan: title angle(s) 1
[10:17:06] scan: audio 0x83bd: AC-3, rate=48000Hz, bitrate=256000 Espanol (AC3) (2.0 ch)
[10:17:06] scan: audio 0x81bd: AC-3, rate=48000Hz, bitrate=192000 Francais (AC3) (2.0 ch)
[10:17:06] scan: audio 0x80bd: AC-3, rate=48000Hz, bitrate=160000 English (AC3) (2.0 ch)
[10:17:06] scan: audio 0x82bd: AC-3, rate=48000Hz, bitrate=160000 Deutsch (AC3) (2.0 ch)
[10:17:06] scan: audio 0x84bd: AC-3, rate=48000Hz, bitrate=160000 Italiano (AC3) (2.0 ch)
Scanning title 69...
[10:17:06] scan: 10 previews, 720x576, 25.000 fps, autocrop = 2/0/8/12, aspect 4:3, PAR 16:15
[10:17:06] scan: title (0) job->width:704, job->height:544
[10:17:06] libhb: scan thread found 1 valid title(s)
+ title 69:
  + vts 10, ttn 2, cells 0->6 (1401602 blocks)
  + duration: 00:45:09
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 2/0/8/12
  + chapters:
    + 1: cells 0->0, 2620 blocks, duration 00:00:10
    + 2: cells 1->1, 21770 blocks, duration 00:00:57
    + 3: cells 2->2, 566959 blocks, duration 00:18:09
    + 4: cells 3->3, 788328 blocks, duration 00:25:07
    + 5: cells 4->4, 5236 blocks, duration 00:00:13
    + 6: cells 5->5, 16608 blocks, duration 00:00:32
    + 7: cells 6->6, 81 blocks, duration 00:00:00
  + audio tracks:
    + 1, English (AC3) (2.0 ch) (iso639-2: eng), 48000Hz, 160000bps
    + 2, Francais (AC3) (2.0 ch) (iso639-2: fra), 48000Hz, 192000bps
    + 3, Deutsch (AC3) (2.0 ch) (iso639-2: deu), 48000Hz, 160000bps
    + 4, Espanol (AC3) (2.0 ch) (iso639-2: spa), 48000Hz, 256000bps
    + 5, Italiano (AC3) (2.0 ch) (iso639-2: ita), 48000Hz, 160000bps
  + subtitle tracks:
    + 1, English (iso639-2: eng) (Bitmap)(VOBSUB)
    + 2, Francais (iso639-2: fra) (Bitmap)(VOBSUB)
    + 3, Espanol (iso639-2: spa) (Bitmap)(VOBSUB)
    + 4, Deutsch (iso639-2: deu) (Bitmap)(VOBSUB)
    + 5, Italiano (iso639-2: ita) (Bitmap)(VOBSUB)
    + 6, Nederlands (iso639-2: nld) (Bitmap)(VOBSUB)
    + 7, Portugues (iso639-2: por) (Bitmap)(VOBSUB)
    + 8, Greek, Modern (iso639-2: ell) (Bitmap)(VOBSUB)
    + 9, Dansk (iso639-2: dan) (Bitmap)(VOBSUB)
    + 10, Suomi (iso639-2: fin) (Bitmap)(VOBSUB)
    + 11, Svenska (iso639-2: swe) (Bitmap)(VOBSUB)
    + 12, Norsk (iso639-2: nor) (Bitmap)(VOBSUB)
    + 13, Polish (iso639-2: pol) (Bitmap)(VOBSUB)
    + 14, English (iso639-2: eng) (Bitmap)(VOBSUB)
Reading chapter markers from file C:\Users\AAA\AppData\Local\Temp\Mysterien Und Geheimnisse Der Welt - Ägyptische Pyramiden-69-69-chapters.csv
[10:17:06] 2 job(s) to process
[10:17:06] starting job
[10:17:06] sync: expecting 67752 video frames
[ac3 @ 0x2308bf0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[10:17:06] job configuration:
[10:17:06]  * source
[10:17:06]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[10:17:06]    + title 69, chapter(s) 1 to 7
[10:17:06]  * destination
[10:17:06]    + P:\Videos\Mysterien Und Geheimnisse Der Welt - Ägyptische Pyramiden-69.mkv
[10:17:06]    + container: Matroska (.mkv)
[10:17:06]      + chapter markers
[10:17:06]  * video track
[10:17:06]    + decoder: mpeg2
[10:17:06]      + bitrate 8800 kbps
[10:17:06]    + frame rate: 25.000 fps -> peak rate limited to 25.000 fps
[10:17:06]    + loose anamorphic
[10:17:06]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[10:17:06]      + pixel aspect ratio: 1184 / 1107
[10:17:06]      + display dimensions: 770 * 592
[10:17:06]    + filters
[10:17:06]      + Detelecine (pullup) (default settings)
[10:17:06]      + Decomb ( 1:2:6:9:15:4:8)
[10:17:06]    + encoder: x264
[10:17:06]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[10:17:06]      + bitrate: 1800 kbps, pass: 1
[10:17:06]  * audio track 0
[10:17:06]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[10:17:06]      + bitrate: 160 kbps, samplerate: 48000 Hz
[10:17:06]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[10:17:06] yadif thread started for segment 0
[10:17:06] yadif thread started for segment 1
[10:17:06] yadif thread started for segment 2
[10:17:06] yadif thread started for segment 3
[10:17:06] decomb thread started for segment 0
[10:17:06] encx264: encoding with stored aspect 1184/1107
x264 [info]: using SAR=1184/1107
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
[10:17:06] decomb thread started for segment 3
libdvdread: Encrypted DVD support unavailable.
[10:17:06] decomb thread started for segment 1
[10:17:06] decomb thread started for segment 2
libdvdread: Device (null) inaccessible, CSS authentication not available.
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[10:17:06] reader: first SCR 146 id 224 DTS 21600
[10:17:06] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[10:17:14] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[10:17:15] output track 0: ac3 in sync after skipping 736 bytes
[10:18:18] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[10:18:18] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[10:18:19] output track 0: ac3 in sync after skipping 608 bytes
[10:18:19] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[10:18:19] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[10:18:19] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[10:18:20] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[10:18:20] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[10:18:21] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[10:18:21] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[10:18:22] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[10:18:22] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[10:18:22] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[10:37:22] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[11:05:38] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[11:05:52] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[11:06:32] 2708.583678s: Video -> Film
[11:06:33] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[11:06:33] 2708.703678s: Film -> Video
[11:06:33] reader: done. 2 scr changes
[11:06:35] work: average encoding speed for job is 22.814537 fps
[11:06:35] sync: got 67707 frames, 67752 expected
[11:06:35] mpeg2 done: 67707 frames
[11:06:35] render: 63476 frames output, 0 dropped and 0 duped for CFR/PFR
[11:06:35] render: lost time: 15228000 (4230 frames)
[11:06:35] render: gained time: 15228000 (14136 frames) (0 not accounted for)
[11:06:35] render: average dropped frame duration: 3600
x264 [info]: frame I:415   Avg QP:15.36  size: 61370  PSNR Mean Y:48.28 U:51.10 V:51.44 Avg:49.03 Global:48.04
x264 [info]: frame P:18428 Avg QP:17.66  size: 20090  PSNR Mean Y:45.91 U:49.14 V:49.57 Avg:46.74 Global:45.92
x264 [info]: frame B:44633 Avg QP:21.79  size:  4873  PSNR Mean Y:44.46 U:48.66 V:49.20 Avg:45.44 Global:44.43
x264 [info]: consecutive B-frames:  1.5%  4.5% 23.9% 70.1%
x264 [info]: mb I  I16..4:  4.6% 78.4% 16.9%
x264 [info]: mb P  I16..4:  1.3%  8.7%  1.0%  P16..4: 51.4% 26.0%  5.3%  0.3%  0.2%    skip: 5.8%
x264 [info]: mb B  I16..4:  0.2%  0.5%  0.1%  B16..8: 36.5%  6.5%  1.6%  direct: 9.5%  skip:45.2%  L0:38.3% L1:47.1% BI:14.6%
x264 [info]: final ratefactor: 18.02
x264 [info]: 8x8 transform intra:78.0% inter:63.5%
x264 [info]: coded y,uvDC,uvAC intra: 80.0% 83.5% 53.2% inter: 28.5% 28.1% 3.6%
x264 [info]: i16 v,h,dc,p: 23% 45%  5% 27%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 20%  5%  7%  8%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 16%  5%  9%  9%  7%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.4% UV:6.0%
x264 [info]: ref P L0: 53.3% 13.1% 23.9%  7.4%  2.3%  0.1%
x264 [info]: ref B L0: 85.7% 12.0%  2.3%
x264 [info]: ref B L1: 94.5%  5.5%
x264 [info]: SSIM Mean Y:0.9855753 (18.409db)
x264 [info]: PSNR Mean Y:44.904 U:48.814 V:49.321 Avg:45.844 Global:44.829 kb/s:1810.81
[11:06:36] decomb: deinterlaced 34163 | blended 0 | unfiltered 29313 | total 63476
[11:06:36] starting job
[11:06:36] sync: expecting 67707 video frames
[ac3 @ 0x3689c20] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[11:06:36] job configuration:
[11:06:36]  * source
[11:06:36]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[11:06:36]    + title 69, chapter(s) 1 to 7
[11:06:36]  * destination
[11:06:36]    + P:\Videos\Mysterien Und Geheimnisse Der Welt - Ägyptische Pyramiden-69.mkv
[11:06:36]    + container: Matroska (.mkv)
[11:06:36]      + chapter markers
[11:06:36]  * video track
[11:06:36]    + decoder: mpeg2
[11:06:36]      + bitrate 8800 kbps
[11:06:36]    + frame rate: 25.000 fps -> peak rate limited to 25.000 fps
[11:06:36]    + loose anamorphic
[11:06:36]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[11:06:36]      + pixel aspect ratio: 1184 / 1107
[11:06:36]      + display dimensions: 770 * 592
[11:06:36]    + filters
[11:06:36]      + Detelecine (pullup) (default settings)
[11:06:36]      + Decomb ( 1:2:6:9:15:4:8)
[11:06:36]    + encoder: x264
[11:06:36]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[11:06:36]      + bitrate: 1800 kbps, pass: 2
[11:06:36]  * audio track 0
[11:06:36]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[11:06:36]      + bitrate: 160 kbps, samplerate: 48000 Hz
[11:06:36]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[11:06:36] yadif thread started for segment 0
[11:06:36] yadif thread started for segment 1
[11:06:36] yadif thread started for segment 2
[11:06:36] encx264: encoding with stored aspect 1184/1107
x264 [info]: using SAR=1184/1107
libdvdread: Encrypted DVD support unavailable.
[11:06:36] yadif thread started for segment 3
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
[11:06:36] decomb thread started for segment 3
[11:06:36] decomb thread started for segment 0
libdvdread: Device (null) inaccessible, CSS authentication not available.
[11:06:36] decomb thread started for segment 1
[11:06:36] decomb thread started for segment 2
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[11:06:36] reader: first SCR 146 id 224 DTS 21600
[11:06:36] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[11:06:45] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[11:06:45] output track 0: ac3 in sync after skipping 736 bytes
[11:07:42] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[11:07:43] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[11:07:43] output track 0: ac3 in sync after skipping 608 bytes
[11:07:44] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[11:07:44] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[11:07:44] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[11:07:45] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[11:07:45] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[11:07:46] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[11:07:47] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[11:07:47] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[11:07:47] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[11:07:47] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[11:26:48] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[11:53:45] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[11:53:59] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[11:54:41] 2708.583678s: Video -> Film
[11:54:41] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[11:54:41] 2708.703678s: Film -> Video
[11:54:41] reader: done. 2 scr changes
[11:54:42] work: average encoding speed for job is 23.480928 fps
[11:54:42] sync: got 67707 frames, 67707 expected
[11:54:43] mpeg2 done: 67707 frames
[11:54:43] render: 63476 frames output, 0 dropped and 0 duped for CFR/PFR
[11:54:43] render: lost time: 15228000 (4230 frames)
[11:54:43] render: gained time: 15228000 (14136 frames) (0 not accounted for)
[11:54:43] render: average dropped frame duration: 3600
x264 [info]: frame I:415   Avg QP:15.58  size: 59990  PSNR Mean Y:48.21 U:51.00 V:51.33 Avg:48.96 Global:48.21
x264 [info]: frame P:18428 Avg QP:17.81  size: 19944  PSNR Mean Y:45.86 U:49.11 V:49.55 Avg:46.70 Global:46.12
x264 [info]: frame B:44633 Avg QP:22.00  size:  4866  PSNR Mean Y:44.41 U:48.63 V:49.17 Avg:45.41 Global:44.62
x264 [info]: consecutive B-frames:  1.5%  4.5% 23.9% 70.1%
x264 [info]: mb I  I16..4:  5.3% 77.9% 16.8%
x264 [info]: mb P  I16..4:  1.4%  8.5%  1.0%  P16..4: 51.8% 25.3%  5.4%  0.3%  0.2%    skip: 6.1%
x264 [info]: mb B  I16..4:  0.2%  0.5%  0.1%  B16..8: 36.5%  6.2%  1.6%  direct: 9.2%  skip:45.8%  L0:38.1% L1:47.3% BI:14.6%
x264 [info]: 8x8 transform intra:76.7% inter:64.1%
x264 [info]: coded y,uvDC,uvAC intra: 78.3% 82.5% 50.5% inter: 28.1% 27.3% 3.1%
x264 [info]: i16 v,h,dc,p: 24% 44%  5% 27%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 18% 19%  5%  8%  9%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 15%  5%  9%  9%  8%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.4% UV:6.0%
x264 [info]: ref P L0: 58.3% 15.3% 16.9%  7.7%  1.8%  0.1%
x264 [info]: ref B L0: 85.1% 12.7%  2.1%
x264 [info]: ref B L1: 94.4%  5.6%
x264 [info]: SSIM Mean Y:0.9857214 (18.453db)
x264 [info]: PSNR Mean Y:44.860 U:48.782 V:49.295 Avg:45.806 Global:45.027 kb/s:1800.31
[11:54:43] mux: track 0, 63476 frames, 609607599 bytes, 1800.24 kbps, fifo 8
[11:54:43] mux: track 1, 84656 frames, 54179840 bytes, 160.00 kbps, fifo 128
[11:54:43] decomb: deinterlaced 34163 | blended 0 | unfiltered 29313 | total 63476
[11:54:43] libhb: work result = 0
Rip done!
HandBrake has exited.
3) detelecine + same as source

result: same stuttering like videos 1 and 2

Code: Select all

# Windows GUI 0.9.5 2011010300
# Running: Microsoft Windows NT 6.0.6002 Service Pack 2
# CPU: Intel(R) Core(TM)2 Quad  CPU   Q9550  @ 2.83GHz
# Ram: 4094 MB
# Screen: 1280x1024
# Temp Dir: C:\Users\AAA\AppData\Local\Temp\
# Install Dir: D:\Programme\Videotools\Handbrake
# Data Dir: C:\Users\AAA\AppData\Roaming\HandBrake\HandBrake\0.9.5.3728

# CLI Query:  -i "P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden" -t 69 -c 1-7 -o "P:\Videos\Dokus\Test\Test_3.mkv"  -f mkv --detelecine --decomb=" 1:2:6:9:15:4:8" -w 720 --loose-anamorphic  -e x264 -b 1800 -2  -a 3 -E copy:ac3 -6 auto -R Auto -B auto -D 0 --markers="C:\Users\AAA\AppData\Local\Temp\Test_3-69-chapters.csv" -x rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2 --verbose=1
# User Query: False
-------------------------------------------

[12:27:36] hb_init: checking cpu count
[12:27:36] hb_init: starting libhb thread
HandBrake 0.9.5 (2011010300) - MinGW i386 - http://handbrake.fr
4 CPUs detected
Opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden...
[12:27:36] hb_scan: path=P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden, title_index=69
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden/BDMV/index.bdmv
libbluray/bluray.c:960: nav_get_title_list(P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden) failed (0x1830b48)
[12:27:36] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
[12:27:36] scan: DVD has 73 title(s)
[12:27:36] scan: scanning title 69
[12:27:36] scan: opening IFO for VTS 10
[12:27:36] scan: duration is 00:45:09 (2709120 ms)
[12:27:36] pgc_id: 2, pgn: 1: pgc: 0x1841610
[12:27:36] scan: vts=10, ttn=2, cells=0->6, blocks=0->1408939, 1401602 blocks
[12:27:36] scan: checking audio 1
[12:27:36] scan: id=80bd, lang=English (AC3), 3cc=eng ext=0
[12:27:36] scan: checking audio 2
[12:27:36] scan: id=81bd, lang=Francais (AC3), 3cc=fra ext=0
[12:27:36] scan: checking audio 3
[12:27:36] scan: id=82bd, lang=Deutsch (AC3), 3cc=deu ext=0
[12:27:36] scan: checking audio 4
[12:27:36] scan: id=83bd, lang=Espanol (AC3), 3cc=spa ext=0
[12:27:36] scan: checking audio 5
[12:27:36] scan: id=84bd, lang=Italiano (AC3), 3cc=ita ext=0
[12:27:36] scan: checking subtitle 1
[12:27:36] scan: id=20bd, lang=English, 3cc=eng
[12:27:36] scan: checking subtitle 2
[12:27:36] scan: id=21bd, lang=Francais, 3cc=fra
[12:27:36] scan: checking subtitle 3
[12:27:36] scan: id=22bd, lang=Espanol, 3cc=spa
[12:27:36] scan: checking subtitle 4
[12:27:36] scan: id=23bd, lang=Deutsch, 3cc=deu
[12:27:36] scan: checking subtitle 5
[12:27:36] scan: id=24bd, lang=Italiano, 3cc=ita
[12:27:36] scan: checking subtitle 6
[12:27:36] scan: id=25bd, lang=Nederlands, 3cc=nld
[12:27:36] scan: checking subtitle 7
[12:27:36] scan: id=26bd, lang=Portugues, 3cc=por
[12:27:36] scan: checking subtitle 8
[12:27:36] scan: id=27bd, lang=Greek, Modern, 3cc=ell
[12:27:36] scan: checking subtitle 9
[12:27:36] scan: id=28bd, lang=Dansk, 3cc=dan
[12:27:36] scan: checking subtitle 10
[12:27:36] scan: id=29bd, lang=Suomi, 3cc=fin
[12:27:36] scan: checking subtitle 11
[12:27:36] scan: id=2abd, lang=Svenska, 3cc=swe
[12:27:36] scan: checking subtitle 12
[12:27:36] scan: id=2bbd, lang=Norsk, 3cc=nor
[12:27:36] scan: checking subtitle 13
[12:27:36] scan: id=2cbd, lang=Polish, 3cc=pol
[12:27:36] scan: checking subtitle 14
[12:27:36] scan: id=2dbd, lang=English, 3cc=eng
[12:27:36] scan: title 69 has 7 chapters
[12:27:36] scan: chap 1 c=0->0, b=0->2619 (2620), 10365 ms
[12:27:36] scan: chap 2 c=1->1, b=1408940->1430709 (21770), 57192 ms
[12:27:36] scan: chap 3 c=2->2, b=31728->598686 (566959), 1088907 ms
[12:27:36] scan: chap 4 c=3->3, b=598687->1387014 (788328), 1507077 ms
[12:27:36] scan: chap 5 c=4->4, b=1387015->1392250 (5236), 13367 ms
[12:27:36] scan: chap 6 c=5->5, b=1392251->1408858 (16608), 32118 ms
[12:27:36] scan: chap 7 c=6->6, b=1408859->1408939 (81), 90 ms
[12:27:36] scan: aspect = 0
[12:27:36] scan: decoding previews for title 69
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[12:27:36] scan: title angle(s) 1
[12:27:36] scan: audio 0x83bd: AC-3, rate=48000Hz, bitrate=256000 Espanol (AC3) (2.0 ch)
[12:27:36] scan: audio 0x81bd: AC-3, rate=48000Hz, bitrate=192000 Francais (AC3) (2.0 ch)
[12:27:36] scan: audio 0x80bd: AC-3, rate=48000Hz, bitrate=160000 English (AC3) (2.0 ch)
[12:27:36] scan: audio 0x82bd: AC-3, rate=48000Hz, bitrate=160000 Deutsch (AC3) (2.0 ch)
[12:27:36] scan: audio 0x84bd: AC-3, rate=48000Hz, bitrate=160000 Italiano (AC3) (2.0 ch)
Scanning title 69...
[12:27:37] scan: 10 previews, 720x576, 25.000 fps, autocrop = 2/0/8/12, aspect 4:3, PAR 16:15
[12:27:37] scan: title (0) job->width:704, job->height:544
Scanning title 69...
[12:27:37] libhb: scan thread found 1 valid title(s)
+ title 69:
  + vts 10, ttn 2, cells 0->6 (1401602 blocks)
  + duration: 00:45:09
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 2/0/8/12
  + chapters:
    + 1: cells 0->0, 2620 blocks, duration 00:00:10
    + 2: cells 1->1, 21770 blocks, duration 00:00:57
    + 3: cells 2->2, 566959 blocks, duration 00:18:09
    + 4: cells 3->3, 788328 blocks, duration 00:25:07
    + 5: cells 4->4, 5236 blocks, duration 00:00:13
    + 6: cells 5->5, 16608 blocks, duration 00:00:32
    + 7: cells 6->6, 81 blocks, duration 00:00:00
  + audio tracks:
    + 1, English (AC3) (2.0 ch) (iso639-2: eng), 48000Hz, 160000bps
    + 2, Francais (AC3) (2.0 ch) (iso639-2: fra), 48000Hz, 192000bps
    + 3, Deutsch (AC3) (2.0 ch) (iso639-2: deu), 48000Hz, 160000bps
    + 4, Espanol (AC3) (2.0 ch) (iso639-2: spa), 48000Hz, 256000bps
    + 5, Italiano (AC3) (2.0 ch) (iso639-2: ita), 48000Hz, 160000bps
  + subtitle tracks:
    + 1, English (iso639-2: eng) (Bitmap)(VOBSUB)
    + 2, Francais (iso639-2: fra) (Bitmap)(VOBSUB)
    + 3, Espanol (iso639-2: spa) (Bitmap)(VOBSUB)
    + 4, Deutsch (iso639-2: deu) (Bitmap)(VOBSUB)
    + 5, Italiano (iso639-2: ita) (Bitmap)(VOBSUB)
    + 6, Nederlands (iso639-2: nld) (Bitmap)(VOBSUB)
    + 7, Portugues (iso639-2: por) (Bitmap)(VOBSUB)
    + 8, Greek, Modern (iso639-2: ell) (Bitmap)(VOBSUB)
    + 9, Dansk (iso639-2: dan) (Bitmap)(VOBSUB)
    + 10, Suomi (iso639-2: fin) (Bitmap)(VOBSUB)
    + 11, Svenska (iso639-2: swe) (Bitmap)(VOBSUB)
    + 12, Norsk (iso639-2: nor) (Bitmap)(VOBSUB)
    + 13, Polish (iso639-2: pol) (Bitmap)(VOBSUB)
    + 14, English (iso639-2: eng) (Bitmap)(VOBSUB)
Reading chapter markers from file C:\Users\AAA\AppData\Local\Temp\Test_3-69-chapters.csv
[12:27:37] 2 job(s) to process
[12:27:37] starting job
[12:27:37] sync: expecting 67752 video frames
[ac3 @ 0x18504d0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[12:27:37] job configuration:
[12:27:37]  * source
[12:27:37]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[12:27:37]    + title 69, chapter(s) 1 to 7
[12:27:37]  * destination
[12:27:37]    + P:\Videos\Dokus\Test\Test_3.mkv
[12:27:37]    + container: Matroska (.mkv)
[12:27:37]      + chapter markers
[12:27:37]  * video track
[12:27:37]    + decoder: mpeg2
[12:27:37]      + bitrate 8800 kbps
[12:27:37]    + frame rate: same as source (around 25.000 fps)
[12:27:37]    + loose anamorphic
[12:27:37]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[12:27:37]      + pixel aspect ratio: 1184 / 1107
[12:27:37]      + display dimensions: 770 * 592
[12:27:37]    + filters
[12:27:37]      + Detelecine (pullup) (default settings)
[12:27:37]      + Decomb ( 1:2:6:9:15:4:8)
[12:27:37]    + encoder: x264
[12:27:37]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[12:27:37]      + bitrate: 1800 kbps, pass: 1
[12:27:37]  * audio track 0
[12:27:37]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[12:27:37]      + bitrate: 160 kbps, samplerate: 48000 Hz
[12:27:37]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[12:27:37] yadif thread started for segment 0
[12:27:37] yadif thread started for segment 1
[12:27:37] yadif thread started for segment 2
[12:27:37] decomb thread started for segment 2
[12:27:37] decomb thread started for segment 0
[12:27:37] encx264: encoding with stored aspect 1184/1107
x264 [info]: using SAR=1184/1107
libdvdread: Encrypted DVD support unavailable.
[12:27:37] decomb thread started for segment 1
libdvdread: Device (null) inaccessible, CSS authentication not available.
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
[12:27:37] decomb thread started for segment 3
[12:27:37] yadif thread started for segment 3
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[12:27:37] reader: first SCR 146 id 224 DTS 21600
[12:27:37] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[12:27:46] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[12:27:46] output track 0: ac3 in sync after skipping 736 bytes
[12:28:47] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[12:28:47] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[12:28:48] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[12:28:48] output track 0: ac3 in sync after skipping 608 bytes
[12:28:48] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[12:28:48] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[12:28:49] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[12:28:50] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[12:28:50] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[12:28:51] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[12:28:51] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[12:28:51] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[12:28:51] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[12:48:09] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[13:16:58] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[13:17:13] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[13:17:54] 2708.583678s: Video -> Film
[13:17:54] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[13:17:54] 2708.703678s: Film -> Video
[13:17:54] reader: done. 2 scr changes
[13:17:57] work: average encoding speed for job is 22.431087 fps
[13:17:57] sync: got 67707 frames, 67752 expected
[13:17:57] mpeg2 done: 67707 frames
[13:17:57] render: lost time: 15228000 (4230 frames)
[13:17:57] render: gained time: 15228000 (14136 frames) (0 not accounted for)
[13:17:57] render: average dropped frame duration: 3600
x264 [info]: frame I:415   Avg QP:15.36  size: 61370  PSNR Mean Y:48.28 U:51.10 V:51.44 Avg:49.03 Global:48.04
x264 [info]: frame P:18428 Avg QP:17.66  size: 20090  PSNR Mean Y:45.91 U:49.14 V:49.57 Avg:46.74 Global:45.92
x264 [info]: frame B:44633 Avg QP:21.79  size:  4873  PSNR Mean Y:44.46 U:48.66 V:49.20 Avg:45.44 Global:44.43
x264 [info]: consecutive B-frames:  1.5%  4.5% 23.9% 70.1%
x264 [info]: mb I  I16..4:  4.6% 78.4% 16.9%
x264 [info]: mb P  I16..4:  1.3%  8.7%  1.0%  P16..4: 51.4% 26.0%  5.3%  0.3%  0.2%    skip: 5.8%
x264 [info]: mb B  I16..4:  0.2%  0.5%  0.1%  B16..8: 36.5%  6.5%  1.6%  direct: 9.5%  skip:45.2%  L0:38.3% L1:47.1% BI:14.6%
x264 [info]: final ratefactor: 18.02
x264 [info]: 8x8 transform intra:78.0% inter:63.5%
x264 [info]: coded y,uvDC,uvAC intra: 80.0% 83.5% 53.2% inter: 28.5% 28.1% 3.6%
x264 [info]: i16 v,h,dc,p: 23% 45%  5% 27%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 20%  5%  7%  8%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 16%  5%  9%  9%  7%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.4% UV:6.0%
x264 [info]: ref P L0: 53.3% 13.1% 23.9%  7.4%  2.3%  0.1%
x264 [info]: ref B L0: 85.7% 12.0%  2.3%
x264 [info]: ref B L1: 94.5%  5.5%
x264 [info]: SSIM Mean Y:0.9855753 (18.409db)
x264 [info]: PSNR Mean Y:44.904 U:48.814 V:49.321 Avg:45.844 Global:44.829 kb/s:1810.81
[13:17:57] decomb: deinterlaced 34163 | blended 0 | unfiltered 29313 | total 63476
[13:17:57] starting job
[13:17:57] sync: expecting 67707 video frames
[ac3 @ 0xfd4ebd0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[13:17:57] job configuration:
[13:17:57]  * source
[13:17:57]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[13:17:57]    + title 69, chapter(s) 1 to 7
[13:17:57]  * destination
[13:17:57]    + P:\Videos\Dokus\Test\Test_3.mkv
[13:17:57]    + container: Matroska (.mkv)
[13:17:57]      + chapter markers
[13:17:57]  * video track
[13:17:57]    + decoder: mpeg2
[13:17:57]      + bitrate 8800 kbps
[13:17:57]    + frame rate: same as source (around 25.000 fps)
[13:17:57]    + loose anamorphic
[13:17:57]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[13:17:57]      + pixel aspect ratio: 1184 / 1107
[13:17:57]      + display dimensions: 770 * 592
[13:17:57]    + filters
[13:17:57]      + Detelecine (pullup) (default settings)
[13:17:57]      + Decomb ( 1:2:6:9:15:4:8)
[13:17:57]    + encoder: x264
[13:17:57]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[13:17:57]      + bitrate: 1800 kbps, pass: 2
[13:17:57]  * audio track 0
[13:17:57]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[13:17:57]      + bitrate: 160 kbps, samplerate: 48000 Hz
[13:17:57]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[13:17:57] yadif thread started for segment 0
[13:17:57] yadif thread started for segment 1
libdvdread: Encrypted DVD support unavailable.
[13:17:57] yadif thread started for segment 2
[13:17:57] encx264: encoding with stored aspect 1184/1107
x264 [info]: [13:17:57] yadif thread started for segment 3
using SAR=1184/1107
[13:17:57] decomb thread started for segment 0
libdvdread: Device (null) inaccessible, CSS authentication not available.
[13:17:57] decomb thread started for segment 1
[13:17:57] decomb thread started for segment 2
[13:17:57] decomb thread started for segment 3
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[13:17:57] reader: first SCR 146 id 224 DTS 21600
[13:17:57] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[13:18:07] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[13:18:07] output track 0: ac3 in sync after skipping 736 bytes
[13:19:05] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[13:19:05] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[13:19:06] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[13:19:06] output track 0: ac3 in sync after skipping 608 bytes
[13:19:06] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[13:19:07] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[13:19:08] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[13:19:08] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[13:19:09] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[13:19:10] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[13:19:10] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[13:19:10] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[13:19:10] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[13:38:12] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[14:03:39] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[14:03:53] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[14:04:32] 2708.583678s: Video -> Film
[14:04:32] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[14:04:32] 2708.703678s: Film -> Video
[14:04:32] reader: done. 2 scr changes
[14:04:33] work: average encoding speed for job is 24.246534 fps
[14:04:33] sync: got 67707 frames, 67707 expected
[14:04:33] mpeg2 done: 67707 frames
[14:04:33] render: lost time: 15228000 (4230 frames)
[14:04:33] render: gained time: 15228000 (14136 frames) (0 not accounted for)
[14:04:33] render: average dropped frame duration: 3600
x264 [info]: frame I:415   Avg QP:15.58  size: 59994  PSNR Mean Y:48.21 U:51.00 V:51.33 Avg:48.96 Global:48.21
x264 [info]: frame P:18428 Avg QP:17.81  size: 19942  PSNR Mean Y:45.86 U:49.11 V:49.54 Avg:46.70 Global:46.12
x264 [info]: frame B:44633 Avg QP:22.00  size:  4867  PSNR Mean Y:44.41 U:48.63 V:49.17 Avg:45.41 Global:44.62
x264 [info]: consecutive B-frames:  1.5%  4.5% 23.9% 70.1%
x264 [info]: mb I  I16..4:  5.3% 77.9% 16.8%
x264 [info]: mb P  I16..4:  1.4%  8.5%  1.0%  P16..4: 51.8% 25.3%  5.4%  0.3%  0.2%    skip: 6.0%
x264 [info]: mb B  I16..4:  0.2%  0.5%  0.1%  B16..8: 36.4%  6.2%  1.6%  direct: 9.2%  skip:45.8%  L0:38.1% L1:47.3% BI:14.6%
x264 [info]: 8x8 transform intra:76.7% inter:64.1%
x264 [info]: coded y,uvDC,uvAC intra: 78.3% 82.5% 50.5% inter: 28.1% 27.3% 3.1%
x264 [info]: i16 v,h,dc,p: 24% 44%  5% 27%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 18% 19%  5%  8%  9%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 15%  5%  9%  9%  8%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.4% UV:6.0%
x264 [info]: ref P L0: 58.3% 15.3% 16.9%  7.7%  1.8%  0.1%
x264 [info]: ref B L0: 85.1% 12.7%  2.1%
x264 [info]: ref B L1: 94.4%  5.6%
x264 [info]: SSIM Mean Y:0.9857223 (18.453db)
x264 [info]: PSNR Mean Y:44.861 U:48.782 V:49.293 Avg:45.806 Global:45.026 kb/s:1800.30
[14:04:33] mux: track 0, 63476 frames, 609603462 bytes, 1800.24 kbps, fifo 8
[14:04:33] mux: track 1, 84656 frames, 54179840 bytes, 160.00 kbps, fifo 128
[14:04:33] decomb: deinterlaced 34163 | blended 0 | unfiltered 29313 | total 63476
[14:04:33] libhb: work result = 0
Rip done!
HandBrake has exited.
4) no detelecine + same as source

result: a lot less stuttering

Code: Select all

# Windows GUI 0.9.5 2011010300
# Running: Microsoft Windows NT 6.0.6002 Service Pack 2
# CPU: Intel(R) Core(TM)2 Quad  CPU   Q9550  @ 2.83GHz
# Ram: 4094 MB
# Screen: 1280x1024
# Temp Dir: C:\Users\AAA\AppData\Local\Temp\
# Install Dir: D:\Programme\Videotools\Handbrake
# Data Dir: C:\Users\AAA\AppData\Roaming\HandBrake\HandBrake\0.9.5.3728

# CLI Query:  -i "P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden" -t 69 -c 1-7 -o "P:\Videos\Dokus\Test\Test_4.mkv"  -f mkv --decomb=" 1:2:6:9:15:4:8" -w 720 --loose-anamorphic  -e x264 -b 1800 -2  -a 3 -E copy:ac3 -6 auto -R Auto -B auto -D 0 --markers="C:\Users\AAA\AppData\Local\Temp\Test_4-69-chapters.csv" -x rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2 --verbose=1
# User Query: False
-------------------------------------------

[16:00:59] hb_init: checking cpu count
[16:00:59] hb_init: starting libhb thread
HandBrake 0.9.5 (2011010300) - MinGW i386 - http://handbrake.fr
4 CPUs detected
Opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden...
[16:00:59] hb_scan: path=P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden, title_index=69
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden/BDMV/index.bdmv
libbluray/bluray.c:960: nav_get_title_list(P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden) failed (0x20c0b10)
[16:00:59] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
[16:00:59] scan: DVD has 73 title(s)
[16:00:59] scan: scanning title 69
[16:00:59] scan: opening IFO for VTS 10
[16:00:59] scan: duration is 00:45:09 (2709120 ms)
[16:00:59] pgc_id: 2, pgn: 1: pgc: 0x20d15d8
[16:00:59] scan: vts=10, ttn=2, cells=0->6, blocks=0->1408939, 1401602 blocks
[16:00:59] scan: checking audio 1
[16:00:59] scan: id=80bd, lang=English (AC3), 3cc=eng ext=0
[16:00:59] scan: checking audio 2
[16:00:59] scan: id=81bd, lang=Francais (AC3), 3cc=fra ext=0
[16:00:59] scan: checking audio 3
[16:00:59] scan: id=82bd, lang=Deutsch (AC3), 3cc=deu ext=0
[16:00:59] scan: checking audio 4
[16:00:59] scan: id=83bd, lang=Espanol (AC3), 3cc=spa ext=0
[16:00:59] scan: checking audio 5
[16:00:59] scan: id=84bd, lang=Italiano (AC3), 3cc=ita ext=0
[16:00:59] scan: checking subtitle 1
[16:00:59] scan: id=20bd, lang=English, 3cc=eng
[16:00:59] scan: checking subtitle 2
[16:00:59] scan: id=21bd, lang=Francais, 3cc=fra
[16:00:59] scan: checking subtitle 3
[16:00:59] scan: id=22bd, lang=Espanol, 3cc=spa
[16:00:59] scan: checking subtitle 4
[16:00:59] scan: id=23bd, lang=Deutsch, 3cc=deu
[16:00:59] scan: checking subtitle 5
[16:00:59] scan: id=24bd, lang=Italiano, 3cc=ita
[16:00:59] scan: checking subtitle 6
[16:00:59] scan: id=25bd, lang=Nederlands, 3cc=nld
[16:00:59] scan: checking subtitle 7
[16:00:59] scan: id=26bd, lang=Portugues, 3cc=por
[16:00:59] scan: checking subtitle 8
[16:00:59] scan: id=27bd, lang=Greek, Modern, 3cc=ell
[16:00:59] scan: checking subtitle 9
[16:00:59] scan: id=28bd, lang=Dansk, 3cc=dan
[16:00:59] scan: checking subtitle 10
[16:00:59] scan: id=29bd, lang=Suomi, 3cc=fin
[16:00:59] scan: checking subtitle 11
[16:00:59] scan: id=2abd, lang=Svenska, 3cc=swe
[16:00:59] scan: checking subtitle 12
[16:00:59] scan: id=2bbd, lang=Norsk, 3cc=nor
[16:00:59] scan: checking subtitle 13
[16:00:59] scan: id=2cbd, lang=Polish, 3cc=pol
[16:00:59] scan: checking subtitle 14
[16:00:59] scan: id=2dbd, lang=English, 3cc=eng
[16:00:59] scan: title 69 has 7 chapters
[16:00:59] scan: chap 1 c=0->0, b=0->2619 (2620), 10365 ms
[16:00:59] scan: chap 2 c=1->1, b=1408940->1430709 (21770), 57192 ms
[16:00:59] scan: chap 3 c=2->2, b=31728->598686 (566959), 1088907 ms
[16:00:59] scan: chap 4 c=3->3, b=598687->1387014 (788328), 1507077 ms
[16:00:59] scan: chap 5 c=4->4, b=1387015->1392250 (5236), 13367 ms
[16:00:59] scan: chap 6 c=5->5, b=1392251->1408858 (16608), 32118 ms
[16:00:59] scan: chap 7 c=6->6, b=1408859->1408939 (81), 90 ms
[16:00:59] scan: aspect = 0
[16:00:59] scan: decoding previews for title 69
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[16:00:59] scan: title angle(s) 1
[16:00:59] scan: audio 0x83bd: AC-3, rate=48000Hz, bitrate=256000 Espanol (AC3) (2.0 ch)
[16:00:59] scan: audio 0x81bd: AC-3, rate=48000Hz, bitrate=192000 Francais (AC3) (2.0 ch)
[16:00:59] scan: audio 0x80bd: AC-3, rate=48000Hz, bitrate=160000 English (AC3) (2.0 ch)
[16:00:59] scan: audio 0x82bd: AC-3, rate=48000Hz, bitrate=160000 Deutsch (AC3) (2.0 ch)
[16:00:59] scan: audio 0x84bd: AC-3, rate=48000Hz, bitrate=160000 Italiano (AC3) (2.0 ch)
Scanning title 69...
[16:00:59] scan: 10 previews, 720x576, 25.000 fps, autocrop = 2/0/8/12, aspect 4:3, PAR 16:15
[16:00:59] scan: title (0) job->width:704, job->height:544
[16:00:59] libhb: scan thread found 1 valid title(s)
+ title 69:
  + vts 10, ttn 2, cells 0->6 (1401602 blocks)
  + duration: 00:45:09
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 2/0/8/12
  + chapters:
    + 1: cells 0->0, 2620 blocks, duration 00:00:10
    + 2: cells 1->1, 21770 blocks, duration 00:00:57
    + 3: cells 2->2, 566959 blocks, duration 00:18:09
    + 4: cells 3->3, 788328 blocks, duration 00:25:07
    + 5: cells 4->4, 5236 blocks, duration 00:00:13
    + 6: cells 5->5, 16608 blocks, duration 00:00:32
    + 7: cells 6->6, 81 blocks, duration 00:00:00
  + audio tracks:
    + 1, English (AC3) (2.0 ch) (iso639-2: eng), 48000Hz, 160000bps
    + 2, Francais (AC3) (2.0 ch) (iso639-2: fra), 48000Hz, 192000bps
    + 3, Deutsch (AC3) (2.0 ch) (iso639-2: deu), 48000Hz, 160000bps
    + 4, Espanol (AC3) (2.0 ch) (iso639-2: spa), 48000Hz, 256000bps
    + 5, Italiano (AC3) (2.0 ch) (iso639-2: ita), 48000Hz, 160000bps
  + subtitle tracks:
    + 1, English (iso639-2: eng) (Bitmap)(VOBSUB)
    + 2, Francais (iso639-2: fra) (Bitmap)(VOBSUB)
    + 3, Espanol (iso639-2: spa) (Bitmap)(VOBSUB)
    + 4, Deutsch (iso639-2: deu) (Bitmap)(VOBSUB)
    + 5, Italiano (iso639-2: ita) (Bitmap)(VOBSUB)
    + 6, Nederlands (iso639-2: nld) (Bitmap)(VOBSUB)
    + 7, Portugues (iso639-2: por) (Bitmap)(VOBSUB)
    + 8, Greek, Modern (iso639-2: ell) (Bitmap)(VOBSUB)
    + 9, Dansk (iso639-2: dan) (Bitmap)(VOBSUB)
    + 10, Suomi (iso639-2: fin) (Bitmap)(VOBSUB)
    + 11, Svenska (iso639-2: swe) (Bitmap)(VOBSUB)
    + 12, Norsk (iso639-2: nor) (Bitmap)(VOBSUB)
    + 13, Polish (iso639-2: pol) (Bitmap)(VOBSUB)
    + 14, English (iso639-2: eng) (Bitmap)(VOBSUB)
Reading chapter markers from file C:\Users\AAA\AppData\Local\Temp\Test_4-69-chapters.csv
[16:00:59] 2 job(s) to process
[16:00:59] starting job
[16:00:59] sync: expecting 67752 video frames
[ac3 @ 0x20e0420] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[16:00:59] job configuration:
[16:00:59]  * source
[16:00:59]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[16:00:59]    + title 69, chapter(s) 1 to 7
[16:00:59]  * destination
[16:00:59]    + P:\Videos\Dokus\Test\Test_4.mkv
[16:00:59]    + container: Matroska (.mkv)
[16:00:59]      + chapter markers
[16:00:59]  * video track
[16:00:59]    + decoder: mpeg2
[16:00:59]      + bitrate 8800 kbps
[16:00:59]    + frame rate: same as source (around 25.000 fps)
[16:00:59]    + loose anamorphic
[16:00:59]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[16:00:59]      + pixel aspect ratio: 1184 / 1107
[16:00:59]      + display dimensions: 770 * 592
[16:00:59]    + filter
[16:00:59]      + Decomb ( 1:2:6:9:15:4:8)
[16:00:59]    + encoder: x264
[16:00:59]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[16:00:59]      + bitrate: 1800 kbps, pass: 1
[16:00:59]  * audio track 0
[16:00:59]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[16:00:59]      + bitrate: 160 kbps, samplerate: 48000 Hz
[16:00:59]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[16:00:59] yadif thread started for segment 0
[16:00:59] yadif thread started for segment 1
[16:00:59] encx264: encoding with stored aspect 1184/1107
[16:00:59] yadif thread started for segment 3
x264 [info]: using SAR=1184/1107
[16:00:59] decomb thread started for segment 2
[16:00:59] decomb thread started for segment 0
[16:00:59] decomb thread started for segment 3
[16:00:59] decomb thread started for segment 1
[16:00:59] yadif thread started for segment 2
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[16:00:59] reader: first SCR 146 id 224 DTS 21600
[16:00:59] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[16:01:07] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[16:01:07] output track 0: ac3 in sync after skipping 736 bytes
[16:02:12] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[16:02:12] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[16:02:12] output track 0: ac3 in sync after skipping 608 bytes
[16:02:12] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[16:02:12] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[16:02:12] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[16:02:13] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[16:02:14] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[16:02:15] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[16:02:15] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[16:02:16] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[16:02:16] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[16:02:16] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[16:22:37] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[16:53:58] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[16:54:14] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[16:54:56] 2708.583678s: Video -> Film
[16:54:56] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[16:54:56] 2708.703678s: Film -> Video
[16:54:56] reader: done. 2 scr changes
[16:54:59] work: average encoding speed for job is 20.909554 fps
[16:54:59] sync: got 67707 frames, 67752 expected
[16:54:59] mpeg2 done: 67707 frames
[16:54:59] render: lost time: 0 (0 frames)
[16:54:59] render: gained time: 0 (0 frames) (0 not accounted for)
x264 [info]: frame I:432   Avg QP:15.54  size: 57356  PSNR Mean Y:48.23 U:51.11 V:51.40 Avg:48.98 Global:48.08
x264 [info]: frame P:19727 Avg QP:17.89  size: 18961  PSNR Mean Y:45.84 U:49.13 V:49.56 Avg:46.68 Global:45.84
x264 [info]: frame B:47547 Avg QP:22.09  size:  4496  PSNR Mean Y:44.40 U:48.63 V:49.17 Avg:45.39 Global:44.35
x264 [info]: consecutive B-frames:  1.4%  4.3% 26.6% 67.7%
x264 [info]: mb I  I16..4:  4.9% 78.7% 16.3%
x264 [info]: mb P  I16..4:  1.3%  8.3%  0.9%  P16..4: 52.3% 25.2%  5.1%  0.3%  0.2%    skip: 6.3%
x264 [info]: mb B  I16..4:  0.2%  0.4%  0.0%  B16..8: 36.3%  6.2%  1.5%  direct: 9.1%  skip:46.3%  L0:38.8% L1:47.1% BI:14.1%
x264 [info]: final ratefactor: 18.31
x264 [info]: 8x8 transform intra:77.6% inter:64.3%
x264 [info]: coded y,uvDC,uvAC intra: 78.8% 82.9% 51.3% inter: 27.3% 27.6% 3.2%
x264 [info]: i16 v,h,dc,p: 23% 44%  5% 28%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 20%  5%  8%  8%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 19% 16%  5%  9%  9%  7%  7%  6%
x264 [info]: i8c dc,h,v,p: 47% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.3% UV:6.0%
x264 [info]: ref P L0: 53.1% 13.0% 24.2%  7.3%  2.5%  0.1%
x264 [info]: ref B L0: 85.8% 11.9%  2.3%
x264 [info]: ref B L1: 94.3%  5.7%
x264 [info]: SSIM Mean Y:0.9854715 (18.378db)
x264 [info]: PSNR Mean Y:44.844 U:48.791 V:49.298 Avg:45.788 Global:44.754 kb/s:1809.12
[16:54:59] decomb: deinterlaced 40153 | blended 0 | unfiltered 27553 | total 67706
[16:54:59] starting job
[16:54:59] sync: expecting 67707 video frames
[ac3 @ 0x20e0420] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[16:54:59] job configuration:
[16:54:59]  * source
[16:54:59]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[16:54:59]    + title 69, chapter(s) 1 to 7
[16:54:59]  * destination
[16:54:59]    + P:\Videos\Dokus\Test\Test_4.mkv
[16:54:59]    + container: Matroska (.mkv)
[16:54:59]      + chapter markers
[16:54:59]  * video track
[16:54:59]    + decoder: mpeg2
[16:54:59]      + bitrate 8800 kbps
[16:54:59]    + frame rate: same as source (around 25.000 fps)
[16:54:59]    + loose anamorphic
[16:54:59]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[16:54:59]      + pixel aspect ratio: 1184 / 1107
[16:54:59]      + display dimensions: 770 * 592
[16:54:59]    + filter
[16:54:59]      + Decomb ( 1:2:6:9:15:4:8)
[16:54:59]    + encoder: x264
[16:54:59]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[16:54:59]      + bitrate: 1800 kbps, pass: 2
[16:54:59]  * audio track 0
[16:54:59]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[16:54:59]      + bitrate: 160 kbps, samplerate: 48000 Hz
[16:54:59]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
libdvdread: Encrypted DVD support unavailable.
[16:54:59] yadif thread started for segment 0
libdvdread: Device (null) inaccessible, CSS authentication not available.
[16:54:59] encx264: encoding with stored aspect 1184/1107
[16:54:59] decomb thread started for segment 0
x264 [info]: [16:54:59] yadif thread started for segment 1
using SAR=1184/1107
[16:54:59] yadif thread started for segment 3
[16:54:59] decomb thread started for segment 3
[16:54:59] yadif thread started for segment 2
[16:54:59] decomb thread started for segment 2
[16:54:59] decomb thread started for segment 1
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[16:54:59] reader: first SCR 146 id 224 DTS 21600
[16:54:59] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[16:55:09] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[16:55:09] output track 0: ac3 in sync after skipping 736 bytes
[16:56:13] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[16:56:14] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[16:56:14] output track 0: ac3 in sync after skipping 608 bytes
[16:56:14] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[16:56:15] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[16:56:15] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[16:56:16] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[16:56:16] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[16:56:17] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[16:56:18] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[16:56:19] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[16:56:19] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[16:56:19] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[17:17:05] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[17:42:44] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[17:42:58] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[17:43:34] 2708.583678s: Video -> Film
[17:43:34] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[17:43:34] 2708.703678s: Film -> Video
[17:43:35] reader: done. 2 scr changes
[17:43:35] work: average encoding speed for job is 23.244789 fps
[17:43:35] sync: got 67707 frames, 67707 expected
[17:43:35] mpeg2 done: 67707 frames
[17:43:35] render: lost time: 0 (0 frames)
[17:43:35] render: gained time: 0 (0 frames) (0 not accounted for)
x264 [info]: frame I:432   Avg QP:15.73  size: 56082  PSNR Mean Y:48.16 U:51.01 V:51.30 Avg:48.91 Global:48.26
x264 [info]: frame P:19727 Avg QP:18.06  size: 18800  PSNR Mean Y:45.79 U:49.09 V:49.53 Avg:46.64 Global:46.05
x264 [info]: frame B:47547 Avg QP:22.28  size:  4511  PSNR Mean Y:44.36 U:48.60 V:49.15 Avg:45.35 Global:44.55
x264 [info]: consecutive B-frames:  1.4%  4.3% 26.6% 67.7%
x264 [info]: mb I  I16..4:  5.3% 78.2% 16.5%
x264 [info]: mb P  I16..4:  1.4%  8.2%  0.9%  P16..4: 52.6% 24.5%  5.2%  0.3%  0.2%    skip: 6.6%
x264 [info]: mb B  I16..4:  0.2%  0.4%  0.0%  B16..8: 36.3%  5.9%  1.5%  direct: 8.8%  skip:46.9%  L0:38.6% L1:47.2% BI:14.2%
x264 [info]: 8x8 transform intra:76.4% inter:65.0%
x264 [info]: coded y,uvDC,uvAC intra: 77.3% 82.1% 49.0% inter: 26.9% 26.8% 2.8%
x264 [info]: i16 v,h,dc,p: 24% 44%  5% 28%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 19%  5%  8%  9%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 15%  5%  9%  9%  8%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.3% UV:6.0%
x264 [info]: ref P L0: 58.1% 15.2% 17.1%  7.7%  1.9%  0.1%
x264 [info]: ref B L0: 85.2% 12.6%  2.1%
x264 [info]: ref B L1: 94.2%  5.8%
x264 [info]: SSIM Mean Y:0.9856339 (18.427db)
x264 [info]: PSNR Mean Y:44.800 U:48.761 V:49.271 Avg:45.751 Global:44.956 kb/s:1800.24
[17:43:35] mux: track 0, 67706 frames, 609582921 bytes, 1800.18 kbps, fifo 8
[17:43:35] mux: track 1, 84656 frames, 54179840 bytes, 160.00 kbps, fifo 128
[17:43:35] decomb: deinterlaced 40153 | blended 0 | unfiltered 27553 | total 67706
[17:43:35] libhb: work result = 0
Rip done!
HandBrake has exited.
5) no detelecine + 25 fps CFR

result: 67724 frames output, 0 dropped and 18 duped for CFR/PFR -> quite the same like video 4

Code: Select all

# Windows GUI 0.9.5 2011010300
# Running: Microsoft Windows NT 6.0.6002 Service Pack 2
# CPU: Intel(R) Core(TM)2 Quad  CPU   Q9550  @ 2.83GHz
# Ram: 4094 MB
# Screen: 1280x1024
# Temp Dir: C:\Users\AAA\AppData\Local\Temp\
# Install Dir: D:\Programme\Videotools\Handbrake
# Data Dir: C:\Users\AAA\AppData\Roaming\HandBrake\HandBrake\0.9.5.3728

# CLI Query:  -i "P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden" -t 69 -c 1-7 -o "P:\Videos\Dokus\Test\Test_5.mkv"  -f mkv --decomb=" 1:2:6:9:15:4:8" -w 720 --loose-anamorphic  -e x264 -b 1800 -2  -r 25 -a 3 -E copy:ac3 -6 auto -R Auto -B auto -D 0 --markers="C:\Users\AAA\AppData\Local\Temp\Test_5-69-chapters.csv" -x rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2 --verbose=1
# User Query: False
-------------------------------------------

[19:20:25] hb_init: checking cpu count
[19:20:25] hb_init: starting libhb thread
HandBrake 0.9.5 (2011010300) - MinGW i386 - http://handbrake.fr
4 CPUs detected
Opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden...
[19:20:25] hb_scan: path=P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden, title_index=69
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden/BDMV/index.bdmv
libbluray/bluray.c:960: nav_get_title_list(P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden) failed (0x2180b48)
[19:20:25] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
[19:20:25] scan: DVD has 73 title(s)
[19:20:25] scan: scanning title 69
[19:20:25] scan: opening IFO for VTS 10
[19:20:25] scan: duration is 00:45:09 (2709120 ms)
[19:20:25] pgc_id: 2, pgn: 1: pgc: 0x2191610
[19:20:25] scan: vts=10, ttn=2, cells=0->6, blocks=0->1408939, 1401602 blocks
[19:20:25] scan: checking audio 1
[19:20:25] scan: id=80bd, lang=English (AC3), 3cc=eng ext=0
[19:20:25] scan: checking audio 2
[19:20:25] scan: id=81bd, lang=Francais (AC3), 3cc=fra ext=0
[19:20:25] scan: checking audio 3
[19:20:25] scan: id=82bd, lang=Deutsch (AC3), 3cc=deu ext=0
[19:20:25] scan: checking audio 4
[19:20:25] scan: id=83bd, lang=Espanol (AC3), 3cc=spa ext=0
[19:20:25] scan: checking audio 5
[19:20:25] scan: id=84bd, lang=Italiano (AC3), 3cc=ita ext=0
[19:20:25] scan: checking subtitle 1
[19:20:25] scan: id=20bd, lang=English, 3cc=eng
[19:20:25] scan: checking subtitle 2
[19:20:25] scan: id=21bd, lang=Francais, 3cc=fra
[19:20:25] scan: checking subtitle 3
[19:20:25] scan: id=22bd, lang=Espanol, 3cc=spa
[19:20:25] scan: checking subtitle 4
[19:20:25] scan: id=23bd, lang=Deutsch, 3cc=deu
[19:20:25] scan: checking subtitle 5
[19:20:25] scan: id=24bd, lang=Italiano, 3cc=ita
[19:20:25] scan: checking subtitle 6
[19:20:25] scan: id=25bd, lang=Nederlands, 3cc=nld
[19:20:25] scan: checking subtitle 7
[19:20:25] scan: id=26bd, lang=Portugues, 3cc=por
[19:20:25] scan: checking subtitle 8
[19:20:25] scan: id=27bd, lang=Greek, Modern, 3cc=ell
[19:20:25] scan: checking subtitle 9
[19:20:25] scan: id=28bd, lang=Dansk, 3cc=dan
[19:20:25] scan: checking subtitle 10
[19:20:25] scan: id=29bd, lang=Suomi, 3cc=fin
[19:20:25] scan: checking subtitle 11
[19:20:25] scan: id=2abd, lang=Svenska, 3cc=swe
[19:20:25] scan: checking subtitle 12
[19:20:25] scan: id=2bbd, lang=Norsk, 3cc=nor
[19:20:25] scan: checking subtitle 13
[19:20:25] scan: id=2cbd, lang=Polish, 3cc=pol
[19:20:25] scan: checking subtitle 14
[19:20:25] scan: id=2dbd, lang=English, 3cc=eng
[19:20:25] scan: title 69 has 7 chapters
[19:20:25] scan: chap 1 c=0->0, b=0->2619 (2620), 10365 ms
[19:20:25] scan: chap 2 c=1->1, b=1408940->1430709 (21770), 57192 ms
[19:20:25] scan: chap 3 c=2->2, b=31728->598686 (566959), 1088907 ms
[19:20:25] scan: chap 4 c=3->3, b=598687->1387014 (788328), 1507077 ms
[19:20:25] scan: chap 5 c=4->4, b=1387015->1392250 (5236), 13367 ms
[19:20:25] scan: chap 6 c=5->5, b=1392251->1408858 (16608), 32118 ms
[19:20:25] scan: chap 7 c=6->6, b=1408859->1408939 (81), 90 ms
[19:20:25] scan: aspect = 0
[19:20:25] scan: decoding previews for title 69
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[19:20:25] scan: title angle(s) 1
[19:20:25] scan: audio 0x83bd: AC-3, rate=48000Hz, bitrate=256000 Espanol (AC3) (2.0 ch)
[19:20:25] scan: audio 0x81bd: AC-3, rate=48000Hz, bitrate=192000 Francais (AC3) (2.0 ch)
[19:20:25] scan: audio 0x80bd: AC-3, rate=48000Hz, bitrate=160000 English (AC3) (2.0 ch)
[19:20:25] scan: audio 0x82bd: AC-3, rate=48000Hz, bitrate=160000 Deutsch (AC3) (2.0 ch)
[19:20:25] scan: audio 0x84bd: AC-3, rate=48000Hz, bitrate=160000 Italiano (AC3) (2.0 ch)
Scanning title 69...
[19:20:25] scan: 10 previews, 720x576, 25.000 fps, autocrop = 2/0/8/12, aspect 4:3, PAR 16:15
[19:20:25] scan: title (0) job->width:704, job->height:544
[19:20:25] libhb: scan thread found 1 valid title(s)
+ title 69:
  + vts 10, ttn 2, cells 0->6 (1401602 blocks)
  + duration: 00:45:09
  + size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
  + autocrop: 2/0/8/12
  + chapters:
    + 1: cells 0->0, 2620 blocks, duration 00:00:10
    + 2: cells 1->1, 21770 blocks, duration 00:00:57
    + 3: cells 2->2, 566959 blocks, duration 00:18:09
    + 4: cells 3->3, 788328 blocks, duration 00:25:07
    + 5: cells 4->4, 5236 blocks, duration 00:00:13
    + 6: cells 5->5, 16608 blocks, duration 00:00:32
    + 7: cells 6->6, 81 blocks, duration 00:00:00
  + audio tracks:
    + 1, English (AC3) (2.0 ch) (iso639-2: eng), 48000Hz, 160000bps
    + 2, Francais (AC3) (2.0 ch) (iso639-2: fra), 48000Hz, 192000bps
    + 3, Deutsch (AC3) (2.0 ch) (iso639-2: deu), 48000Hz, 160000bps
    + 4, Espanol (AC3) (2.0 ch) (iso639-2: spa), 48000Hz, 256000bps
    + 5, Italiano (AC3) (2.0 ch) (iso639-2: ita), 48000Hz, 160000bps
  + subtitle tracks:
    + 1, English (iso639-2: eng) (Bitmap)(VOBSUB)
    + 2, Francais (iso639-2: fra) (Bitmap)(VOBSUB)
    + 3, Espanol (iso639-2: spa) (Bitmap)(VOBSUB)
    + 4, Deutsch (iso639-2: deu) (Bitmap)(VOBSUB)
    + 5, Italiano (iso639-2: ita) (Bitmap)(VOBSUB)
    + 6, Nederlands (iso639-2: nld) (Bitmap)(VOBSUB)
    + 7, Portugues (iso639-2: por) (Bitmap)(VOBSUB)
    + 8, Greek, Modern (iso639-2: ell) (Bitmap)(VOBSUB)
    + 9, Dansk (iso639-2: dan) (Bitmap)(VOBSUB)
    + 10, Suomi (iso639-2: fin) (Bitmap)(VOBSUB)
    + 11, Svenska (iso639-2: swe) (Bitmap)(VOBSUB)
    + 12, Norsk (iso639-2: nor) (Bitmap)(VOBSUB)
    + 13, Polish (iso639-2: pol) (Bitmap)(VOBSUB)
    + 14, English (iso639-2: eng) (Bitmap)(VOBSUB)
Reading chapter markers from file C:\Users\AAA\AppData\Local\Temp\Test_5-69-chapters.csv
[19:20:25] 2 job(s) to process
[19:20:25] starting job
[19:20:25] sync: expecting 67752 video frames
[ac3 @ 0x21a04d0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[19:20:25] job configuration:
[19:20:25]  * source
[19:20:25]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[19:20:25]    + title 69, chapter(s) 1 to 7
[19:20:25]  * destination
[19:20:25]    + P:\Videos\Dokus\Test\Test_5.mkv
[19:20:25]    + container: Matroska (.mkv)
[19:20:25]      + chapter markers
[19:20:25]  * video track
[19:20:25]    + decoder: mpeg2
[19:20:25]      + bitrate 8800 kbps
[19:20:25]    + frame rate: 25.000 fps -> constant 25.000 fps
[19:20:25]    + loose anamorphic
[19:20:25]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[19:20:25]      + pixel aspect ratio: 1184 / 1107
[19:20:25]      + display dimensions: 770 * 592
[19:20:25]    + filter
[19:20:25]      + Decomb ( 1:2:6:9:15:4:8)
[19:20:25]    + encoder: x264
[19:20:25]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[19:20:25]      + bitrate: 1800 kbps, pass: 1
[19:20:25]  * audio track 0
[19:20:25]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[19:20:25]      + bitrate: 160 kbps, samplerate: 48000 Hz
[19:20:25]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions:[19:20:25] yadif thread started for segment 1
 1 2[19:20:25] yadif thread started for segment 0
 3 4 5 6 7 8
[19:20:25] yadif thread started for segment 2
[19:20:25] yadif thread started for segment 3
[19:20:25] decomb thread started for segment 1
[19:20:25] decomb thread started for segment 0
[19:20:25] decomb thread started for segment 2
[19:20:25] encx264: encoding with stored aspect 1184/1107
x264 [info]: using SAR=1184/1107
[19:20:25] decomb thread started for segment 3
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[19:20:25] reader: first SCR 146 id 224 DTS 21600
[19:20:25] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[19:20:33] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[19:20:33] output track 0: ac3 in sync after skipping 736 bytes
[19:21:37] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[19:21:37] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[19:21:37] output track 0: ac3 in sync after skipping 608 bytes
[19:21:37] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[19:21:38] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[19:21:38] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[19:21:38] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[19:21:39] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[19:21:40] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[19:21:41] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[19:21:42] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[19:21:42] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[19:21:42] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[19:42:15] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[20:11:23] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[20:11:38] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[20:12:18] 2708.583678s: Video -> Film
[20:12:19] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[20:12:19] 2708.703678s: Film -> Video
[20:12:19] reader: done. 2 scr changes
[20:12:21] work: average encoding speed for job is 21.737301 fps
[20:12:21] sync: got 67707 frames, 67752 expected
[20:12:21] mpeg2 done: 67707 frames
[20:12:21] render: 67724 frames output, 0 dropped and 18 duped for CFR/PFR
[20:12:21] render: lost time: 0 (0 frames)
[20:12:21] render: gained time: 0 (0 frames) (0 not accounted for)
x264 [info]: frame I:432   Avg QP:15.54  size: 57350  PSNR Mean Y:48.22 U:51.11 V:51.40 Avg:48.98 Global:48.08
x264 [info]: frame P:19734 Avg QP:17.89  size: 18957  PSNR Mean Y:45.84 U:49.13 V:49.56 Avg:46.68 Global:45.84
x264 [info]: frame B:47558 Avg QP:22.08  size:  4494  PSNR Mean Y:44.40 U:48.63 V:49.17 Avg:45.39 Global:44.35
x264 [info]: consecutive B-frames:  1.4%  4.3% 26.6% 67.7%
x264 [info]: mb I  I16..4:  4.9% 78.7% 16.4%
x264 [info]: mb P  I16..4:  1.3%  8.3%  0.9%  P16..4: 52.3% 25.2%  5.1%  0.3%  0.2%    skip: 6.3%
x264 [info]: mb B  I16..4:  0.2%  0.4%  0.0%  B16..8: 36.3%  6.2%  1.5%  direct: 9.1%  skip:46.3%  L0:38.8% L1:47.1% BI:14.1%
x264 [info]: final ratefactor: 18.31
x264 [info]: 8x8 transform intra:77.6% inter:64.3%
x264 [info]: coded y,uvDC,uvAC intra: 78.7% 82.8% 51.3% inter: 27.3% 27.5% 3.2%
x264 [info]: i16 v,h,dc,p: 23% 44%  5% 28%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 20%  5%  8%  8%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 19% 16%  5%  9%  9%  7%  7%  6%
x264 [info]: i8c dc,h,v,p: 47% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.3% UV:6.0%
x264 [info]: ref P L0: 53.1% 13.0% 24.2%  7.3%  2.5%  0.1%
x264 [info]: ref B L0: 85.8% 11.9%  2.3%
x264 [info]: ref B L1: 94.3%  5.7%
x264 [info]: SSIM Mean Y:0.9854725 (18.378db)
x264 [info]: PSNR Mean Y:44.844 U:48.790 V:49.298 Avg:45.788 Global:44.754 kb/s:1809.11
[20:12:21] decomb: deinterlaced 40153 | blended 0 | unfiltered 27553 | total 67706
[20:12:21] starting job
[20:12:21] sync: expecting 67707 video frames
[ac3 @ 0x34ee3e0] No channel layout specified. The encoder will guess the layout, but it might be incorrect.
[20:12:21] job configuration:
[20:12:21]  * source
[20:12:21]    + P:\Videos\Dokus\Mysterien und Geheimnisse der Welt - Ägyptische Pyramiden
[20:12:21]    + title 69, chapter(s) 1 to 7
[20:12:21]  * destination
[20:12:21]    + P:\Videos\Dokus\Test\Test_5.mkv
[20:12:21]    + container: Matroska (.mkv)
[20:12:21]      + chapter markers
[20:12:21]  * video track
[20:12:21]    + decoder: mpeg2
[20:12:21]      + bitrate 8800 kbps
[20:12:21]    + frame rate: 25.000 fps -> constant 25.000 fps
[20:12:21]    + loose anamorphic
[20:12:21]      + storage dimensions: 720 * 576 -> 720 * 592, crop 2/0/8/12, mod 0
[20:12:21]      + pixel aspect ratio: 1184 / 1107
[20:12:21]      + display dimensions: 770 * 592
[20:12:21]    + filter
[20:12:21]      + Decomb ( 1:2:6:9:15:4:8)
[20:12:21]    + encoder: x264
[20:12:21]      + options: rc-lookahead=50:ref=4:no-fast-pskip=1:analyse=all:trellis=2:b-adapt=2
[20:12:21]      + bitrate: 1800 kbps, pass: 2
[20:12:21]  * audio track 0
[20:12:21]    + decoder: Deutsch (AC3) (2.0 ch) (track 3, id 82bd)
[20:12:21]      + bitrate: 160 kbps, samplerate: 48000 Hz
[20:12:21]    + AC3 passthrough
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdread: Device (null) inaccessible, CSS authentication not available.
NAME OPEN FAILED
libdvdnav: Unable to find home directorylibdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[20:12:21] yadif thread started for segment 0
[20:12:21] yadif thread started for segment 2
libdvdread: Encrypted DVD support unavailable.
[20:12:21] encx264: encoding with stored aspect 1184/1107
x264 [info]: [20:12:21] yadif thread started for segment 1
using SAR=1184/1107
[20:12:21] yadif thread started for segment 3
libdvdread: Device (null) inaccessible, CSS authentication not available.
[20:12:21] decomb thread started for segment 0
[20:12:21] decomb thread started for segment 1
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
[20:12:21] decomb thread started for segment 2
[20:12:21] decomb thread started for segment 3
libdvdnav: DVD disk reports itself with Region mask 0x00000000. Regions: 1 2 3 4 5 6 7 8
[20:12:21] reader: first SCR 146 id 224 DTS 21600
[20:12:21] mpeg2: "Chapter 1" (1) at frame 0 time 3600
x264 [info]: profile High, level 3.1
No accelerated IMDCT transform found
[20:12:31] mpeg2: "Chapter 2" (2) at frame 259 time 936000
[20:12:31] output track 0: ac3 in sync after skipping 736 bytes
[20:13:31] mpeg2 tag botch: pts 6013655, tag pts 5624855 buf 0x0
[20:13:31] mpeg2 tag botch: pts 6035255, tag pts 5635655 buf 0x0
[20:13:32] output track 0: ac3 in sync after skipping 608 bytes
[20:13:32] mpeg2: "Chapter 3" (3) at frame 1671 time 6020855
[20:13:32] sync: adding 71 ms of silence to audio 33469  start 6071731, next 6065280
[20:13:33] mpeg2 tag botch: pts 6129331, tag pts 5689655 buf 0x0
[20:13:33] mpeg2 tag botch: pts 6172531, tag pts 5743655 buf 0x0
[20:13:34] mpeg2 tag botch: pts 6215731, tag pts 5797655 buf 0x0
[20:13:35] mpeg2 tag botch: pts 6258931, tag pts 5851655 buf 0x0
[20:13:35] mpeg2 tag botch: pts 6302131, tag pts 5905655 buf 0x0
[20:13:36] mpeg2 tag botch: pts 6345331, tag pts 5959655 buf 0x0
[20:13:37] mpeg2 tag botch: pts 6356131, tag pts 6013655 buf 0x0
[20:13:37] mpeg2 tag botch: pts 6366931, tag pts 6035255 buf 0x0
[20:33:28] mpeg2: "Chapter 4" (4) at frame 28878 time 104031331
[20:59:07] mpeg2: "Chapter 5" (5) at frame 66543 time 239625331
[20:59:20] mpeg2: "Chapter 6" (6) at frame 66877 time 240827731
[20:59:57] 2708.583678s: Video -> Film
[20:59:57] mpeg2: "Chapter 7" (7) at frame 67697 time 243779731
[20:59:57] 2708.703678s: Film -> Video
[20:59:57] reader: done. 2 scr changes
[20:59:58] work: average encoding speed for job is 23.728760 fps
[20:59:58] sync: got 67707 frames, 67707 expected
[20:59:58] mpeg2 done: 67707 frames
[20:59:58] render: 67724 frames output, 0 dropped and 18 duped for CFR/PFR
[20:59:58] render: lost time: 0 (0 frames)
[20:59:58] render: gained time: 0 (0 frames) (0 not accounted for)
x264 [info]: frame I:432   Avg QP:15.73  size: 56076  PSNR Mean Y:48.16 U:51.01 V:51.29 Avg:48.91 Global:48.26
x264 [info]: frame P:19734 Avg QP:18.06  size: 18795  PSNR Mean Y:45.80 U:49.09 V:49.53 Avg:46.64 Global:46.05
x264 [info]: frame B:47558 Avg QP:22.28  size:  4510  PSNR Mean Y:44.36 U:48.60 V:49.15 Avg:45.35 Global:44.55
x264 [info]: consecutive B-frames:  1.4%  4.3% 26.6% 67.7%
x264 [info]: mb I  I16..4:  5.3% 78.2% 16.5%
x264 [info]: mb P  I16..4:  1.4%  8.2%  0.9%  P16..4: 52.6% 24.5%  5.2%  0.3%  0.2%    skip: 6.6%
x264 [info]: mb B  I16..4:  0.2%  0.4%  0.0%  B16..8: 36.3%  5.9%  1.5%  direct: 8.8%  skip:46.9%  L0:38.6% L1:47.2% BI:14.2%
x264 [info]: 8x8 transform intra:76.4% inter:65.0%
x264 [info]: coded y,uvDC,uvAC intra: 77.3% 82.0% 49.0% inter: 26.9% 26.8% 2.8%
x264 [info]: i16 v,h,dc,p: 24% 44%  5% 28%
x264 [info]: i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 19%  5%  8%  9%  7%  8%  8%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 22% 20% 15%  5%  9%  9%  8%  7%  6%
x264 [info]: i8c dc,h,v,p: 46% 25% 20%  9%
x264 [info]: Weighted P-Frames: Y:9.3% UV:6.0%
x264 [info]: ref P L0: 58.1% 15.2% 17.1%  7.7%  1.9%  0.1%
x264 [info]: ref B L0: 85.2% 12.7%  2.1%
x264 [info]: ref B L1: 94.2%  5.8%
x264 [info]: SSIM Mean Y:0.9856348 (18.427db)
x264 [info]: PSNR Mean Y:44.801 U:48.762 V:49.273 Avg:45.752 Global:44.956 kb/s:1800.23
[20:59:58] mux: track 0, 67724 frames, 609576478 bytes, 1800.15 kbps, fifo 8
[20:59:58] mux: track 1, 84656 frames, 54179840 bytes, 160.00 kbps, fifo 128
[20:59:58] decomb: deinterlaced 40153 | blended 0 | unfiltered 27553 | total 67706
[20:59:59] libhb: work result = 0
Rip done!
HandBrake has exited.
Maybe this information helps to improve the detelecine filter.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Sat Apr 09, 2011 10:40 pm
by sneaker
I'm also wondering about the output of Handbrake. If I'm encoding to 23.976
CFR(!) in mp4 container for example, mediainfo still shows the following
info:
Frame rate mode : Variable
Frame rate : 23.976 fps
Minimum frame rate : 23.974 fps
Maximum frame rate : 23.981 fps
(sample: http://www.mediafire.com/?hiamk6v76wdxry4 )

Code: Select all

HandBrake svn3915 2011040901
OS: Microsoft Windows NT 6.1.7601 Service Pack 1
CPU: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz
Ram: 8190 MB, Screen: 1280x1024
Temp Dir: C:\Users\anonym\AppData\Local\Temp\
Install Dir: C:\Program Files (x86)\Handbrake
Data Dir: C:\Users\anonym\AppData\Roaming\HandBrake\HandBrake\0.9.5.3915

CLI Query:  -i "I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv" -t 1 -c 1 -o "N:\Handbrake\Ass Sample-1.mkv"  -f mkv --strict-anamorphic  -e x264 -q 20 -r 23.976 --cfr  -a 1 -E faac -B 160 -6 dpl2 -R Auto -D 0 --gain=0 --subtitle 1 --subtitle-burn=1 -x ref=2:bframes=2:subq=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0 --verbose=1
User Query: False
-------------------------------------------

[23:41:09] hb_init: starting libhb thread
HandBrake svn3915 (2011040901) - MinGW i386 - http://handbrake.fr
8 CPUs detected
Opening I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv...
[23:41:09] hb_scan: path=I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv, title_index=1
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv/BDMV/index.bdmv
libbluray/bluray.c:1376: nav_get_title_list(I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv) failed (0x1be9f90)
[23:41:09] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.IFO failed
libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.BUP failed
libdvdread: Can't open file VIDEO_TS.IFO.
libdvdnav: vm: failed to read VIDEO_TS.IFO
[23:41:09] dvd: not a dvd - trying as a stream/file instead
Input #0, matroska,webm, from 'I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv':
  Duration: 00:00:35.51, start: 0.000000, bitrate: 192 kb/s
    Chapter #0.0: start 0.000000, end 35.510000
    Metadata:
      title           : Episode
    Stream #0.0(jpn): Video: h264 (High), yuv420p, 1280x720 [PAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default) (forced)
    Stream #0.1(jpn): Audio: ac3, 48000 Hz, stereo, s16, 192 kb/s (default) (forced)
    Stream #0.2(eng): Subtitle: ass (default) (forced)
    Stream #0.3(eng): Subtitle: [0][0][0][0] / 0x0000
    Stream #0.4: Attachment: [0][0][0][0] / 0x0000
    Metadata:
      filename        : CAMBRIAB.TTF
    Stream #0.5: Attachment: [0][0][0][0] / 0x0000
    Metadata:
      filename        : CAMBRIAI.TTF
    Stream #0.6: Attachment: [0][0][0][0] / 0x0000
    Metadata:
      filename        : CAMBRIAZ.TTF
    Stream #0.7: Attachment: [0][0][0][0] / 0x0000
    Metadata:
      filename        : BellGot0.otf
    Stream #0.8: Attachment: [0][0][0][0] / 0x0000
    Metadata:
      filename        : BellGothicStd-Black.otf
    Stream #0.9: Attachment: [0][0][0][0] / 0x0000
    Metadata:
      filename        : CAMBRIA.TTC
[23:41:09] scan: decoding previews for title 1
[23:41:09] scan: audio 0x1: AC-3, rate=48000Hz, bitrate=192000 Japanese (AC3) (2.0 ch)
Scanning title 1...
Scanning title 1...
[23:41:09] Warning: Could not read data for preview 10, skipped
[23:41:09] scan: 9 previews, 1280x720, 23.976 fps, autocrop = 0/0/0/0, aspect 16:9, PAR 1:1
[23:41:09] scan: title (0) job->width:1280, job->height:720
[23:41:09] libhb: scan thread found 1 valid title(s)
+ title 1:
  + stream: I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv
  + duration: 00:00:35
  + size: 1280x720, pixel aspect: 1/1, display aspect: 1.78, 23.976 fps
  + autocrop: 0/0/0/0
  + chapters:
    + 1: cells 0->0, 0 blocks, duration 00:00:35
  + audio tracks:
    + 1, Japanese (AC3) (2.0 ch) (iso639-2: jpn), 48000Hz, 192000bps
  + subtitle tracks:
    + 1, English (iso639-2: eng) (Text)(SSA)
    + 2, English (iso639-2: eng) (Text)(UTF-8)
[23:41:09] 1 job(s) to process
[23:41:09] starting job
[23:41:09] work: sanitizing track 0 mixdown Dolby Pro Logic II to Stereo
[23:41:09] sync: expecting 875 video frames
[23:41:09] job configuration:
[23:41:09]  * source
[23:41:09]    + I:\anime\To Aru Kagaku no Railgun\ass_sample.mkv
[23:41:09]    + title 1, chapter(s) 1 to 1
[23:41:09]    + container: matroska,webm
[23:41:09]    + data rate: 192 kbps
[23:41:09]  * destination
[23:41:09]    + N:\Handbrake\Ass Sample-1.mkv
[23:41:09]    + container: Matroska (.mkv)
[23:41:09]  * video track
[23:41:09]    + decoder: h264
[23:41:09]    + frame rate: 23.976 fps -> constant 23.976 fps
[23:41:09]    + strict anamorphic
[23:41:09]      + storage dimensions: 1280 * 720 -> 1280 * 720, crop 0/0/0/0, mod 0
[23:41:09]      + pixel aspect ratio: 1 / 1
[23:41:09]      + display dimensions: 1280 * 720
[23:41:09]    + encoder: x264
[23:41:09]      + options: ref=2:bframes=2:subq=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0
[23:41:09]      + quality: 20.00 (RF)
[23:41:09]  * subtitle track 0, English (id 0x2) Text [SSA] -> Render/Burn in
[23:41:09]  * audio track 0
[23:41:09]    + decoder: Japanese (AC3) (2.0 ch) (track 1, id 0x1)
[23:41:09]      + bitrate: 192 kbps, samplerate: 48000 Hz
[23:41:09]    + mixdown: Stereo
[23:41:09]    + encoder: faac
[23:41:09]      + bitrate: 160 kbps, samplerate: 48000 Hz
[23:41:09] encx264: min-keyint: 24, keyint: 240
[23:41:09] encx264: encoding with stored aspect 1/1
[23:41:09] encx264: Encoding at constant RF 20.000000
x264 [info]: using SAR=1/1
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2
x264 [info]: profile Main, level 3.1
Fontconfig error: Cannot load default config file
[23:41:09] [ass] No usable fontconfig configuration file found, using fallback.
Fontconfig error: Cannot load default config file
[23:41:09] reader: first SCR 0 id 0 DTS 0
No accelerated IMDCT transform found
[23:41:09] [ass] Glyph 0x3000 not found, selecting one more font for (Cambria, 80, 0)
[23:41:17] reader: done. 1 scr changes
[23:41:19] work: average encoding speed for job is 90.308891 fps
[23:41:19] sync: got 799 frames, 875 expected
[23:41:19] h264-decoder done: 799 frames, 0 decoder errors, 0 drops
[23:41:19] render: 799 frames output, 0 dropped and 0 duped for CFR/PFR
[23:41:19] render: lost time: 0 (0 frames)
[23:41:19] render: gained time: 0 (0 frames) (0 not accounted for)
x264 [info]: frame I:8     Avg QP:15.22  size:103453  PSNR Mean Y:49.43 U:54.50 V:54.66 Avg:50.56 Global:50.45
x264 [info]: frame P:282   Avg QP:17.54  size: 14407  PSNR Mean Y:47.35 U:50.58 V:50.84 Avg:48.19 Global:47.64
x264 [info]: frame B:509   Avg QP:21.76  size:  1391  PSNR Mean Y:47.17 U:50.45 V:50.64 Avg:48.01 Global:47.36
x264 [info]: consecutive B-frames:  4.1%  1.3% 94.6%
x264 [info]: mb I  I16..4: 27.2%  0.0% 72.8%
x264 [info]: mb P  I16..4:  2.4%  0.0%  4.6%  P16..4: 34.9%  7.6%  4.7%  0.0%  0.0%    skip:45.8%
x264 [info]: mb B  I16..4:  0.7%  0.0%  0.0%  B16..8: 11.9%  1.4%  0.1%  direct: 3.2%  skip:82.7%  L0:43.5% L1:52.9% BI: 3.6%
x264 [info]: coded y,uvDC,uvAC intra: 60.5% 74.1% 53.7% inter: 4.1% 10.9% 0.9%
x264 [info]: i16 v,h,dc,p: 29% 40%  9% 22%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 20% 27% 13%  5%  7%  6%  8%  6%  7%
x264 [info]: i8c dc,h,v,p: 46% 29% 17%  7%
x264 [info]: Weighted P-Frames: Y:0.0% UV:0.0%
x264 [info]: ref P L0: 73.5%  7.5% 19.0%
x264 [info]: ref B L0: 78.0% 22.0%
x264 [info]: ref B L1: 88.4% 11.6%
x264 [info]: SSIM Mean Y:0.9924748 (21.235db)
x264 [info]: PSNR Mean Y:47.253 U:50.535 V:50.752 Avg:48.098 Global:47.479 kb/s:1344.03
[23:41:19] mux: track 0, 799 frames, 5598457 bytes, 1342.29 kbps, fifo 8
[23:41:19] mux: track 1, 1564 frames, 667592 bytes, 160.06 kbps, fifo 512
[23:41:20] libhb: work result = 0
Rip done!
HandBrake has exited.
On a different file I got this (again with 23.976 CFR selected):
Frame rate mode : Variable
Frame rate : 24.068 fps
Original frame rate : 23.976 fps
Minimum frame rate : 23.974 fps
Maximum frame rate : 90 000.000 fps
(sample: http://www.mediafire.com/?ixgluqga21h8h54 )

Code: Select all

HandBrake svn3915 2011040901
OS: Microsoft Windows NT 6.1.7601 Service Pack 1
CPU: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz
Ram: 8190 MB, Screen: 1280x1024
Temp Dir: C:\Users\anonym\AppData\Local\Temp\
Install Dir: C:\Program Files (x86)\Handbrake
Data Dir: C:\Users\anonym\AppData\Roaming\HandBrake\HandBrake\0.9.5.3915

CLI Query:  -i "N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv" -t 1 -c 1 -o "N:\Handbrake\Green Lantern Cinemacon Cutdown 1080-001-1.m4v"  -f mp4 --strict-anamorphic  -e x264 -q 20 -r 23.976 --cfr  -a 1 -E faac -B 160 -6 dpl2 -R Auto -D 0 --gain=0 -x ref=2:bframes=2:subq=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0 --verbose=1
User Query: False
-------------------------------------------

[00:01:43] hb_init: starting libhb thread
HandBrake svn3915 (2011040901) - MinGW i386 - http://handbrake.fr
8 CPUs detected
Opening N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv...
[00:01:43] hb_scan: path=N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv, title_index=1
libbluray/bdnav/index_parse.c:157: indx_parse(): error opening N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv/BDMV/index.bdmv
libbluray/bluray.c:1376: nav_get_title_list(N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv) failed (0x19b9fd8)
[00:01:43] bd: not a bd - trying as a stream/file instead
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.IFO failed
libdvdnav:DVDOpenFileUDF:UDFFindFile /VIDEO_TS/VIDEO_TS.BUP failed
libdvdread: Can't open file VIDEO_TS.IFO.
libdvdnav: vm: failed to read VIDEO_TS.IFO
[00:01:43] dvd: not a dvd - trying as a stream/file instead
Input #0, matroska,webm, from 'N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv':
  Duration: 00:00:11.00, start: 0.000000, bitrate: N/A
    Stream #0.0: Video: h264 (Main), yuv420p, 1920x816, PAR 1:1 DAR 40:17, 24 fps, 24 tbr, 1k tbn, 48 tbc (default)
    Stream #0.1: Audio: aac, 48000 Hz, stereo, s16 (default)
[00:01:43] scan: decoding previews for title 1
Scanning title 1...
Scanning title 1...
[00:01:43] scan: 10 previews, 1920x816, 24.000 fps, autocrop = 0/0/0/0, aspect 2.35:1, PAR 1:1
[00:01:43] scan: title (0) job->width:1920, job->height:816
[00:01:43] libhb: scan thread found 1 valid title(s)
+ title 1:
  + stream: N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv
  + duration: 00:00:11
  + size: 1920x816, pixel aspect: 1/1, display aspect: 2.35, 24.000 fps
  + autocrop: 0/0/0/0
  + chapters:
    + 1: cells 0->0, 0 blocks, duration 00:00:11
  + audio tracks:
    + 1, Unknown (aac) (2.0 ch) (iso639-2: und)
  + subtitle tracks:
[00:01:44] 1 job(s) to process
[00:01:44] starting job
[00:01:44] work: sanitizing track 0 mixdown Dolby Pro Logic II to Stereo
[00:01:44] sync: expecting 288 video frames
[00:01:44] job configuration:
[00:01:44]  * source
[00:01:44]    + N:\H\Kino Trailer\Green_Lantern_Cinemacon_Cutdown_1080-001.mkv
[00:01:44]    + title 1, chapter(s) 1 to 1
[00:01:44]    + container: matroska,webm
[00:01:44]  * destination
[00:01:44]    + N:\Handbrake\Green Lantern Cinemacon Cutdown 1080-001-1.m4v
[00:01:44]    + container: MPEG-4 (.mp4 and .m4v)
[00:01:44]  * video track
[00:01:44]    + decoder: h264
[00:01:44]    + frame rate: 24.000 fps -> constant 23.976 fps
[00:01:44]    + strict anamorphic
[00:01:44]      + storage dimensions: 1920 * 816 -> 1920 * 816, crop 0/0/0/0, mod 0
[00:01:44]      + pixel aspect ratio: 1 / 1
[00:01:44]      + display dimensions: 1920 * 816
[00:01:44]    + encoder: x264
[00:01:44]      + options: ref=2:bframes=2:subq=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0
[00:01:44]      + quality: 20.00 (RF)
[00:01:44]  * audio track 0
[00:01:44]    + decoder: Unknown (aac) (2.0 ch) (track 1, id 0x1)
[00:01:44]    + mixdown: Stereo
[00:01:44]    + encoder: faac
[00:01:44]      + bitrate: 160 kbps, samplerate: 48000 Hz
[00:01:44] encx264: min-keyint: 24, keyint: 240
[00:01:44] encx264: encoding with stored aspect 1/1
[00:01:44] encx264: Encoding at constant RF 20.000000
x264 [info]: using SAR=1/1
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2
[00:01:44] reader: first SCR 0 id 0 DTS 0
x264 [info]: profile Main, level 4.0
[00:01:46] reader: done. 1 scr changes
[00:01:49] work: average encoding speed for job is 0.000000 fps
[00:01:49] sync: got 264 frames, 288 expected
[00:01:49] h264-decoder done: 264 frames, 0 decoder errors, 0 drops
[00:01:49] render: 264 frames output, 0 dropped and 0 duped for CFR/PFR
[00:01:49] render: lost time: 0 (0 frames)
[00:01:49] render: gained time: 0 (0 frames) (0 not accounted for)
x264 [info]: frame I:2     Avg QP: 8.71  size: 26105  PSNR Mean Y:77.05 U:82.68 V:80.01 Avg:77.76 Global:58.52
x264 [info]: frame P:105   Avg QP:22.44  size: 17472  PSNR Mean Y:60.05 U:84.55 V:83.64 Avg:61.27 Global:49.75
x264 [info]: frame B:157   Avg QP:26.93  size:  2918  PSNR Mean Y:61.97 U:93.76 V:93.49 Avg:63.24 Global:49.57
x264 [info]: consecutive B-frames:  7.2% 14.4% 78.4%
x264 [info]: mb I  I16..4: 76.9%  0.0% 23.1%
x264 [info]: mb P  I16..4:  6.8%  0.0%  3.8%  P16..4: 16.6%  4.7%  2.3%  0.0%  0.0%    skip:65.8%
x264 [info]: mb B  I16..4:  2.3%  0.0%  0.2%  B16..8:  3.8%  1.0%  0.1%  direct: 3.1%  skip:89.5%  L0:40.9% L1:42.0% BI:17.1%
x264 [info]: coded y,uvDC,uvAC intra: 41.0% 47.2% 16.9% inter: 4.6% 7.0% 0.2%
x264 [info]: i16 v,h,dc,p: 39% 22% 22% 17%
x264 [info]: i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 19% 17% 26%  5%  9%  7%  8%  4%  4%
x264 [info]: i8c dc,h,v,p: 62% 18% 15%  5%
x264 [info]: Weighted P-Frames: Y:33.3% UV:17.1%
x264 [info]: ref P L0: 78.8%  5.0% 14.8%  1.4%
x264 [info]: ref B L0: 95.1%  4.9%
x264 [info]: ref B L1: 99.2%  0.8%
x264 [info]: SSIM Mean Y:0.9956673 (23.632db)
x264 [info]: PSNR Mean Y:61.317 U:90.014 V:89.472 Avg:62.568 Global:49.669 kb/s:1703.64
[00:01:49] aac-decoder done: 0 frames, 0 decoder errors, 0 drops
[00:01:49] mux: track 0, 264 frames, 2344763 bytes, 1703.58 kbps, fifo 8
[00:01:49] mux: track 1, 517 frames, 72463 bytes, 52.65 kbps, fifo 512
[00:01:49] libhb: work result = 0
Rip done!
HandBrake has exited.


If I use x264cli (with L-SMASH and forcing cfr)) I get this:
Frame rate mode : Constant
Frame rate : 23.976 fps

Code: Select all

x264 --fps 24000/1001 -o output.mp4 input.mkv

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Sun Apr 10, 2011 7:10 am
by Ritsuka
There isn't any "VFR" or "CFR" flasg in mp4, but only frame durations. MediaInfo checks the durations of all frames and then says some stupid things.
HandBrake always uses a timescale of 90000, so this means that a 23.976fps video track can't have the same duration for all frame, the only way to have the same duration for all frames is to use a different timescale.

Re: [Resolved:]VFR is put onto destination when transcoding

Posted: Sun Apr 10, 2011 11:59 am
by sneaker
Thx for your quick answer.

Wouldn't it be a good idea to lower the timescale then for CFR files the same way L-SMASH does it?