View Single Post
Old 30th July 2015, 20:20   #477  |  Link
Polar
Registered User
 
Polar's Avatar
 
Join Date: Jul 2015
Posts: 13
Here is some feedback. Have tested 2 things:

SBS to FS works fine. One small update maybe for the mini guide: When dragging the second file over the GUI, you get a pop up with multiple options. I just opted for the first one, hoping it was the correct one .

The problem with the audio: I tested the original file SBS on the media server. No sound. Used Xmedia Recode to recode the original audio to AAC. Then used the mini guide on the AAC file. Problem solved, so it must be something on my server or clients that had a problem with the used audio format.

Second, I used BD3d3MK3D to convert an 3D ISO to MKV. I got an error. Maybe you can tell me what is wrong?

The error:

Encoding started 30.07.2015 20:16:01,81

C:\SimpleX\IMAX Space Station 3D\00009>"C:\Users\xxx\Downloads\3D convertion s
oftware\BD3D2MK3D\toolset\avs2yuv.exe" "_ENCODE_3D_MOVIE.avs" -frames 169740 -
o - | "C:\Users\xxx\Downloads\3D convertion software\BD3D2MK3D\toolset\x26
4_x64.exe" --crf 23 --preset medium --frame-packing 5 --qpfile chapters_3D.q
pfile --frames 169740 --fps 60000/1001 --output "00009.264" --demuxer y4m --st
din y4m -

Avisynth error:
DGMVCSource: cannot open the source file or Intel Media SDK init failed
(_ENCODE_3D_MOVIE.avs, line 39)
x264 [error]: could not open input file `-'
Encoding finished 30.07.2015 20:16:05,52

C:\SimpleX\IMAX Space Station 3D\00009>"C:\Users\xxx\Downloads\3D convertion s
oftware\BD3D2MK3D\toolset\mkvmerge.exe" @_MUX_3D_OPTIONS.txt | "C:\Users\xxx
\Downloads\3D convertion software\BD3D2MK3D\toolset\tee.exe" "00009.mkvmerge.log
"
mkvmerge v8.2.0 ('World of Adventure') 32bit
Error: The file '00009.264' has unknown type. Please have a look at the supporte
d file types ('mkvmerge --list-types') and contact the author Moritz Bunkus <mor
itz@bunkus.org> if your file type is supported but not recognized properly.

Press any key to continue . . .

The AVS script:

# Avisynth script generated Thu Jul 30 20:16:01 CEST 2015 by BD3D2MK3D v0.69
# to convert "H:\BDMV\PLAYLIST\00009.mpls"
# (referencing the M2TS/SSIF files 00009)
# to 3D Frame Sequential.
# Movie title: IMAX Space Station 3D
#
# Source MPLS information:
# MPLS file: 00009.mpls
# Video : Und AVC, 1080p, 23.976 fps, left-eye
# Video : Und MVC, 1080p, 23.976 fps, right-eye (15 3D-Planes)
# Audio : Eng DTS-HD-Master, Multi-channel, 48 Khz
# Audio : Fra AC3, Multi-channel, 48 Khz
# Audio : Deu AC3, Multi-channel, 48 Khz
# Audio : Kor AC3, Stereo, 48 Khz
# Audio : Por AC3, Multi-channel, 48 Khz
# Audio : Jpn AC3, Multi-channel, 48 Khz
# Subtitle: Eng PGS, 3D-plane: undefined
# Subtitle: Fra PGS, 3D-plane: undefined
# Subtitle: Deu PGS, 3D-plane: undefined
# Subtitle: Ita PGS, 3D-plane: undefined
# Subtitle: Nld PGS, 3D-plane: undefined
# Subtitle: Kor PGS, 3D-plane: undefined
# Subtitle: Spa PGS, 3D-plane: undefined
# Subtitle: Por PGS, 3D-plane: undefined
# Subtitle: Ara PGS, 3D-plane: undefined
# Subtitle: Zho PGS, 3D-plane: undefined
# Subtitle: Dan PGS, 3D-plane: undefined
# Subtitle: Zho PGS, 3D-plane: undefined
# Subtitle: Rus PGS, 3D-plane: undefined
# Subtitle: Tha PGS, 3D-plane: undefined

LoadPlugin("C:\Users\xxx\Downloads\3D convertion software\BD3D2MK3D\toolset\DGMVCDecode.dll")
#LoadPlugin("C:\Users\xxx\Downloads\3D convertion software\BD3D2MK3D\toolset\FRIMSource.dll")

##LoadPlugin("C:\Users\xxx\Downloads\3D convertion software\BD3D2MK3D\toolset\VSFilter.dll")
#LoadPlugin("C:\Users\xxx\Downloads\3D convertion software\BD3D2MK3D\toolset\SupTitle.dll")

# Load the two video streams (67896 frames per stream)
interleaved = DGMVCSource("00009.track_4113.264", "00009.track_4114.mvc", view = 0, frames = 67896, hw = 0)
#interleaved = FRIMSource("mvc", "00009.track_4113.264", "00009.track_4114.mvc", num_frames = 67896, cache = 2, platform = "")
# 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")

# Convert frame rate of each view to 29.97 fps
left = ConvertFPS(left, "ntsc_video")
right = ConvertFPS(right, "ntsc_video")

# Build Frame Sequential stream
Interleave(left, right)
AssumeFPS("ntsc_double")

# Resize to 720p
BicubicResize(1280, 720)

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