You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then we only need to add `amplify` to our source creation function. In the example below we also add `blank.eat`, to automatically cut silence at the beginning or end of tracks.
Copy file name to clipboardexpand all lines: doc/content/cookbook.md
+14-14
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ When building your stream, you'll often need to make it unfallible. Usually, you
48
48
49
49
[Liquidsoap](index.html) can achieve basic streaming tasks like transcoding with ease. You input any number of "source" streams using `input.http`, and then transcode them to any number of formats / bitrates / etc. The only limitation is your hardware: encoding and decoding are both heavy on CPU. If you want to get the best use of CPUs (multicore, memory footprint etc.) when encoding media with Liquidsoap, we recommend using the `%ffmpeg` encoders.
@@ -332,7 +332,7 @@ Crossfade-based transitions are more complex and involve buffering source data i
332
332
333
333
We provide a default operator named `cross.smart` which may be suitable for most usage. But you can also create your own customized crossfade transitions. This is in particular true if you are expecting crossfade transitions between tracks of your `music` source but not between a `music` track and e.g. some jingles. Here's how to do it in this case:
Copy file name to clipboardexpand all lines: doc/content/crossfade.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ You can find its documentation in the [language reference](reference.html).
19
19
20
20
Liquidsoap also includes a ready-to-use operator defined using `cross`, it is called `crossfade` and is defined in the pervasive helper script `utils.liq`. Its code is:
Copy file name to clipboardexpand all lines: doc/content/ffmpeg_cookbook.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Here are some examples of what is possible to do with the ffmpeg support in liqu
6
6
7
7
With ffmpeg support, Liquidsoap can relay encoded streams without re-encoding them, making it possible to re-send a stream to multiple destinations. Here's an example:
0 commit comments