Equivalent of old-style ffmpeg's silenceremove in newest version of ffmpeg
up vote
0
down vote
favorite
In the past, I've used the audio filter silenceremove=0:0:-45dB:-1:1:-45dB
. It's worked great, but upon downloading a fresh copy of ffmpeg unto another computer, I found that this command no longer works. Examining the wiki reveals that the syntax for the silenceremove
filter has been changed.
Instead of just using an old version of ffmpeg, I'd like to translate this old command to the new so that I don't have to mess with getting a compatible old version. However, since I can't find the wiki entry for the old silenceremove
, It's proving quites difficult to try and translate.
audio ffmpeg
add a comment |
up vote
0
down vote
favorite
In the past, I've used the audio filter silenceremove=0:0:-45dB:-1:1:-45dB
. It's worked great, but upon downloading a fresh copy of ffmpeg unto another computer, I found that this command no longer works. Examining the wiki reveals that the syntax for the silenceremove
filter has been changed.
Instead of just using an old version of ffmpeg, I'd like to translate this old command to the new so that I don't have to mess with getting a compatible old version. However, since I can't find the wiki entry for the old silenceremove
, It's proving quites difficult to try and translate.
audio ffmpeg
Which is your old version?
– Gyan
Nov 25 at 17:30
@Gyan The nightly build of September 21, 2017.
– Matt M.
Nov 25 at 18:32
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
In the past, I've used the audio filter silenceremove=0:0:-45dB:-1:1:-45dB
. It's worked great, but upon downloading a fresh copy of ffmpeg unto another computer, I found that this command no longer works. Examining the wiki reveals that the syntax for the silenceremove
filter has been changed.
Instead of just using an old version of ffmpeg, I'd like to translate this old command to the new so that I don't have to mess with getting a compatible old version. However, since I can't find the wiki entry for the old silenceremove
, It's proving quites difficult to try and translate.
audio ffmpeg
In the past, I've used the audio filter silenceremove=0:0:-45dB:-1:1:-45dB
. It's worked great, but upon downloading a fresh copy of ffmpeg unto another computer, I found that this command no longer works. Examining the wiki reveals that the syntax for the silenceremove
filter has been changed.
Instead of just using an old version of ffmpeg, I'd like to translate this old command to the new so that I don't have to mess with getting a compatible old version. However, since I can't find the wiki entry for the old silenceremove
, It's proving quites difficult to try and translate.
audio ffmpeg
audio ffmpeg
asked Nov 25 at 16:21
Matt M.
1034
1034
Which is your old version?
– Gyan
Nov 25 at 17:30
@Gyan The nightly build of September 21, 2017.
– Matt M.
Nov 25 at 18:32
add a comment |
Which is your old version?
– Gyan
Nov 25 at 17:30
@Gyan The nightly build of September 21, 2017.
– Matt M.
Nov 25 at 18:32
Which is your old version?
– Gyan
Nov 25 at 17:30
Which is your old version?
– Gyan
Nov 25 at 17:30
@Gyan The nightly build of September 21, 2017.
– Matt M.
Nov 25 at 18:32
@Gyan The nightly build of September 21, 2017.
– Matt M.
Nov 25 at 18:32
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
silenceremove=0:0:-45dB:-1:1:-45dB
for September 21, 2017 build translates to silenceremove=0:0:-45dB:0:'any':-1:1:-45dB
for current (Nov 26, 2018) build.
Two options are new. The old option leave_silence
is factorized into start_silence
and stop_silence
, with the former inserted after your third value in the original string. The second option is start_mode
which sets which all channels need to be silent in order for the filter to register the start of a silent segment. Choices are any
(default) and all
. This option appears after start_silence
.
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
silenceremove=0:0:-45dB:-1:1:-45dB
for September 21, 2017 build translates to silenceremove=0:0:-45dB:0:'any':-1:1:-45dB
for current (Nov 26, 2018) build.
Two options are new. The old option leave_silence
is factorized into start_silence
and stop_silence
, with the former inserted after your third value in the original string. The second option is start_mode
which sets which all channels need to be silent in order for the filter to register the start of a silent segment. Choices are any
(default) and all
. This option appears after start_silence
.
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
add a comment |
up vote
2
down vote
accepted
silenceremove=0:0:-45dB:-1:1:-45dB
for September 21, 2017 build translates to silenceremove=0:0:-45dB:0:'any':-1:1:-45dB
for current (Nov 26, 2018) build.
Two options are new. The old option leave_silence
is factorized into start_silence
and stop_silence
, with the former inserted after your third value in the original string. The second option is start_mode
which sets which all channels need to be silent in order for the filter to register the start of a silent segment. Choices are any
(default) and all
. This option appears after start_silence
.
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
silenceremove=0:0:-45dB:-1:1:-45dB
for September 21, 2017 build translates to silenceremove=0:0:-45dB:0:'any':-1:1:-45dB
for current (Nov 26, 2018) build.
Two options are new. The old option leave_silence
is factorized into start_silence
and stop_silence
, with the former inserted after your third value in the original string. The second option is start_mode
which sets which all channels need to be silent in order for the filter to register the start of a silent segment. Choices are any
(default) and all
. This option appears after start_silence
.
silenceremove=0:0:-45dB:-1:1:-45dB
for September 21, 2017 build translates to silenceremove=0:0:-45dB:0:'any':-1:1:-45dB
for current (Nov 26, 2018) build.
Two options are new. The old option leave_silence
is factorized into start_silence
and stop_silence
, with the former inserted after your third value in the original string. The second option is start_mode
which sets which all channels need to be silent in order for the filter to register the start of a silent segment. Choices are any
(default) and all
. This option appears after start_silence
.
answered Nov 26 at 5:25
Gyan
14k21641
14k21641
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
add a comment |
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
Please use named options, that way it is more future proof.
– Paul B. Mahol
2 days ago
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1378256%2fequivalent-of-old-style-ffmpegs-silenceremove-in-newest-version-of-ffmpeg%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Which is your old version?
– Gyan
Nov 25 at 17:30
@Gyan The nightly build of September 21, 2017.
– Matt M.
Nov 25 at 18:32