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

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

 

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

Reply
 
Thread Tools Search this Thread Display Modes
Old 22nd January 2013, 22:32   #1001  |  Link
Rumbah
Registered User
 
Join Date: Mar 2003
Posts: 480
I have a "problem" with BD3D2MK3D (with the Tangled 3D BluRay).

Opening the resulting avs file created by BD3D2MK3D in any other program than avs2yuv results in "Can't create the graph". Is there any way to preview the avs file?

EDIT: On Win7 64 Bit
Rumbah is offline   Reply With Quote
Old 22nd January 2013, 22:41   #1002  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
The problem is that the program MUST be in the "magic folder" (containing the third-party tools used by BD3D2MK3D). That folder must have the stereoscopic player exe in its path. You can try to move or copy your program in that folder, and launch it from that location. That works well with AvspMod.

Note also that you cannot seek to any position with your program. The AVS script prohibits it, so if you try to do it, it will take a very long time. That means also that if the program tries to skip some frames to respect the frame rate, it may fail.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 22nd January 2013, 22:56   #1003  |  Link
Rumbah
Registered User
 
Join Date: Mar 2003
Posts: 480
Ah, thanks for the fast answer, I'll give that a try.

I just wanted to try to benchmark the different resize filters for this purpose and try Didee's suggestion to use bicubic resize with b+2c=0 for downsizing, e.g. b=-0.5, c=0.25 .
Rumbah is offline   Reply With Quote
Old 22nd January 2013, 23:09   #1004  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Good idea. Please let us know your benchmark results.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 24th January 2013, 12:55   #1005  |  Link
Rumbah
Registered User
 
Join Date: Mar 2003
Posts: 480
Well, I guess my CPU works hard for the decoding so the speed does not differ that much, but here are my quick results:

Code:
Untouched = 51.694904 fps
BilinearResize(1920, 1080) = 48.070914 fps
BicubicResize(1920, 1080) = 47.461295 fps
BicubicResize(b=-0.5, c=0.25, 1920, 1080) = 47.623734 fps
BicubicResize(b=-1.0, c=0.5, 1920, 1080) = 47.331453 fps
BlackmanResize(1920, 1080) = 44.079143 fps
GaussResize(1920, 1080) = 43.927917 fps
LanczosResize(1920, 1080) = 45.933014 fps
Lanczos4Resize(1920, 1080) = 44.493882 fps
PointResize(1920, 1080) = 48.224223 fps
Spline16Resize(1920, 1080) = 46.986299 fps
Spline36Resize(1920, 1080) = 45.716445 fps
Spline64Resize(1920, 1080) = 44.302872 fps
SincResize(1920, 1080) = 44.246743 fps
My avisynth file:
Code:
SetMemoryMax(128)
LoadPlugin("E:\Treiber\BD3D2MK3D\toolset\stereoplayer.exe\ssifSource2.dll")
part1 = ssifSource2("L:\BDMV\STREAM\SSIF\00012.ssif", 85384, left_view = true, right_view = true, horizontal_stack = false)
part2 = ssifSource2("L:\BDMV\STREAM\SSIF\00013.ssif", 58864, left_view = true, right_view = true, horizontal_stack = false)
last  = part1 + part2
AssumeFPS("ntsc_film")
RESIZE
Trim(0,-30000)
The testsequence was the first 30000 frames of Tangled 3D with a Core2Quad Q9650 (3 Ghz).

Last edited by Rumbah; 26th January 2013 at 17:23.
Rumbah is offline   Reply With Quote
Old 24th January 2013, 14:20   #1006  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Thanks!
What are the units of the results?
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 24th January 2013, 14:26   #1007  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Someone has used the 2-pass encoding mode of BD3D2MK3D? I don't use it, but I did some tests, and apparently, x264 crashes at the very end of the first pass, because the output file is "NUL". I have decided to redirect the output to NUL to avoid writing an useless big h264 file on HDD, but perhaps it is required to have a real file as output. Strangely, x264 doesn't crash when I do a quick test with a short clip.

Someone can confirm that bug, or it it just me?
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 26th January 2013, 17:22   #1008  |  Link
Rumbah
Registered User
 
Join Date: Mar 2003
Posts: 480
Ah, sorry, the unit is fps.
Rumbah is offline   Reply With Quote
Old 28th January 2013, 17:51   #1009  |  Link
Nico8583
Registered User
 
