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. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#1 | Link |
|
Registered User
Join Date: Jan 2010
Location: France
Posts: 850
|
Encode 3D to Blu ray SBS with x264
Hi
![]() I would like to encode a 3D movie to SBS and to fit on a BD25. So I would like to create a AviSynth script with resize from 3840x1080 to 1920x1080. What filter do you advise to me ? Lanzcos or Spline (or other) ? I'm searching best quality, my sources are originals Blu ray. With this script, I would like to encode with x264 to be Blu ray compliant. After that, I'll create a Blu ray structure. Do you have a commandline to encode with x264 and to be Blu ray compliant ? Thanks ! |
|
|
|
|
|
#2 | Link | |
|
Registered User
Join Date: Mar 2008
Posts: 2,017
|
Hi Nico,
Considering you already know how to extract right video from a 3D BluRay ( http://forum.doom9.org/showthread.ph...09#post1410709), I would advise you to use Adam Stanislav's tool: http://www.pantarheon.org/AviSynth3DToolbox/ You don't need to use any resizing filter. Quote:
Code:
LoadPlugin("H264StereoSource.dll")
lv= FFVideoSource("C:\Folder\left.m2ts")
rv = H264StereoSource("decoder.cfg",xxxxx)
LeftRight3DReduced(lv, rv)
As for the BD structure; sorry I don't know. Have a look at to MultiAVCHD topic. Last edited by rica; 1st March 2013 at 01:09. |
|
|
|
|
![]() |
|
|