Skip to content

This plugin is a copy of the official plugin "video_player" but it has a method that makes it possible to change the MediaSource without having to redraw the video controller.

License

Notifications You must be signed in to change notification settings

leonetosoft/flutter_video_player

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3448a50 · Mar 27, 2019

History

5 Commits
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019
Mar 27, 2019

Repository files navigation

flutter_video_player

This plugin is a copy of the official plugin "video_player" but it has a method that makes it possible to change the MediaSource without having to redraw the video controller.

Use nextvideo to change MediaSource Only Android Only local storage files

_controller.nextVideo(video.fileSource);

Oficial install:

Video Player plugin for Flutter

pub package

A Flutter plugin for iOS and Android for playing back video on a Widget surface.

The example app running in iOS

Note: This plugin is still under development, and some APIs might not be available yet. Feedback welcome and Pull Requests are most welcome!

Installation

First, add video_player as a dependency in your pubspec.yaml file.

iOS

Warning: The video player is not functional on iOS simulators. An iOS device must be used during development/testing.

Add the following entry to your Info.plist file, located in <project root>/ios/Runner/Info.plist:

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>

This entry allows your app to access video files by URL.

Android

Ensure the following permission is present in your Android Manifest file, located in `/android/app/src/main/AndroidManifest.xml:

<uses-permission android:name="android.permission.INTERNET"/>

The Flutter project template adds it, so it may already be there.

Supported Formats

  • On iOS, the backing player is AVPlayer. The supported formats vary depending on the version of iOS, AVURLAsset class has audiovisualTypes that you can query for supported av formats.
  • On Android, the backing player is ExoPlayer, please refer here for list of supported formats.

Example

import 'package:video_player/video_player.dart';
import 'package:flutter/material.dart';

void main() => runApp(VideoApp());

class VideoApp extends StatefulWidget {
  @override
  _VideoAppState createState() => _VideoAppState();
}

class _VideoAppState extends State<VideoApp> {
  VideoPlayerController _controller;

  @override
  void initState() {
    super.initState();
    _controller = VideoPlayerController.network(
        'http://www.sample-videos.com/video123/mp4/720/big_buck_bunny_720p_20mb.mp4')
      ..initialize().then((_) {
        // Ensure the first frame is shown after the video is initialized, even before the play button has been pressed.
        setState(() {});
      });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Video Demo',
      home: Scaffold(
        body: Center(
          child: _controller.value.initialized
              ? AspectRatio(
                  aspectRatio: _controller.value.aspectRatio,
                  child: VideoPlayer(_controller),
                )
              : Container(),
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: () {
            setState(() {
              _controller.value.isPlaying
                  ? _controller.pause()
                  : _controller.play();
            });
          },
          child: Icon(
            _controller.value.isPlaying ? Icons.pause : Icons.play_arrow,
          ),
        ),
      ),
    );
  }

  @override
  void dispose() {
    super.dispose();
    _controller.dispose();
  }
}

About

This plugin is a copy of the official plugin "video_player" but it has a method that makes it possible to change the MediaSource without having to redraw the video controller.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published