Join Date: Jan 2010
Location: France
Posts: 851
Do you have a new version of DirectShowMVCSource ? Or ssif2source is always up to date with news movies ?
I would like to create 1 AVS to left eye and 1 AVS to right eye, DirectShowMVCSource seems to be perfect for that but I have random crash...

Last edited by Nico8583; 28th January 2013 at 18:10.
Nico8583 is offline   Reply With Quote
Old 29th January 2013, 23:52   #1010  |  Link
pippus
Registered User
 
Join Date: Jan 2013
Posts: 2
I always receive this error on various Blu-ray
Quote:
if not exist "H:\BDMV\STREAM\SSIF\00896.ssif" goto filenotfound
set path=C:\Users\pippus\Desktop\bd3d\BD3D2MK3Dversion13\toolset\stereoplayer.exe;C:\Users\pippus\Desktop\bd3d\BD3D2MK3Dversion13\toolset;%path%
echo Encoding _ENCODE_3D_MOVIE.avs
echo Movie: John carter BD3D bluebird
echo Encoding started %date% %time%
@echo on

"C:\Users\pippus\Desktop\bd3d\BD3D2MK3Dversion13\toolset\stereoplayer.exe\x264.exe" ^
--crf 17 --preset medium --profile high --level 4.1 ^
--output "00896_m2ts.264" "_ENCODE_3D_MOVIE.avs"
@echo off
echo Encoding finished %date% %time%

REM Optionnaly mux the video and demuxed streams to MKV.
REM Note: The mux is disabled if no streams are demuxed.
if exist "_MUX_3D.cmd" cmd /c "_MUX_3D.cmd"

REM Everything done: do the post-processing (Shutdown computer...)
if exist "_POSTPROCESS.cmd" cmd /c "_POSTPROCESS.cmd"
exit /B

:filenotfound
echo *******************************************************************************
echo ERROR: File "H:\BDMV\STREAM\SSIF\00896.ssif" not found!
echo Is the Blu-ray disc loaded?
echo *******************************************************************************
pause
if I try to directly launch the AVS script tells me error
can't create the graph error line 81

my AVS
Quote:
# Avisynth script generated Sun Jan 27 23:44:03 CET 2013 by BD3D2MK3D v0.13
# to convert "H:\BDMV\STREAM\SSIF\00896.ssif"
# (referenced by playlist 00800.mpls)
# to Half Side by Side, Left first.
# Movie title: John carter BD3D bluebird
#
# Source MPLS information:
# MPLS file: 00800.mpls
# 1: Chapters, 16 chapters
# 2: h264/AVC (left eye), 1080p, fps: 24 /1.001 (16:9)
# 3: h264/AVC (right eye), 1080p, fps: 24 /1.001 (16:9)
# 4: DTS HiRes, English, 7.1 channels, 24 bits, 2046kbps, 48kHz
# (core: DTS, 5.1 channels, 24 bits, 1509kbps, 48kHz)
# 5: DTS HiRes, Italian, 7.1 channels, 24 bits, 2046kbps, 48kHz
# (core: DTS, 5.1 channels, 24 bits, 1509kbps, 48kHz)
# 6: AC3, Russian, 5.1 channels, 640kbps, 48kHz
# 7: AC3, Ukrainian, 5.1 channels, 640kbps, 48kHz
# 8: Subtitle (PGS), English
# 9: Subtitle (PGS), English
# 10: Subtitle (PGS), Italian
# 11: Subtitle (PGS), Russian
# 12: Subtitle (PGS), Ukrainian
# 13: Subtitle (PGS), Latvian
# 14: Subtitle (PGS), Lithuanian
# 15: Subtitle (PGS), Estonian
# 16: Subtitle (PGS), English
# 17: Subtitle (PGS), Italian
# 18: Subtitle (PGS), Russian
# 19: Subtitle (PGS), Ukrainian

#LoadPlugin("C:\Users\pippus\Desktop\bd3d\BD3D2MK3Dversion13\toolset\stereoplayer.exe\DirectShowMVCSource.dll")
## Alt method using ssifSource2 (for SBS or T&B only):
LoadPlugin("C:\Users\pippus\Desktop\bd3d\BD3D2MK3Dversion13\toolset\stereoplayer.exe\ssifSource2.dll")

SIDEBYSIDE_L = 14 # Half Side by Side, Left first
SIDEBYSIDE_R = 13 # Half Side by Side, Right first
OVERUNDER_L = 16 # Half Top/Bottom, Left first
OVERUNDER_R = 15 # Half Top/Bottom, Right first
SIDEBYSIDE_L = 14 # Full Side by Side, Left first
SIDEBYSIDE_R = 13 # Full Side by Side, Right first
OVERUNDER_L = 16 # Full Top/Bottom, Left first
OVERUNDER_R = 15 # Full Top/Bottom, Right first
ROWINTERLEAVED_L = 18 # Row interleaved, Left first
ROWINTERLEAVED_R = 17 # Row interleaved, Right first
COLINTERLEAVED_L = 20 # Column interleaved, Left first
COLINTERLEAVED_R = 19 # Column interleaved, Right first
OPTANA_RC = 45 # Anaglyph: Optimised, Red - Cyan
OPTANA_CR = 46 # Anaglyph: Optimised, Cyan - Red
OPTANA_YB = 47 # Anaglyph: Optimised, Yellow - Blue
OPTANA_BY = 48 # Anaglyph: Optimised, Blue - Yellow
OPTANA_GM = 49 # Anaglyph: Optimised, Green - Magenta
OPTANA_MG = 50 # Anaglyph: Optimised, Magenta - Green
COLORANA_RC = 39 # Anaglyph: Colour, Red - Cyan
COLORANA_CR = 40 # Anaglyph: Colour, Cyan - Red
COLORANA_YB = 41 # Anaglyph: Colour, Yellow - Blue
COLORANA_BY = 42 # Anaglyph: Colour, Blue - Yellow
COLORANA_GM = 43 # Anaglyph: Colour, Green - Magenta
COLORANA_MG = 44 # Anaglyph: Colour, Magenta - Green
SHADEANA_RC = 33 # Anaglyph: Half-colour, Red - Cyan
SHADEANA_CR = 34 # Anaglyph: Half-colour, Cyan - Red
SHADEANA_YB = 35 # Anaglyph: Half-colour, Yellow - Blue
SHADEANA_BY = 36 # Anaglyph: Half-colour, Blue - Yellow
SHADEANA_GM = 37 # Anaglyph: Half-colour, Green - Magenta
SHADEANA_MG = 38 # Anaglyph: Half-colour, Magenta - Green
GREYANA_RC = 27 # Anaglyph: Grey, Red - Cyan
GREYANA_CR = 28 # Anaglyph: Grey, Cyan - Red
GREYANA_YB = 29 # Anaglyph: Grey, Yellow - Blue
GREYANA_BY = 30 # Anaglyph: Grey, Blue - Yellow
GREYANA_GM = 31 # Anaglyph: Grey, Green - Magenta
GREYANA_MG = 32 # Anaglyph: Grey, Magenta - Green
PUREANA_RB = 23 # Anaglyph: Pure, Red - Blue
PUREANA_BR = 24 # Anaglyph: Pure, Blue - Red
PUREANA_RG = 25 # Anaglyph: Pure, Red - Green
PUREANA_GR = 26 # Anaglyph: Pure, Green - Red
MONOSCOPIC_L = 1 # Monoscopic 2D: Left only
MONOSCOPIC_R = 2 # Monoscopic 2D: Right only

# Load main video (189932 frames)
#DirectShowMVCSource("H:\BDMV\STREAM\SSIF\00896.ssif", seek=false, seekzero=true, stf=SIDEBYSIDE_L)
## Alt method using ssifSource2
ssifSource2("H:\BDMV\STREAM\SSIF\00896.ssif", left_view = true, right_view = true, horizontal_stack = true)

AssumeFPS("ntsc_film")
# Resize is necessary only for Half-SBS or Half-Top/Bottom,
# or when the option to Resize to 720p is on.
BilinearResize(1920, 1080)
# Anaglyph and Interleaved modes are in RGB32, and must be converted to YV12.
#ConvertToYV12(matrix="PC.709")


# Add 3 seconds of black at the end of the video (72 frames)
Return(last + BlankClip(last, 72))#.Info()
can you tell me why?
thanks

Last edited by pippus; 29th January 2013 at 23:54.
pippus is offline   Reply With Quote
Old 30th January 2013, 02:57   #1011  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by Nico8583 View Post
Do you have a new version of DirectShowMVCSource ? Or ssif2source is always up to date with news movies ?
I would like to create 1 AVS to left eye and 1 AVS to right eye, DirectShowMVCSource seems to be perfect for that but I have random crash...
Would it be possible to add support for mkv in combination with CombineMVC.exe by DirectShowMVCSource ?
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.
frencher is offline   Reply With Quote
Old 30th January 2013, 10:21   #1012  |  Link
Cedvano
Registered User
 
