Hello
I have two AVI files, that both have AC3 audio and I am trying to combine them into one MP4 using MeGUI
I have created the following AviSynth script:
But when I try and run the AVS script through MeGUI using the Nero AAC encoder it fails, I have also tried:Code:DirectShowSource("C:\temp\file01.avi", fps=23.976, audio=true, convertfps=true)++DirectShowSource("C:\temp\file02.avi", fps=23.976, audio=true, convertfps=true) #deinterlace #crop LanczosResize(480,208) # Lanczos (Sharp) #denoise
But that fails too. I have AC3Filter installed along with ffdshow meaning I can decode the audio (single file encodes work fine)Code:AviSource("C:\temp\file01.avi", audio=true)++AviSource("C:\temp\file02.avi", audio=true) #deinterlace #crop LanczosResize(480,208) # Lanczos (Sharp) #denoise
Any ideas?
Also, HAPPY CHRISTMAS![]()
+ Reply to Thread
Results 1 to 4 of 4
-
-
First test your script by opening it in, e.g., VirtualDub.
Then see exactly what error message you get.
Possibly the framesizes are different; the number of audio channels, etc.
So you might need to resize each video before joining. -
Turns out my script is a little simpler:
Code:AviSource("C:\temp\file01.avi", audio=true)++AviSource("C:\temp\file02.avi", audio=true)
Similar Threads
-
Increasing Audio volume on AVI/DivX/Xvid with AC3 Audio
By Spacedementia87 in forum User guidesReplies: 21Last Post: 24th Dec 2021, 07:21 -
mkv with ac3 audio -> avi with ac3 audio ? is this possible?
By Substance001 in forum Video ConversionReplies: 9Last Post: 20th Jun 2011, 23:56 -
AC3 music/dialog is split. Any way to combine the two?
By silvertoaster in forum AudioReplies: 1Last Post: 23rd May 2011, 18:34 -
Avi to Ac3 user guide. How to encode the audio from an avi to ac3 .
By freebird73717 in forum User guidesReplies: 5Last Post: 9th Dec 2009, 21:53 -
demux audio from avi then two audio sources(aac 2ch + ac3 6ch)
By fatcat23 in forum ffmpegX general discussionReplies: 4Last Post: 21st Sep 2008, 01:19