8000 GitHub - dao-wkm/flutter_video_info: A flutter plugin to get basic metadatainfo of a video file.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dao-wkm/flutter_video_info

 
 

Repository files navigation

pub package pub package

flutter_video_info 1.3.1

This plugin uses MediaMetadataRetriever class of native android to get basic meta information of a video file.

The following info can be extracted by this plugin:

title path author mimetype height width filesize duration orientation date framerate location

Installation & Uses

Add flutter_video_info as a dependency in your pubspec.yaml file (what?).

dependencies:
    flutter_video_info: <current version>

Import FlutterVideoInfo in your dart file.

import 'package:flutter_video_info/flutter_video_info.dart';

final videoInfo = FlutterVideoInfo();

String videoFilePath = "your_video_file_path";
var info = await videoInfo.getVideoInfo(videoFilePath);

//String title = info.title;   to get title of video
//similarly path,author,mimetype,height,width,filesize,duration,orientation,date,framerate,location can be extracted.

for iOS

If you select a video from your photo library, Add the following keys to your Info.plist file, located in /ios/Runner/Info.plist:

NSPhotoLibraryUsageDescription - describe why your app needs permission for the photo library. This is called Privacy - Photo Library Usage Description in the visual editor.

Troubleshooting

Checkout here

PR is welcomed

Anyone can pr for these issues
Thanks for your PR Over IOException issue @martinale14,@devianl2 and @nagendarbalajij-devs

About

A flutter plugin to get basic metadatainfo of a video file.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 32.0%
  • Java 29.4%
  • Swift 22.2%
  • Ruby 12.3%
  • Objective-C 4.1%
0