-
Hey community! Can you please help me to find a way to cut silence in the beginning and in the end of a track? I found ffmpeg.filter.silenceremove filter in Liquidsoap documentation. However I am not really sure how can I use it... Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Hi @iSerganov, You may also want to check out the examples in the book. I should also mention that autocue may provide a better experience. |
Beta Was this translation helpful? Give feedback.
-
Thanks for info provided, @vitoyucepi! |
Beta Was this translation helpful? Give feedback.
-
Hi @iSerganov. From this issue #4057 I've got an impression that you have familiarized yourself with
The above setting is for If we are talking about internal You can see all settings for internal autocue here -> https://github.com/savonet/liquidsoap/blob/27dda43947cdb39fca16a9fb435dc9f45bee1e4b/src/libs/autocue.liq and for
enable_autocue_metadata()
s = playlist("music.m3u8")
s = amplify(1.,override="liq_amplify", s)
s = crossfade(s)
output(s)
|
Beta Was this translation helpful? Give feedback.
-
That's absolutely makes sense! And the option No. 2 is exactly what I was looking for! I need to make As to the That's a great and super helpful explanation which absolutely answers my question. Thank you @gAlleb! |
Beta Was this translation helpful? Give feedback.
Hi @iSerganov. From this issue #4057 I've got an impression that you have familiarized yourself with
autocue
settings.autocue.cue_file.silence := -45.0
About this setting: LU below integrated track loudness for cue-in & cue-out points (silence removal at beginning & end of a track) (default: -42.0)
The above setting is for
autocue
by MoonBase59.If we are talking about internal
autocue
then we have this settings:settings.autocue.internal.cue_in_threshold
- defaults to -34.0settings.autocue.internal.cue_out_threshold
- defaults to -42.0You can see all settings for internal autocue here -> https://github.com/savonet/liquidsoap/blob/27dda43947cdb39fca16a9fb435dc9f45bee1e4b/src/libs/autocu…