Hi all,
when converting non-anamorphic video files (mkv, avi et al) to DVD-compliant video the original aspect is preserved by filling the 720 576/480 frame horizontally, and I assume the 'deadzone' (auto) referred to in AVStoDVD is any area left that has to filled with black, i.e. for content wider than 1.77:1 / 16/9.
Is there a way of editing the 'deadzone' value to, for example, crop 2.35:1 to 1.77:1 / 16/9?
Edit >> Eek! wrong forum - this should be in 'Authoring (DVD)' - could someone move it please?
+ Reply to Thread
Results 1 to 4 of 4
-
Mark777Guest
Last edited by Mark777; 21st Sep 2019 at 11:18. Reason: Mea culpa
-
This is what the HCenc encoder PDF says about deadzone.
parameter intra inter type 2*integer
Status not required
Default-Example*DEADZONE 3 2
This command defines the dead zone values used for intra and non-intra (inter) quantization. It acts as a frequency domain low pass filter.
If this command is not given, it will run in automatic mode, source dependent. If you want to disable dead zone quantization,
use *DEADZONE 0 0. Range for the intra and inter parameters: 0 – 6
Nothing to do with cropping, but I must admit I do not understand the question, so cannot advise further.
What are you trying to do? -
You appear to want to crop away the black bars top and bottom and then crop left and right so you fill the 16:9 frame. Of course you lose detail both left and right by doing this.
All such work in this respect is handled by the avisynth script which may be edited from the Title Menu > Edit Title >> avisynth
But if you have no experience with avisynth, and I am afraid I can not assist with the values you have to enter by on-screen prompts rather than direct editing of the text, you would be better off asking for assistance in the dedicated avstodvd support thread -
To get a 16:9 width for a given height use
Code:newwidth = (height * 16) / 9
Code:newwidth = ((height * 16) / 18) * 2
Code:leftcrop = ((width - newwidth) / 4) * 2
Code:newwidth = ((height * 16) / 18) * 2 leftcrop = ((width - newwidth) / 4) * 2 Crop(leftcrop, 0, newwidth, height)
Code:Crop(((width - (((height * 16) / 18) * 2)) / 4) * 2, 0, ((height * 16) / 18) * 2, height)
Similar Threads
-
stuck with AES Enc IV file
By xyzo in forum Video Streaming DownloadingReplies: 12Last Post: 23rd Feb 2019, 00:43 -
microsoft expressions enc 4 keeps attenuating audio
By aspry in forum Newbie / General discussionsReplies: 6Last Post: 7th Nov 2016, 11:44 -
Is it possible to change a default setting for an Avisynth plugin?
By hello_hello in forum EditingReplies: 0Last Post: 9th Aug 2016, 04:41 -
Mkvmerge - FPS setting - can it change variable fps to constant?
By TheLastOfThem in forum Video ConversionReplies: 8Last Post: 10th Jul 2016, 01:26 -
Splitting h264 (no re-enc.), difference mkv and mp4?
By Spiny Norman in forum Video ConversionReplies: 5Last Post: 23rd Dec 2015, 14:48