flutter_audio_query 0.3.3 copy "flutter_audio_query: ^0.3.3" to clipboard
flutter_audio_query: ^0.3.3 copied to clipboard

outdated

Flutter plugin to query data about artists, albums, songs, genres and playlists from device storage.

Flutter Audio Query #

A Flutter plugin, Android only at this moment, that allows you query for audio metadata info about artists, albums, songs audio files and genres available on device storage. All work is made using Android native MediaStore API with ContentResolver API and query methods run in background thread. AndroidX support it's OK!

Note: This plugin is under development, Works in Android devices only and some APIs are not available yet. Feedback, pull request, bug reports and suggestions are all welcome!

Feel free to help!

Example app included #

| | | |

Features #

  • Android permissions READ_EXTERNAL_STORAGE and READ_EXTERNAL_STORAGE built-in
  • Get all artists audio info available on device storage
  • Get artists available from a specific genre
  • Search for artists matching a name
  • Artist comes with some album Artwork cover if available
  • Get all albums info available on device storage
  • Get albums available from a specific artist
  • Get albums available from a specific genre
  • Search albums matching a name
  • Album artwork included if available
  • Get songs all songs available on device storage
  • Get songs from a specific album
  • Songs already comes with album artwork cover if available
  • Get availables genre.
  • Get all playlists available
  • Create new playlists
  • Remove playlist
  • Add songs to playlist
  • Remove song from playlist
  • Multiple sort types for Artist, Album, Song, Genre, Playlist.

TO DO #

  • Make this basic implementation for iOS.
  • Allow change playlist songs order
  • Streams support.
  • Improvements in background tasks.
  • More tests and probably bug fixes.

Usage #

To use this plugin, add flutter_audio_query as a dependency in your pubspec.yaml file. For example:

  dependencies:
    flutter_audio_query: ^0.3.2

API #

FlutterAudioQuery #

To get get audio files metadata info you just need FlutterAudioQuery object instance.

///you need include this file only.
import 'package:flutter_audio_query/flutter_audio_query.dart';
/// create a FlutterAudioQuery instance.
final FlutterAudioQuery audioQuery = FlutterAudioQuery();

Getting all artist available on device storage:

List<ArtistInfo> artists = await audioQuery.getArtists(); // returns all artists available

artists.forEach( (artist){
      print(artist); /// prints all artist property values
    } );

Getting albums data:

 /// getting all albums available on device storage
 List<AlbumInfo> albumList = await audioQuery.getAlbums();

/// getting all albums available from a specific artist
List<AlbumInfo> albums = await audioQuery.getAlbumsFromArtist(artist: artist.name);
    albums.forEach( (artistAlbum) {
      print(artistAlbum); //print all album property values
    });

Getting genre data #

/// getting all genres available
 List<GenreInfo> genreList = audioQuery.getGenres();

 genreList.foreach( (genre){
   /// getting all artists available from specific genre.
   await audioQuery.getArtistsFromGenre(genre: genre.name);

   /// getting all albums which appears on genre [genre].
   await audioQuery.getAlbumsFromGenre(genre: genre.name);

   /// getting all songs which appears on genre [genre]
   await audioQuery.getSongsFromGenre(genre: genre.name);
 } );

Getting songs data #

/// getting all songs available on device storage
List<SongInfo> songs = await audioQuery.getSongs();

albumList.foreach( (album){
 /// getting songs from specific album
 audioQuery.getSongsFromAlbum(album: album.name);
} );

Getting playlist data #

    /// getting all playlist available
    List<PlaylistInfo> playlist = await audioQuery.getPlaylists();

    /// Getting playlist songs
    List<SongInfo> songs = await audioQuery.getSongsFromPlaylist(playlist: playlist[0]);

    /// adding songs into a specific playlist
    PlaylistInfo updatedPlaylist = await playlist[0].addSong(song: songs[2] );

    //removing song from a specific playlist
    updatedPlaylist = await updatedPlaylist.removeSong(song: songs[2]);

Sorting queries #

You can also define a sort query constraint to get the data already sorted using sort enums.ArtistSortType, AlbumSortType, SongSortType, GenreSortType, PlaylistSortType.

    /// Getting albums sorted by most recent year first
    audioQuery.getAlbums(sortType: AlbumSortType.MOST_RECENT_YEAR )

    /// getting artists sorted by number of songs
    audioQuery.getArtits(sortType: ArtistSortType.MORE_TRACKS_NUMBER_FIRST);
    /// and more...

Searching #

You can search using search methods.

    ///searching for albums that title starts with 'a'
    List<AlbumInfo> albums = await audioQuery.searchAlbums(query "a");

    /// searching for songs that title starts with 'la'
    List<SongInfo> songs = await audioQuery.searchSongs(query: "la");

Contributing #

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License #

MIT LICENSE

94
likes
0
pub points
85%
popularity

Publisher

unverified uploader

Flutter plugin to query data about artists, albums, songs, genres and playlists from device storage.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_audio_query