Quote: oh yeah, when one inputs external audio, the resulting mp4 file (audio) is not trimmed properly by hybrid, ie file has duration of audio clip no matter (shorter) duration of video.
cutting is an experimental setting, without a debug output and files to reproduce the problem I won't look at that.
------------------
Your source is signaled with a PAR (Pixel aspect ratio) of 1:1, looking at the Vapoursynth preview one can see that this is not the correct PAR.
=> you need to let Hybrid know what the correct PAR is.
Let's assume the correct PAR of your source is 4:3 (<>720:480)
So by setting 'Crop/Resize->Pixel Aspect Ratio (PAR)->Input PAR' to 4:3 you need Hybrid know that it should use this PAR.
Cropping the black borders:
Code:
clip = core.std.Crop(clip=clip, left=14, right=18, top=18, bottom=16)# cropping to 448x542
Quote:1440x1080 x264 clip (with 1:1PAR)
Okay. (side note, on Blu-rays 1440x1080 normally too has a PAR of 4:3)
Since you want 1:1 PAR you need to enable 'Crop/Resize->Pixel Aspect Ratio (PAR)->Convert output to PAR' and set it to 'Square Pixel (1:1)'.
To get your desired 1440x1080 you now need to change 'Crop/Resize->Picture Resize->Auto adjust' to 'width' and the width to 1080. Hybrid will then adjust the target width so that the output isn't distorted (width = 1190).
Now to get 1440x1080 you enable letterbox and set it to 1440x1080 and end up with:
![[Image: grafik.png]](https://i.ibb.co/pj4xwD9Y/grafik.png)
![[Image: grafik.png]](https://i.ibb.co/HpTm8xT3/grafik.png)
side note: You might want to fix the chroma shift of the source.
Sure, you can archive the same result by totally disregarding Hybrids workflow, by not adjusting the input par, disabling the audio adjust and manually setting the correct resolution and letterbox, but then you have to do the whole aspect ratio calculations yourself and it doesn't really make sense to use Hybrid.
Cu Selur
Ps.: according to
http://web.archive.org/web/2011122800541...onversion/ 128:78 might be the correct PAR, so with my cropping and the 108ß0 target height, you would get 1440x1062. With letterboxing to 1440x1080 it would look like this:
![[Image: grafik.png]](https://i.ibb.co/wrKKR04q/grafik.png)