iqplayer 0.2.1
iqplayer: ^0.2.1 copied to clipboard
Simple awesome video player with subtitle (you can load from assets, file, network, string).
IQPlayer #
Simple video player with subtitle wrote for flutter.
This package as a Gift for my teacher and my leader Mr. Muqtada Al-Sadr.
Proudly made by BLoC.
Features #
- ✅ Play video from Assets, Files, Network by
VideoPlayerController
from video_player. - ✅ Parse subtitles from Assets, Files, Network
SubtitleProvider
class. - ❌ Custom theme you can use with
IQTheme
class. - ✅ Support Subtitles:
- ✅ VTT format
- ❌ SRT format
- ❌ User define format
- ✅ IQScreen: a video player scaffold screen.
- ❌ IQPlayer: a widget enable you to watch video implement with your screen.
- ✅ IQParser: a subtitle package that view subtitles, included the widget and parser
Installation #
1. Depend on #
Go to pubspec.yaml
and set the dependencies like:
dependencies:
iqplayer: <latest_version>
Install packages from the command line with Flutter:
flutter pub get
2. Install #
Android #
Ensure the following permission is present in your Android Manifest file, located in
<uses-permission android:name="android.permission.INTERNET"/>
The Flutter project template adds it, so it may already be there.
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
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
This entry allows your app to access video files by URL.
3. Import #
Now in your Dart code, you can use:
import "package:iqplayer/iqplayer.dart";
Componets #
- IQScreen:
IQScreen(
videoPlayerController = VideoPlayerController.network(""),
subtitleProvider: SubtitleProvider.fromNetwork(""),
title: "Simple Video",
description: "Simple Description",
);
- IQPlayer:
In development.
- IQParser:
Note: It is used automatically with
IQScreen
and you can use and display data withSubtitleProvider
.
BlocProvider<SubtitleBloc>(
create: (context) =>
SubtitleBloc(
SubtitleProvider.fromNetwork(""),
)..add(FetchSubtitles()),
child: MyParser(),
);
Using #
- Start use
IQScreen
with Navigator:
Navigator.push(
context,
MaterialPageRoute(
builder: (BuildContext context) => IQScreen(
title: "",
description: "",
videoPlayerController: VideoPlayerController.network(""),
subtitleProvider: SubtitleProvider.fromNetwork(""),
),
),
);
- Using of
IQParser
:
You have to use
BlocProvider
withSubtitleProvider
to configure subtitles.
// In Your widget
BlocProvider<SubtitleBloc>(
create: (context) =>
SubtitleBloc(
SubtitleProvider.fromNetwork(""),
)..add(FetchSubtitles()),
child: MyParser(),
);
// new parser class, you can exclude `MyParser`
class MyParser extends StatelessWidget {
@override
Widget build(BuildContext context) {
return IQParser();
}
}
Note: You can exclude "MyParser" and delete it!
Note: What is the reason for creating
MyParser
? see this
Example #
import 'package:flutter/material.dart';
import 'package:iqplayer/iqplayer.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'IQPlayer Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'IQPlayer Demo'),
);
}
}
class MyHomePage extends StatelessWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Center(
child: RaisedButton(
child: Text('Open IQPlayer'),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (BuildContext context) => IQScreen(
title: title,
description: 'Simple video as a demo video',
videoPlayerController: VideoPlayerController.network(
'https://d11b76aq44vj33.cloudfront.net/media/720/video/5def7824adbbc.mp4',
),
subtitleProvider: SubtitleProvider.fromNetwork(
'https://duoidi6ujfbv.cloudfront.net/media/0/subtitles/5675420c9d9a3.vtt'
),
),
),
);
},
),
),
);
}
}