I'm attempting to use the fade out command through SoxFilter. I almost have it, but it cuts out the rest of the audio. I just want a specific part. I can't find any examples. The wiki doesn't offer any.
Here is what I have:
soxfilter("fade 0 00:01:38")
According to the wiki, I choose 0 for no fade-in, then I choose the exact time for the fade-out, 1 minute and 38 seconds. I've gotten that far. My problem is that it cuts the audio completely from that point on. All I want is a fadeout for 1 second or so.
+ Reply to Thread
Results 1 to 3 of 3
-
-
Are you using Avisynth? Then you can use "audiotrim" to separate the audio into two parts,
apply the fade to the first part,
then join the clips.
For example, this will divide at 60 seconds, then apply the fade from 55 - 60 seconds. Then join the two parts back together
Code:start=audiotrim(0.0,60.0) therest=audiotrim(60.0,0.0) start=soxfilter(start,"fade t 0 60 5") start++therest
-
Assuming your audio length is 1 minute and 39 seconds and you want no fade in and 1 second fade out, then try:
Code:soxfilter("fade 0 00:01:39 1")
Similar Threads
-
Fade in and out without re-encoding
By fooledagain in forum EditingReplies: 5Last Post: 10th Aug 2024, 18:57 -
Can I fade in\out using AudioTrim?
By smike in forum EditingReplies: 1Last Post: 12th Jun 2024, 13:22 -
Getting a quote to fade in in two parts
By BenO in forum EditingReplies: 1Last Post: 16th Mar 2023, 12:58 -
How to fade in/out
By JackTenSuited in forum Newbie / General discussionsReplies: 3Last Post: 6th May 2021, 09:38 -
Fade in/Fade out, remove beginning or ending, invert
By Shinnen in forum Newbie / General discussionsReplies: 3Last Post: 22nd Mar 2021, 18:38