Youtube Player IFrame
Flutter plugin for playing or streaming YouTube videos inline using the official iFrame Player API. The package exposes almost all the API provided by iFrame Player API. So, it's 100% customizable.
This package uses webview_flutter under-the-hood.
See webview_flutter's doc for the requirements.
Start by creating a controller.
final _controller = YoutubePlayerController(
params: YoutubePlayerParams(
mute: false,
showControls: true,
showFullscreenButton: true,
),
);
_controller.loadVideoById(...); // Auto Play
_controller.cueVideoById(...); // Manual Play
_controller.loadPlaylist(...); // Auto Play with playlist
_controller.cuePlaylist(...); // Manual Play with playlist
// If the requirement is just to play a single video.
final _controller = YoutubePlayerController.fromVideoId(
videoId: '<video-id>',
autoPlay: false,
params: const YoutubePlayerParams(showFullscreenButton: true),
);
Then the player can be used in two ways:
YoutubePlayer
This widget can be used when fullscreen support is not required.
YoutubePlayer(
controller: _controller,
aspectRatio: 16 / 9,
);
YoutubePlayerScaffold
This widget can be used when fullscreen support for the player is required.
YoutubePlayerScaffold(
controller: _controller,
aspectRatio: 16 / 9,
builder: (context, player) {
return Column(
children: [
player,
Text('Youtube Player'),
],
),
},
),
See the example app for detailed usage.
The package provides YoutubePlayerControllerProvider
.
YoutubePlayerControllerProvider(
controller: _controller,
child: Builder(
builder: (context){
// Access the controller as:
// `YoutubePlayerControllerProvider.of(context)`
// or `controller.ytController`.
},
),
);
The package provides YoutubeValueBuilder
, which can be used to create any custom controls.
For example, let's create a custom play pause button.
YoutubeValueBuilder(
controller: _controller, // This can be omitted, if using `YoutubePlayerControllerProvider`
builder: (context, value) {
return IconButton(
icon: Icon(
value.playerState == PlayerState.playing
? Icons.pause
: Icons.play_arrow,
),
onPressed: value.isReady
? () {
value.playerState == PlayerState.playing
? context.ytController.pause()
: context.ytController.play();
}
: null,
);
},
);
For Android: Since the plugin is based on platform views. This plugin requires Android API level 19 or greater.
Copyright 2022 Sarbagya Dhaubanjar. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Run this command:
With Flutter:
$ flutter pub add youtube_player_iframe
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
youtube_player_iframe: ^4.0.4
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:youtube_player_iframe/youtube_player_iframe.dart';
// Copyright 2020 Sarbagya Dhaubanjar. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:developer';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:youtube_player_iframe/youtube_player_iframe.dart';
import 'package:youtube_player_iframe_example/video_list_page.dart';
import 'widgets/meta_data_section.dart';
import 'widgets/play_pause_button_bar.dart';
import 'widgets/player_state_section.dart';
import 'widgets/source_input_section.dart';
const List<String> _videoIds = [
'tcodrIK2P_I',
'H5v3kku4y6Q',
'nPt8bK2gbaU',
'K18cpp_-gP8',
'iLnmTe5Q2Qw',
'_WoCV4c6XOE',
'KmzdUe0RSJo',
'6jZDSSZZxjQ',
'p2lYr3vM_1w',
'7QUtEmBT_-w',
'34_PXCzGw1M'
];
Future<void> main() async {
runApp(YoutubeApp());
}
///
class YoutubeApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Youtube Player IFrame Demo',
theme: ThemeData.from(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepPurple,
brightness: Brightness.dark,
),
useMaterial3: true,
),
debugShowCheckedModeBanner: false,
home: YoutubeAppDemo(),
);
}
}
///
class YoutubeAppDemo extends StatefulWidget {
@override
_YoutubeAppDemoState createState() => _YoutubeAppDemoState();
}
class _YoutubeAppDemoState extends State<YoutubeAppDemo> {
late YoutubePlayerController _controller;
@override
void initState() {
super.initState();
_controller = YoutubePlayerController(
params: const YoutubePlayerParams(
showControls: true,
mute: false,
showFullscreenButton: true,
loop: false,
),
);
_controller.setFullScreenListener(
(isFullScreen) {
log('${isFullScreen ? 'Entered' : 'Exited'} Fullscreen.');
},
);
_controller.loadPlaylist(
list: _videoIds,
listType: ListType.playlist,
startSeconds: 136,
);
}
@override
Widget build(BuildContext context) {
return YoutubePlayerScaffold(
controller: _controller,
builder: (context, player) {
return Scaffold(
appBar: AppBar(
title: const Text('Youtube Player IFrame Demo'),
actions: const [VideoPlaylistIconButton()],
),
body: LayoutBuilder(
builder: (context, constraints) {
if (kIsWeb && constraints.maxWidth > 750) {
return Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(
flex: 3,
child: Column(
children: [
player,
const VideoPositionIndicator(),
],
),
),
const Expanded(
flex: 2,
child: SingleChildScrollView(
child: Controls(),
),
),
],
);
}
return ListView(
children: [
player,
const VideoPositionIndicator(),
const Controls(),
],
);
},
),
);
},
);
}
@override
void dispose() {
_controller.close();
super.dispose();
}
}
///
class Controls extends StatelessWidget {
///
const Controls();
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
MetaDataSection(),
_space,
SourceInputSection(),
_space,
PlayPauseButtonBar(),
_space,
const VideoPositionSeeker(),
_space,
PlayerStateSection(),
],
),
);
}
Widget get _space => const SizedBox(height: 10);
}
///
class VideoPlaylistIconButton extends StatelessWidget {
///
const VideoPlaylistIconButton({super.key});
@override
Widget build(BuildContext context) {
final controller = context.ytController;
return IconButton(
onPressed: () async {
controller.pauseVideo();
await Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const VideoListPage(),
),
);
controller.playVideo();
},
icon: const Icon(Icons.playlist_play_sharp),
);
}
}
///
class VideoPositionIndicator extends StatelessWidget {
///
const VideoPositionIndicator({super.key});
@override
Widget build(BuildContext context) {
final controller = context.ytController;
return StreamBuilder<YoutubeVideoState>(
stream: controller.videoStateStream,
initialData: const YoutubeVideoState(),
builder: (context, snapshot) {
final position = snapshot.data?.position.inMilliseconds ?? 0;
final duration = controller.metadata.duration.inMilliseconds;
return LinearProgressIndicator(
value: duration == 0 ? 0 : position / duration,
minHeight: 1,
);
},
);
}
}
///
class VideoPositionSeeker extends StatelessWidget {
///
const VideoPositionSeeker({super.key});
@override
Widget build(BuildContext context) {
var value = 0.0;
return Row(
children: [
const Text(
'Seek',
style: TextStyle(fontWeight: FontWeight.w300),
),
const SizedBox(width: 14),
Expanded(
child: StreamBuilder<YoutubeVideoState>(
stream: context.ytController.videoStateStream,
initialData: const YoutubeVideoState(),
builder: (context, snapshot) {
final position = snapshot.data?.position.inSeconds ?? 0;
final duration = context.ytController.metadata.duration.inSeconds;
value = position == 0 || duration == 0 ? 0 : position / duration;
return StatefulBuilder(
builder: (context, setState) {
return Slider(
value: value,
onChanged: (positionFraction) {
value = positionFraction;
setState(() {});
context.ytController.seekTo(
seconds: (value * duration).toDouble(),
allowSeekAhead: true,
);
},
min: 0,
max: 1,
);
},
);
},
),
),
],
);
}
}
Download details:
Author: sarbagyastha.com.np
Source: https://github.com/sarbagyastha/youtube_player_flutter