LiquidSoap.Core 1.0.0-trunk202203031325

This is a prerelease version of LiquidSoap.Core.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package LiquidSoap.Core --version 1.0.0-trunk202203031325
NuGet\Install-Package LiquidSoap.Core -Version 1.0.0-trunk202203031325
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LiquidSoap.Core" Version="1.0.0-trunk202203031325" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LiquidSoap.Core --version 1.0.0-trunk202203031325
#r "nuget: LiquidSoap.Core, 1.0.0-trunk202203031325"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LiquidSoap.Core as a Cake Addin
#addin nuget:?package=LiquidSoap.Core&version=1.0.0-trunk202203031325&prerelease

// Install LiquidSoap.Core as a Cake Tool
#tool nuget:?package=LiquidSoap.Core&version=1.0.0-trunk202203031325&prerelease

LiquidSoap.Core

This is a wrapper library for easy communication with LiquidSoap (by Savonet) via it's daemonized port.

For more information see:

LiquidSoap - Github

LiquidSoap - Project

LiquidSoap - Telnet via .liq file

Docker.LiquidIce - Optional for testing

This contains a docker image that bundles IceCast and LiquidSoap.

This uses an ubuntu 18.04 image that downloads and compiles icecast and liquidsoap (with SSL support).

Docker Registery

The published version of this container image can be found here: LiquidIce - Docker Hub

It is recommended to use a docker-compose file due to the number of arguements used for configuration

You will need:

  1. An Icecast configuration file - an example of which can be found in Docker.LiquidIce.conf/icecast.xml

  2. A LiquidSoap liq file - an example of which can be found in Docker.LiquidIce.conf/radio.liq

  3. The docker compose file

version: "3"
services:
    liquidice:
        container_name: liquidice
        image: funkt0id/liquidice:latest
        user: "liquidice"
        working_dir: /home/liquidice/icecast-2.4.4/src/
        entrypoint: "/home/liquidice/entrypoint.sh"
        ports:
            - "8000:8000"
            - "1234:1234"
        volumes:
            - "./conf:/home/liquidice/conf/"
            - "./logs:/var/log/icecast2/"
            - "./ssl:/home/liquidsoap/ssl/"

This will pull the image from the docker hub.

Ports are:

1. 8000 - For icecast output - changing the corresponding port in icecast.xml will affect this.

2. 1234 - For liquidsoap interaction - changing the port number in the radio.liq file will affect this.

3. Volumes

3.1 /home/liquidice/conf/

    This is a folder containing configuration for liquidice - both the icecast.xml as well as radio.liq reside here

3.2 /var/log/icecast2/

    This is the directory for icecast2 logs

3.3 /home/liquidsoap/ssl/

    This folder is used to hold certificates to allow for SSL connections.

    Please note, for this to work:

    3.3.1 You need to modify the icecast.xml with:

            ```<ssl-certificate>/home/liquidice/ssl/{YOUR CERT NAME HERE}</ssl-certificate>```

    3.3.2 For letsencrypt users:

            ```cat /etc/letsencrypt/live/YOUR DOMAIN/fullchain.pem /etc/letsencrypt/live/YOUR DOMAIN/privkey.pem > ssl/bundle.pem```
            
    3.3.3 PLEASE NOTE: /home/liquidice/ssl/ and "ssl/" in 3.3.2 are the same mapped directory from your docker-compose file


    3.4 /home/liquidsoap/hive/

   This is a folder which should contain audio files that can be used to queue to LiquidSoap / IceCast

LiquidSoap.Core.Tests

To run unit tests - aside from having a working .NET development environment. You will need to change the configuraiton at the top of the unit test file "LiquidSoapInstanceTests.cs"

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-trunk202203031335 120 3/3/2022
1.0.0-trunk202203031325 107 3/3/2022
1.0.0-trunk202203031318 106 3/3/2022
1.0.0-trunk202203031229 107 3/3/2022