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.










share|improve this question






















  • 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















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.










share|improve this question






















  • 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













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.










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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










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.






share|improve this answer





















  • Please use named options, that way it is more future proof.
    – Paul B. Mahol
    2 days ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























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.






share|improve this answer





















  • Please use named options, that way it is more future proof.
    – Paul B. Mahol
    2 days ago















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.






share|improve this answer





















  • Please use named options, that way it is more future proof.
    – Paul B. Mahol
    2 days ago













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.






share|improve this answer












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.







share|improve this answer












share|improve this answer



share|improve this answer










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


















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

Mangá

 ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