View Full Version : How to cut an audio according to Trimming of video(framely)?
Arshad07
11th October 2009, 13:38
I'm trimming a part of my video as follows:
Trim(10000,20000)
I'd like to get the audio for that bit only. How do i do that?
Guest
11th October 2009, 14:47
Dub in the audio before trimming and the audio will be trimmed along with the video.
Arshad07
11th October 2009, 15:03
What do you mean by dub?
I just need a 6 mins clip. I'm trimming the movie in my avs script before passing it through CCE SP2.
Guest
11th October 2009, 15:35
video=MPEG2Source("myvob.d2v")
audio=WAVSource("myvob.wav")
AudioDub(video,audio)
Trim(...)
Arshad07
10th January 2010, 23:39
How can i get this to work :-
video=DGDecode_mpeg2source("D:\Encoding Folder\DDD\DDD.d2v", cpu=4, info=3)
LoadPlugin("C:\Program Files (x86)\megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)
LoadPlugin("C:\Program Files (x86)\megui\tools\avisynth_plugin\TIVTC.dll")
tfm(order=1).tdecimate()
crop( 0, 58, 0, -58)
Return video
Spline64Resize(1920,816)
audio=WAVSource("D:\Encoding Folder\DDD\new.wav")
AudioDub(video,audio)
sneaker_ger
10th January 2010, 23:52
video=DGDecode_mpeg2source("D:\Encoding Folder\DDD\DDD.d2v", cpu=4, info=3)
audio=WAVSource("D:\Encoding Folder\DDD\new.wav")
AudioDub(video,audio)
LoadPlugin("C:\Program Files (x86)\megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)
LoadPlugin("C:\Program Files (x86)\megui\tools\avisynth_plugin\TIVTC.dll")
tfm(order=1).tdecimate()
crop( 0, 58, 0, -58)
Spline64Resize(1920,816)
stax76
11th January 2010, 00:42
You could try StaxRip as it has cutting support.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.