just_audio_cache 0.1.2 copy "just_audio_cache: ^0.1.2" to clipboard
just_audio_cache: ^0.1.2 copied to clipboard

Collection of extension function of [just_audio](https://pub.dev/packages/just_audio) package for auto-handle caching audio files

just_audio_cache #

pub package

Collection of extension function of just_audio package for auto-handle caching audio files

How to use #

The premise is you already have just_audio package in your dependency

Core method dynamicSet would auto handle caching, if the target file not in cache, would download it and push in cache.

The next time the same url request call, would call the local file instead of requesting.

url is your audio source, a unique key that represents the stored file path,

pushIfNotExisted if true, when the file not exists, would download the file and push in cache

excludeCallback a callback function where you can specify which file you don't want to be cached

import 'package:just_audio_cache/just_audio_cache.dart';

void _play() async {
   // dynamic set your audio source
   await _player.dynamicSet(your_url);
   _player.play();
}

If you want to check if the target file exist in cache

_player.existedInLocal(your_url);

Manually add file to cache

_player.cacheFile(your_audio_url);

Get Cached file for the following url

_player.getCachedFile(url: your_url);

Clear all the cache from storage

_player.clear();
35
likes
120
pub points
89%
popularity

Publisher

unverified uploader

Collection of extension function of [just_audio](https://pub.dev/packages/just_audio) package for auto-handle caching audio files

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http, just_audio, path_provider, shared_preferences

More

Packages that depend on just_audio_cache