Using AviSynth mt (x86) and AviSynth+ (x64) and both seemingly work fine. Note: I don't watch long feature movies - if I can play a short 20 minute video by an independent filmmaker without audio/video problems I'm jazzed
That said I just finished watching Little Hurricane perform "Crocodile Tears" https://www.youtube.com/watch?v=o74iygYCXDw (I have it local on my media drive). I specifically looked for audio issues and the sync was right on with the video using the attached AviSynth script.
The software involved was Windows 7 sp1, MPC-HC (x64) 1.7.10.56 (nightly), madVR v0.90.2, fdshow raw video filter rev4533 (sep 29 2014) with buffers set to 3 back and 10 ahead, LAV Video and Spliter Source 0.67.0.58-git.
The hardware is i7-3770 @ 3.40 GHz, AMD HD 7850 with Catalyst 15.7.1 (had problems with Crimson as I couldn't get GPU:1 to work in the AviSynth script) and Logitech G930 7.1 Wireless headset.
There, I think that should do it...
# *******************************************************************************************
# **Global SVP w/auto refresh rate (Good for AVS+ 64-bit - with smoothing (SVP script by yan04000985) **
# *******************************************************************************************
# Check http://www.svp-team.com/wiki/Plugins:_SVPflow for more setting details.
# Check http://www.svp-team.com/wiki/SVP:Profile for more setting details.
#
# Supporting 64-bit dll's
# AviSynth is AviSynth+0.1 (r1779)
# nnedi3.dll is v0.9.4.20
# SVPflow plugins are SVPFlow1 2.0.4.0 7/8/2015 - SVPFlow2 2.0.3.0 10/30/2015
#
SetMemoryMax(4000)
threads=12 #PC threads*1.5/2
#
LoadPlugin("C:\Program Files (x86)\SVP\Plugins\x64\svpflow1.dll")
LoadPlugin("C:\Program Files (x86)\SVP\Plugins\x64\svpflow2.dll")
PluginPath="C:\Program Files (x86)\SVP\Plugins\x64\"
LoadPlugin(PluginPath+"nnedi3.dll")
#
SetFilterMTMode("DEFAULT_MT_MODE",2)
SetFilterMTMode("ffdShow_source",3)
ffdShow_source()
#
#nnedi3 64-bit
#nnedi3_rpow2(rfactor=2,cshift="Spline36Resize",fwidth=Width()*1,fheight=Height()*1,nsize=0,nns=2,qual=1) #No change in size
#nnedi3_rpow2(rfactor=2,cshift="Spline16Resize",fwidth=Width()*4,fheight=Height()*4,nsize=0,nns=2,qual=2) #No change in size
#
#Begin SVP script framework - credit to yan04000985
#
video_fps = last.Framerate
Your_screnn_refresh_rate = "60" # or your target frame rate
Frames_interpolation_mode = "3" # Uniform:0 1m:1 2m:2 adaptive:3
SVP_shader = "13" # 1/2/11/13/21/23
Decrease_grid_step = "{thsad:250}" # By two with global refinement {thsad:250}\{thsad:4000}\{thsad:65000},{thsad:65000}\{thsad:65000} To small step 6-8 px
Target_frame_rate = 0 # 0 = To screen refresh rate , 1 = original video frame rate , 2 = original video frame rate x2 , 3 = original video frame rate x3
Blend_adjacent_frames = "true"
super_params = "{scale:{up:2,down:4},gpu:1,full:true,rc:true}"
analyse_params = "{block:{overlap:2,w:32,h:32},main:{levels:3,search:{coarse:{distance:-14,bad:{sad:2000,range:-32},trymany:false,width:1921},distance:-24,sort:true},penalty:{lambda:10.5,plevel:1.6,lsad:3500,pnew:50,pglobal:50,pzero:100,pnbour:40,prev:30}},refine:["+Decrease_grid_step+"],vectors:3}"
smoothfps_params = Target_frame_rate > 0 ?
\ "{rate:{num:"+String(Target_frame_rate)+",den:1,abs:false},algo:"+SVP_shader+",mask:{cover:70,area:100,area_sharp:1.65},scene:{mode:"+Frames_interpolation_mode+",blend:"+Blend_adjacent_frames+"}}"
\ : video_fps == 24000/1001 || video_fps == 25000/1001 || video_fps == 48000/1001 || video_fps == 30000/1001 ?
\ "{rate:{num:"+Your_screnn_refresh_rate+"000,den:1001,abs:true},algo:"+SVP_shader+",mask:{cover:70,area:100,area_sharp:1.65},scene:{mode:"+Frames_interpolation_mode+",blend:"+Blend_adjacent_frames+"}}"
\ : "{rate:{num:"+Your_screnn_refresh_rate+",den:1,abs:true},algo:"+SVP_shader+",mask:{cover:70,area:100,area_sharp:1.65},scene:{mode:"+Frames_interpolation_mode+",blend:"+Blend_adjacent_frames+"}}"
input = last
#
super=SVSuper(input, super_params)
vectors=SVAnalyse(super, analyse_params, src=input)
SVSmoothFps(input, super, vectors, smoothfps_params, mt=threads, url="www.svp-team.com")
Prefetch(threads)
########### END OF MSMoothFps.avs ###########
#end