playify 1.1.0+1 copy "playify: ^1.1.0+1" to clipboard
playify: ^1.1.0+1 copied to clipboard

outdated

Playify is a Flutter plugin for playing music and fetching music metadata. Currently supports only iOS.

Playify #

Playify is a Flutter plugin for playing music and fetching music metadata. Currently supports only iOS.

Requirements:

Usage #

import 'package:playify/playify.dart';

//Create an instance
Playify myplayer = Playify();

//Play from the latest queue.
Future<void> play() async {
	await myplayer.play();
}

//Fetch all songs from iOS's Apple Music.
Future<List<Artist>> getAllSongs() async {
	var artists = await myplayer.getAllSongs(sort: true);
	return artists;
}

//Fetch song information about the currently playing song in the queue.
Future<SongInfo> nowPlaying() async {
	var songinfo = await myplayer.nowPlaying();
	return songinfo;
}

//Set the queue using songIDs for iOS.
Future<void> setQueue(songs: List<String>, index: int) async {
	await myplayer.setQueue(songIDs: songs, startIndex: index);
}

//Skip to the next song in the queue.
Future<void> next() async {
	await myplayer.next();
}

//Skip to the previous song in the queue.
Future<void> previous() async {
	await myplayer.previous();
}

//Set the playback time of the song.
Future<void> setPlaybackTime(double time) async {
	await myplayer.setPlaybackTime(time);
}

//Set the shuffle mode.
Future<void> setShuffleMode(Shuffle mode) async {
	await myplayer.setShuffleMode(mode);
}

iOS #

  • For iOS, Playify uses iOS's MusicKit framework. This makes Playify available only on iOS >= 10.1. Make sure to specify the minimum version of the supported iOS version in your app from XCode.

  • Getting All Songs: For geting all songs from the Apple Music library of the iPhone, you can specify whether to sort the artists. The songs are sorted by their track number, and the albums are sorted alphabetically. The cover art of each album is fetched individually, and you can specify the size of the cover art. The larger the cover art, the more amount of RAM it consumes and longer it takes to fetch. The default value takes about 1-2 seconds with 800+ songs.

Android #

  • For Android, I plan to use a popular audio playing library such as audioplayers. Feel free to suggest better implementation plans by creating an issue or by contributing.

Screenshots #

Screenshot Screenshot Screenshot Screenshot

26
likes
0
pub points
63%
popularity

Publisher

unverified uploader

Playify is a Flutter plugin for playing music and fetching music metadata. Currently supports only iOS.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on playify