View Single Post
Old 30th December 2017, 00:42   #3  |  Link
FranceBB
Broadcast Encoder
 
FranceBB's Avatar
 
Join Date: Nov 2013
Location: Royal Borough of Kensington & Chelsea, UK
Posts: 2,883
Looks like Avisynth Universal Installer needs administrator rights



I tried to put Avisynth.dll and devil.dll in the VirtualDub folder.
Then, I tried to run a very simple script:

LoadPlugin("C:\Users\bucciantinif\Desktop\VirtualDub\plugins\DirectShowSource.dll")
DirectShowSource("test.mp4")

Doesn't work.



It would be good to have Avisynth portable, but I guess it's not that easy. Link


EDIT: I managed to make it work.

Ok, so now I basically have Avisynth. Cool.

Is there a way to specify the Avisynth autoload directory without adding a reg file?

For the moment, problem solved like this:

Code:
LoadPlugin("C:\Encoding\plugins\ffms2.dll")
video=FFVideoSource("test.mp4")
audio=FFAudioSource("test.mp4")
AudioDub(video, audio)


ResampleAudio(48000)
Normalize(0.89)
Limiter(min_luma=16, max_luma=235, min_chroma=16, max_chroma=240)

ConvertFPS(50)
Spline64Resize(1920, 1080)
assumeTFF()
separatefields()
selectevery(4,0,3)
weave()
Converttoyv16(interlaced=true)

Last edited by FranceBB; 30th December 2017 at 01:11.
FranceBB is offline   Reply With Quote