youtube_player 1.0.1 copy "youtube_player: ^1.0.1" to clipboard
youtube_player: ^1.0.1 copied to clipboard

discontinued
outdated

A flutter plugin to play Youtube Videos "inline" without API Key in range of Quality(240p, 360p, 480p, 720p and 1080p).

Youtube Player Plugin #

pub package

A flutter plugin to play Youtube Videos "inline" without API Key in ranges of Quality(240p, 360p, 480p, 720p and 1080p).

Salient Features #

  • Inline playback
  • Supports HD and Full HD quality
  • No need for API Key and no Limitations
  • Thumbnail Support
  • Playable through
  • Customizable Controls

DEMO

Usage #

1. Depend

Add this to you package's pubspec.yaml file:

dependencies:
  youtube_player: ^1.0.1

2. Install

Run command:

$ flutter packages get

3. Import

Import in Dart code:

import 'package:youtube_player/youtube_player.dart';

4. Using Youtube Player

///
/// LOW = 240p
/// MEDIUM = 360p
/// HIGH = 480p
/// HD = 720p
/// FHD = 1080p
/// "source" can be either youtube video ID or link.
/// "showThumbnail" Default is true.
/// "acpectRatio" Default is 16/9
/// "autoPlay" Default is true
///
YoutubePlayer(
          source: "nPt8bK2gbaU",
          quality: YoutubeQuality.HD,
          aspectRatio: 16/9,
          autoPlay: false,
          showThumbnail: true,
          // callbackController is (optional). 
          // use it to control player on your own.
          callbackController: (controller) {
            _controller = controller;
            },
),

Example #

Example sources

Limitation #

  • Only Available for Android (Currently)

Future #

  • Support for ios
  • Adaptive playback as per the internet bandwidth

Credit

This plugin is a fork of video_player, which supports youtube playback. The controls used in the plugin is derived from chewie.

Cheers to @Flutter Team and @Brian Egan for developing such useful plugin and packages.

License #

Copyright 2019 Sarbagya Dhaubanjar

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
25
likes
30
pub points
61%
popularity

Publisher

verified publishersarbagyastha.com.np

A flutter plugin to play Youtube Videos "inline" without API Key in range of Quality(240p, 360p, 480p, 720p and 1080p).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta, screen

More

Packages that depend on youtube_player