View Single Post
Old 26th March 2019, 19:48   #1549  |  Link
albur
Registered User
 
Join Date: Aug 2016
Posts: 15
Quote:
Originally Posted by r0lZ View Post
I did that movie without problem. Is it the first time you use BD3D2MK3D ? Have you changed its settings recently ?

The original image you have posted is correct (although it doesn't have the usual 1080p resolution, but I guess it's due to the file sharing service).
The SBS and TAB images are strange indeed. It seems that they have been calculated in Full-SBS and Full-TAB, as the resolution is not divided by 2 vertically or horizontally. So, verify in the last tab if you have unticked the "Half" option. Normally, it should be ticked. And verify also that the "Resize video to 720p" option is NOT ticked. The last thing that could be responsible of the problem (although I don't think so) is the "Move cinemascope image up in 16:9 frame". It should be disabled. If one of these parameters were not set at their default values, please retry.

I should be able to understand what's wrong if you post here the content of the avisynth script __ENCODE_3D_MOVIE.avs.

Second time i use it, same with Gods of Egypt.

Here is the log, thanks

Code:
# Avisynth script generated Sat Mar 23 00:17:22 CET 2019 by BD3D2MK3D v1.8
# to convert "G:\BDMV\PLAYLIST\00098.mpls"
# (referencing the M2TS/SSIF files 00052)
# to 3D Top & Bottom.
# Movie title: hjkgikuhgkj
#
# Source MPLS information:  Blu-ray 3D.
# MPLS file: 00098.mpls
# Video   :  Und  AVC, 1080p, 23.976 fps, left-eye
# Video   :  Und  MVC, 1080p, 23.976 fps, right-eye (32 3D-Planes)
# Audio   :  Eng  TrueHD, Multi-channel, 48 Khz
# Audio   :  Eng  AC3, Multi-channel, 48 Khz
# Audio   :  Ita  AC3, Multi-channel, 48 Khz
# Audio   :  Spa  AC3, Multi-channel, 48 Khz
# Subtitle:  Eng  PGS, 3D-plane: 2
# Subtitle:  Ita  PGS, 3D-plane: 3
# Subtitle:  Spa  PGS, 3D-plane: 4
# Subtitle:  Ara  PGS, 3D-plane: 5
# Subtitle:  Bul  PGS, 3D-plane: 6
# Subtitle:  Ell  PGS, 3D-plane: 7
# Subtitle:  Heb  PGS, 3D-plane: 8
# Subtitle:  Ron  PGS, 3D-plane: 9
# Subtitle:  Ita  PGS, 3D-plane: 10
# Subtitle:  Spa  PGS, 3D-plane: 11
LoadPlugin("C:\Users\PC01\Desktop\BD3D2MK3D\BD3D2MK3D\toolset\FRIMSource.dll")
#LoadPlugin("C:\Users\PC01\Desktop\BD3D2MK3D\BD3D2MK3D\toolset\DGMVCDecode.dll")

##LoadPlugin(C:\Users\PC01\Desktop\BD3D2MK3D\BD3D2MK3D\toolset\VSFilter.dll")
#LoadPlugin("C:\Users\PC01\Desktop\BD3D2MK3D\BD3D2MK3D\toolset\SupTitle.dll")

# Load the two video streams (218209 frames per stream)
interleaved = FRIMSource("mvc", "00098.track_4113.264", "00098.track_4114.mvc", layout = "alt", num_frames = 218209, cache = 2, platform = "")
#interleaved = DGMVCSource("00098.track_4113.264", "00098.track_4114.mvc", view = 0, frames = 218209, mode = "auto") # Old syntax for mode: hw = 0
# Current base view: left eye.
# The views are in the common order: AVC stream = left view, MVC stream = right view.
left  = SelectEven(interleaved)
right = SelectOdd(interleaved)

# Hardcode subtitles
##left  = VobSub(left,  "subtitle_to_hardcode_left.sub")
##right = VobSub(right, "subtitle_to_hardcode_right.sub")
#left  = SupTitle(left,  "subtitle_to_hardcode_left.sup")
#right = SupTitle(right, "subtitle_to_hardcode_right.sup")

# Build Top & Bottom stream
StackVertical(Left, Right)
AssumeFPS("ntsc_film")

# Return the 3D clip.
Return(last)#.Info()
albur is offline