Log in

View Full Version : Nero, choosing audio source?


LockoNH
8th March 2007, 01:47
Hopefully JohnV sees this:
I love Nero Recode, but I'm curious to know if you guys are considering adding the ability to choose a seperate audio file, not part of file being encoded. I record some shows off the TV and like convert them using Nero, but I also use AviSynth to do 3:2 frame decimation (I like getting material back to it's original 23.976 fps). When I do this, I have a separate audio file (usually AC3) and video file (.avs), It would be nice to be able to select the AC3file, as opposed to converting and muxing it separately.

Also, a constant quality mode might be nice too.

JohnV
8th March 2007, 04:35
Well if you have the free ac3filter installed, you should be able to open ac3 with DirectShowSource in avisynth:
v = Mpeg2Source("c:\video.d2v")
a = DirectShowSource("c:\audio.ac3")
AudioDub(v,a)

Then drap&drop the avs to Recode.

bond
8th March 2007, 21:09
moved

shon3i
8th March 2007, 21:59
v = Mpeg2Source("c:\video.d2v")
a = DirectShowSource("c:\audio.ac3")
AudioDub(v,a)
Maybe better solution will be to use NicAC3source for AC3 Decoding with DRC=1

a = NicAC3source("c:\audio.ac3",DRC=1)