flutter_video_info
एक फ्लटर प्लगइन जो एक वीडियो फ़ाइल के मूल निर्माण संबंधी जानकारी प्राप्त करता है।
एक फ्लटर प्लगइन जो एक वीडियो फ़ाइल के मूल डेटा की जानकारी प्राप्त करता है।
{"sdk":"flutter"}^1.9.0{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
pub package pub package
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
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.
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.
Checkout here
Anyone can pr for these issues