@iamtraction/play-dl
    Preparing search index...

    Interface DeezerAdvancedSearchOptions

    interface DeezerAdvancedSearchOptions {
        album?: string;
        artist?: string;
        label?: string;
        limit?: number;
        maxBPM?: number;
        maxDurationInSec?: number;
        minBPM?: number;
        minDurationInSec?: number;
        title?: string;
    }
    Index
    album?: string

    The title of the album.

    artist?: string

    The name of the artist.

    label?: string

    The label that released the track.

    limit?: number

    The maximum number of results to return, maximum 100, defaults to 10.

    maxBPM?: number

    The minimum BPM.

    maxDurationInSec?: number

    The maximum duration in seconds.

    minBPM?: number

    The minimum BPM.

    minDurationInSec?: number

    The minimum duration in seconds.

    title?: string

    The title of the track.