cached_video_player_plus 1.0.0 copy "cached_video_player_plus: ^1.0.0" to clipboard
cached_video_player_plus: ^1.0.0 copied to clipboard

Original video_player plugin with the superpower of caching embedded in Android and iOS.

Cached Video Player Plus #

Original video_player plugin with the SUPER-POWER of caching embedded in Android and iOS platforms.

pub package GitHub

GitHub issues GitHub issues closed


Getting Started #

1. Add dependency #

Add the cached_video_player_plus package to your pubspec.yaml file:

dependencies:
  cached_video_player_plus: ^1.0.0

2. Follow the installation instructions #

Follow the installation instructions of video_player plugin.

3. Import the package #

Import the cached_video_player_plus package into your Dart file:

import 'package:cached_video_player_plus/cached_video_player_plus.dart';

4. Use the package #

If you are already using the video_player plugin

  1. Use the CachedVideoPlayerPlusController class instead of the VideoPlayerController.
  2. Use the CachedVideoPlayerPlus class instead of the VideoPlayer.
  3. Use the CachedVideoPlayerPlusValue class instead of the VideoPlayerValue.

If you are not using the video_player plugin

  1. Create a CachedVideoPlayerPlusController instance and initialize it.
final controller = CachedVideoPlayerPlusController.network(
  "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4",
)..initialize().then((value) {
    controller.play();
    setState(() {});
  });
  1. Pass the controller to the CachedVideoPlayerPlus widget.
CachedVideoPlayerPlus(controller),

OR

return Scaffold(
  body: Center(
    child: controller.value.isInitialized
        ? AspectRatio(
            aspectRatio: controller.value.aspectRatio,
            child: CachedVideoPlayerPlus(controller),
          )
        : const CircularProgressIndicator(),
  ),
);

Credits #

This package is a cloned and modified version of the cached_video_player package which is no longer maintained.

The aim of this package is to support the latest version of Flutter with AGP 8+ support.

58
likes
0
pub points
96%
popularity

Publisher

verified publisheroutdatedguy.rocks

Original video_player plugin with the superpower of caching embedded in Android and iOS.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, video_player_platform_interface, video_player_web

More

Packages that depend on cached_video_player_plus