We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is my script.
SetWorkingDir("c:\AviSynth+\plugins64+")
v1 = FFmpegSource2("D:\video\v1.mp4",atrack=-2).TurnRight() v2 = FFmpegSource2("D:\video\v2.mp4",atrack=-2).TurnRight() a1=DirectShowSource("D:\video\v1.mp4") a2=DirectShowSource("D:\video\v2.mp4")
b=BlankClip(length=5307,width=2160,height=1920,fps=29,channels=2,color=$000000) xpos = 1080 ypos = 0 k=Overlay(b,v1)
video=Overlay(k,v2,x=xpos,y=ypos)
mono1=GetChannel(a1, 1).AmplifydB(7) mono2=GetChannel(a2, 2).AmplifydB(2)
audio=mergechannels(mono1,mono2)
The text was updated successfully, but these errors were encountered:
Are you sure that DirectShowSource returns the audio properly? I found this one but otherwise dunno: http://avisynth.nl/index.php/Internal_functions#OPT_UseWaveExtensible
Sorry, something went wrong.
Could DSS and the re-introduced audio cache be having some kind of conflict? Seeing as 3.7.2 is apparently fine and 3.7.3 isn't.
I certainly couldn't reproduce this with FFMS2 or Colorbars on Linux.
Audio channel flags perhaps, haven't tried yet, could you reproduce it with arbitrary stereo source?
Could not reproduce either. I've got sound. Need more info.
No branches or pull requests
This is my script.
SetWorkingDir("c:\AviSynth+\plugins64+")
v1 = FFmpegSource2("D:\video\v1.mp4",atrack=-2).TurnRight()
v2 = FFmpegSource2("D:\video\v2.mp4",atrack=-2).TurnRight()
a1=DirectShowSource("D:\video\v1.mp4")
a2=DirectShowSource("D:\video\v2.mp4")
b=BlankClip(length=5307,width=2160,height=1920,fps=29,channels=2,color=$000000)
xpos = 1080
ypos = 0
k=Overlay(b,v1)
video=Overlay(k,v2,x=xpos,y=ypos)
mono1=GetChannel(a1, 1).AmplifydB(7)
mono2=GetChannel(a2, 2).AmplifydB(2)
audio=mergechannels(mono1,mono2)
AudioDub(video,audio)
The text was updated successfully, but these errors were encountered: