Log in

View Full Version : Trimming audio with Eac3 to and More GUI


carlmart
20th May 2009, 13:08
I would like to know if it's possible and how to split an AC3 audio file with Eac3 to and More GUI.

I already have the frame numbers, but I don't know what to use to split them.

Is there any other program that makes this easier?

Comatose
20th May 2009, 15:34
Using mkvmerge is most intuitive IMO, just because you don't have to write the command line yourself.

carlmart
20th May 2009, 17:46
Using mkvmerge is most intuitive IMO, just because you don't have to write the command line yourself.

Sorry, but where do I load the frame numbers? Does it have trim capability?

I already trimmed the video, now I need to trim the audio. Can I do that with avisynth?

b66pak
20th May 2009, 18:34
use delaycut...

http://forum.doom9.org/showthread.php?p=1246699#post1246699
_

carlmart
21st May 2009, 12:38
I ended up using this script and AvsP to do both things at the same time: converting DTS to AC3 and trimming the audio tracks:

v=AVCSource("d:\video.dga")
a=NicDTSSource("d:\audio.dts")

audiodub(v,a)

trim(0,107986)

soundout

>

It worked like a charm.

Thanks to Blue_MiSfit, that told me about this trick. Thanks to you all for helping me.

tebasuna51
21st May 2009, 12:48
Correct if you need transcode the audio, if you want preserve dts or ac3 DelayCut is a lossless method.