Join Date: Jul 2009
Posts: 244
Quote:
Originally Posted by frencher View Post
Would it be possible to add support for mkv in combination with CombineMVC.exe by DirectShowMVCSource ?
Tu veux créer un MKV MVC ? (You want to create a MKV MVC ?)
Cedvano is offline   Reply With Quote
Old 30th January 2013, 12:02   #1013  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Quote:
Originally Posted by pippus View Post
I always receive this error on various Blu-ray


if I try to directly launch the AVS script tells me error
can't create the graph error line 81

can you tell me why?
thanks
Have you verified if the H:\BDMV\STREAM\SSIF\00896.ssif file is really present?

Also, are you sure the BD is unprotected? Usually, you cannot rip directly a protected BD. You have to either decrypt it to an ISO and mount the ISO, or use AnyDVD HD to decrypt the BD on the fly. eac3to is not a decrypter, and therefore, BD3D2MK3D requires an unprotected DVD or a mounted ISO as source.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 30th January 2013, 16:01   #1014  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by Cedvano View Post
Tu veux créer un MKV MVC ? (You want to create a MKV MVC ?)
Oui, pour la prise en charge des pistes audio et sous titres forcés et aussi les châpitres.

Yes, for support audio tracks and subtitles as forced and chapters.
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.
frencher is offline   Reply With Quote
Old 30th January 2013, 16:03   #1015  |  Link
pippus
Registered User
 
Join Date: Jan 2013
Posts: 2
Quote:
Originally Posted by r0lZ View Post
Have you verified if the H:\BDMV\STREAM\SSIF\00896.ssif file is really present?

Also, are you sure the BD is unprotected? Usually, you cannot rip directly a protected BD. You have to either decrypt it to an ISO and mount the ISO, or use AnyDVD HD to decrypt the BD on the fly. eac3to is not a decrypter, and therefore, BD3D2MK3D requires an unprotected DVD or a mounted ISO as source.
Quote:
H:\BDMV\STREAM\SSIF\00896.ssif file is really present?
the path is ok

Quote:
Also, are you sure the BD is unprotected?
unprotected

I tried to aprtire GraphEdit but AVC / MVC decoder (by CoreCodec) do not find
pippus is offline   Reply With Quote
Old 30th January 2013, 20:49   #1016  |  Link
Nico8583
Registered User
 
Join Date: Jan 2010
Location: France
Posts: 851
Quote:
Originally Posted by Nico8583 View Post
Do you have a new version of DirectShowMVCSource ? Or ssif2source is always up to date with news movies ?
I would like to create 1 AVS to left eye and 1 AVS to right eye, DirectShowMVCSource seems to be perfect for that but I have random crash...
I have added SetMemoryMax(32) at the beginning of the script and all seems to be OK
Nico8583 is offline   Reply With Quote
Old 31st January 2013, 02:51   #1017  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by Cedvano View Post
Tu veux créer un MKV MVC ? (You want to create a MKV MVC ?)
Make MKV is already doing.
The goal would be to read .MKV AVC/MVC directly with MVC Player Free
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.
frencher is offline   Reply With Quote
Old 4th February 2013, 20:56   #1018  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by r0lZ View Post
Someone (I don't remember who) told me to use these settings:
Code:
--bluray-compat --profile high --level 4.1 --vbv-maxrate 40000 --vbv-bufsize 30000 --keyint 24 --slices 4
--open-gop --colorprim bt709 --transfer bt709 --colormatrix bt709 --b-pyramid strict --fake-interlaced --aud
But I don't understand why --bluray-compat is not sufficient alone. If it does what its name suggests, that option should force all necessary flags. Anyway, BD3D2MK3D forces all options above when you tick the "BD compatible" checkbox.
Great program, thanks
Is there a specific reason to flag the encode as interlaced (--fake-interlaced)?
Sharc is offline   Reply With Quote
Old 5th February 2013, 12:52   #1019  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Honestly, I don't know. Perhaps it's a blu-ray requirement. But I'm not a specialist in x264 encoding, especially for blu-ray. Lord Mulder is certainly much more able to reply than me. See the last sentence in this post, and my reply...
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 6th February 2013, 00:25   #1020  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by Cedvano View Post
Tu veux créer un MKV MVC ? (You want to create a MKV MVC ?)
Quote:
Originally Posted by frencher View Post
Make MKV is already doing.
The goal would be to read .MKV AVC/MVC directly with MVC Player Free
3D Sample created with Make MKV
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.
frencher is offline   Reply With Quote
Reply


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

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

Forum Jump


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


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