View Single Post
Old 6th February 2018, 21:51   #9  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
Very likely it's high bitdepth. L-Smash outputs the hacked format by default, then. You can let it dither to 8 bit:
Code:
lwlibavvideosource("source.ts", format="YUV420P8")
Or put into hacked stacked format:
Code:
lwlibavvideosource("source.ts", format="YUV420P16", stacked=true)
Into AviSynth+ native format:
Code:
lwlibavvideosource("source.ts")
ConvertFromDoubleWidth(bits=10)
See README for more info.

Compatibility of non-8 bit formats can be limited in older software, e.g. VirtualDub.

ffms2 does all this automatically, btw. Easier to use.

Last edited by sneaker_ger; 6th February 2018 at 21:59.
sneaker_ger is offline   Reply With Quote