Will not receive any future updates
1.Introduction
VideoUtil gives you some basic information about video including video’s thumbnail.
You can get info from both the url and local file as well.
Latest Version: 1.1
Released: 2020-07-26T18:30:00Z
Last Updated: 2021-06-28T18:30:00Z
Permission(s): android.permission.READ_EXTERNAL_STORAGE,android.permission.WRITE_EXTERNAL_STORAGE
2.Blocks
3.Documentation
- Got Thumbnail
Event raised after getting thumbnail asynchronously and returns thumbnail’s (absolute) path .
path ~ text
- Custom Metadata
Returns info from metadata for specific id
videoPath ~ text
id ~ int
Returns : text
Supported Ids: MediaMetadataRetriever.Constants
- Get Thumbnail
Get thumbnail path of video from source.format can be png,jpeg or webm.quality should be between 1 and 100.Use this method to get thumbnails for small video files because it works synchronously and affects main thread.
videoPath ~ text
format ~ text
quality ~ int
thumbPath ~ text (can be empty)
- Get Thumbnail Async
Works same as ‘GetThumbnail’ but asynchronously
videoPath ~ text
format ~ text
quality ~ int
thumbPath ~ text (can be empty)
- Set Image
Sets image’s picture to thumbnail asynchronously
videoPath ~ text
image ~ Image Component (can be dynamic)
4.Dowloads
Aix can be downloaded from Github repo:
5.Credits
Thanks to @dreemincome for the idea
A lot of thanks to Kodular for this platform
6.ChangeLog
ChangeLog Version 1.1
New Blocks
If enabled then thumbnail(s) will be deleted as soon as user closes application
Disabled by default
Changes
- Added
videoPath
is all methods andthumbPath
param in few methods - Fixed crash/issue
Hope it helps!