Thread: MeGUI x64
View Single Post
Old 25th February 2018, 15:11   #396  |  Link
Gser
Registered User
 
Join Date: Apr 2008
Posts: 418
Quote:
Originally Posted by sneaker_ger View Post
L-Smash doesn't know native AviSynth+ formats >8 bit, only hacked formats. Either use ffms or try:
For 8 bit output simply:
Code:
LoadPlugin("LSMASHSource.dll")
LSMASHVideoSource("test2.mov", format="YUV420P8")
x264 --input-depth 8 --output-depth 8 "input.avs" -o "output.264"

For 10 bit pipe/output:
Code:
LoadPlugin("LSMASHSource.dll")
LSMASHVideoSource("test2.mov")
ConvertFromDoubleWidth(bits=10)
ConvertBits(16)
x264 --input-depth 16 --output-depth 10 "input.avs" -o "output.264"
L-Smash does know Avisynth+ formats, he just has to set stacked=false.
Gser is offline   Reply With Quote