Log in

View Full Version : Using SuperEQ


BlockABoots
24th September 2016, 14:55
I have a clip that has super overblown bass, to the point its distorting the spakers. I have tried using the command...

SuperEQ("C:\Equalizer Presets\Flat.feq")

but getting a error message saying, invalid arguments to function "SuperEQ"

im point it to the correct folder which has the 'flat.feq' file in

This is my complete code in AvsPmod....

video=FFMpegSource2("F:\Video Captures\2016-09-24_13-27-16.flv",atrack=-1) +FFMpegSource2("F:\Video Captures\2016-09-24_13-01-38.flv",atrack=-1)
video1=SuperEQ("C:\Equalizer Presets\Flat.feq")
video2=trim(video1,270,3656).fadeout(15) +trim(video1,12990,58763).fadein(15).fadeout(15) +trim(video1,138445,140471).fadein(15).fadeout(15) +trim(video1,59783,63865).fadein(15)
video3=fadein(video2,50).fadeout(50)
return video3

any ideas why im getting an error?

FranceBB
24th September 2016, 16:38
You could open your audio track with Foobar2000, choose a preset, adjust it according to your needs and then feed SuperEq with it.
Anyway, I made a simple Loudness Correction Filter times ago:

LoudnessCorrectionFB()

In your case:



FFMpegSource2("F:\Video Captures\2016-09-24_13-27-16.flv",atrack=-1)

LoudnessCorrectionFB()

Source1=last

FFMpegSource2("F:\Video Captures\2016-09-24_13-01-38.flv",atrack=-1)

LoudnessCorrectionFB()

Source2=last

video1=Source1++Source2

video2=trim(video1,270,3656).fadeout(15) +trim(video1,12990,58763).fadein(15).fadeout(15) +trim(video1,138445,140471).fadein(15).fadeout(15) +trim(video1,59783,63865).fadein(15)
video3=fadein(video2,50).fadeout(50)
return video3

raffriff42
24th September 2016, 17:24
SuperEQ needs a source clip, e.g. video1=video.SuperEQ(...) ;)