From 89ab5937c6f1a67d4b413db5614ced23ce696742 Mon Sep 17 00:00:00 2001 From: Alexey Danilov Date: Mon, 24 Apr 2017 13:06:06 +0300 Subject: [PATCH] notice about exoPlayer demo in exoPlayer branch --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 464d456..511a3c6 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ - [Disk cache limit](#disk-cache-limit) - [Listen caching progress](#listen-caching-progress) - [Providing names for cached files](#providing-names-for-cached-files) + - [Using exoPlayer](#using-exoplayer) - [Sample](#sample) - [Known problems](#known-problems) - [Whats new](#whats-new) @@ -19,7 +20,7 @@ ## Why AndroidVideoCache? Because there is no sense to download video a lot of times while streaming! -`AndroidVideoCache` allows to add caching support to your `VideoView/MediaPlayer`, [ExoPlayer](https://github.com/danikula/ExoPlayer/commit/6110be8559f003f98020ada8c5e09691b67aaff4) or any another player with help of single line! +`AndroidVideoCache` allows to add caching support to your `VideoView/MediaPlayer`, [ExoPlayer](https://github.com/danikula/AndroidVideoCache/tree/exoPlayer) or any another player with help of single line! ## Features - caching to disk during streaming; @@ -136,6 +137,9 @@ HttpProxyCacheServer proxy = HttpProxyCacheServer.Builder(context) .build() ``` +### Using exoPlayer +You can use [`exoPlayer`](https://google.github.io/ExoPlayer/) with `AndroidVideoCache`. See `sample` app in [`exoPlayer`](https://github.com/danikula/AndroidVideoCache/tree/exoPlayer) branch. Note [exoPlayer supports](https://github.com/google/ExoPlayer/commit/bd7be1b5e7cc41a59ebbc348d394820fc857db92) cache as well. + ### Sample See `sample` app.