deezer 1.1.0 copy "deezer: ^1.1.0" to clipboard
deezer: ^1.1.0 copied to clipboard

A Dart package for downloading music from Deezer, equipped with robust functions and features.

example/deezer_example.dart

import 'dart:io';

import 'package:deezer/deezer.dart';

void main() async {
  String arl = "GET_YOUR_ARL_FROM_DEEZER_COOKIE";
  // create a deezer instance
  Deezer deezer = await Deezer.create(arl: arl);

  // search for a song
  SearchAlbums? result = await deezer.searchAlbums("Hello");
  if (result != null) {
    print(result.total);
  } else {
    print("Result is null");
  }

  // get track info
  var track = await deezer.getTrack("138545995");
  if (track != null) {
    print(track.results.data.toJson());
  } else {
    print("Track is null");
  }

  // get tracks info
  var tracks = await deezer.getTracks(["138545995", "1439299952"]);
  if (tracks != null) {
    print(tracks.results.toJson());
  } else {
    print("Track is null");
  }

  // get fav songs
  var fav = await deezer.favSongs();
  if (fav != null) {
    print(fav.results.toJson());
  } else {
    print("Fav is null");
  }

  // remove Favourites
  bool removeFav = await deezer.removeFavSongs(["1439299952"]);
  print("Remove Fav: $removeFav");

  // add Favourites
  bool addfav = await deezer.addFavSongs(["1439299952"]);
  print("Fav: $addfav");

  // download a song
  final song = await deezer.getSong(
    "1439299952",
    onProgress: (received, total) {
      print("received: $received, total: $total");
    },
  );
  // write the song to a file
  File file = File("song.mp3");
  if (song != null) {
    await file.writeAsBytes(song.data);
    print("Song downloaded");
  } else {
    print("Song is null");
  }

  // download a song using stream
  final stream = deezer.streamSong(
    "1439299952",
    onProgress: (received, total) {
      print("received stream: $received, total: $total");
    },
  );
  File file2 = File("stream_song.mp3");
  IOSink sink = file2.openWrite();
  await for (List<int> chunk in stream) {
    sink.add(chunk);
  }
  await sink.flush();
  await sink.close();
  print("Stream song downloaded");

  //close the client
  deezer.close();
}
1
likes
150
pub points
37%
popularity

Publisher

verified publishersirimath.net

A Dart package for downloading music from Deezer, equipped with robust functions and features.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

blowfish, cookie_jar, crypto, dio, dio_cookie_manager, encrypt, pointycastle

More

Packages that depend on deezer