View Single Post
Old 26th April 2018, 06:50   #6  |  Link
FranceBB
Broadcast Encoder
 
FranceBB's Avatar
 
Join Date: Nov 2013
Location: Royal Borough of Kensington & Chelsea, UK
Posts: 2,883
Quote:
Originally Posted by Music Fan View Post
And if you convert your mpeg-2 files into H.264 10bit, is there still banding ?
Well, no, but it supports H.264 10bit progressive, so I would have to deinterlace the master file and extract and re-encode audio from DolbyE to something else. I mean, it achieves a very good quality, but I thought I was just able to watch the XDCAM masterfile directly... That's a shame. I guess I'll just have to make my own encode of these files...
Something like this should probably work:

Code:
video=FFVideoSource("video.mxf")

ch1=WAVSource("ch1.wav") #FL
ch2=WAVSource("ch2.wav") #FR
ch3=WAVSource("ch3.wav") #C
ch4=WAVSource("ch4.wav") #LFE
ch5=WAVSource("ch5.wav") #SL
ch6=WAVSource("ch6.wav") #SR

audio=MergeChannels(ch1, ch2, ch3, ch4, ch5, ch6)

AudioDub(video, audio)

ConverttoYUY2(interlaced=true)

tdeint(mode=2, order=-1, field=-1, mthreshL=6, mthreshC=6, map=0, type=2, debug=false, mtnmode=1, sharp=true, cthresh=6, blockx=16, blocky=16, chroma=true, MI=64, tryWeave=true, link=1, denoise=true, slow=2, opt=4)

f3kdb(range=15, Y=45, Cb=30, Cr=30, grainY=0, grainC=0, sample_mode=2, blur_first=true, dynamic_grain=false,  opt=3, mt=true, keep_tv_range=true, input_depth=8, output_depth=10)
Thanks anyway. ^_^

Last edited by FranceBB; 26th April 2018 at 06:53.
FranceBB is offline   Reply With Quote