npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-media-thumbnail

v2.1.1

Published

Create thumbnail and get data from Video/Image/Audio for react-native

Downloads

8

Readme

react-native-media-thumbnail

This module gives power you to extract metadata such as poster(cover), duration, size, etc., that there are in the video, audio, and pictures files.

Of Course, if there is a poster in an audio file you can extract it, otherwise, the null value is returned.

what kind of information and data can we extract by this module?

Video files:

  • Duration
  • width and height
  • Size
  • Thumbnail
  • Poster

Audio files:

  • Duration
  • Size
  • Thumbnail and Poster if exist

Pictures:

  • Thumbnail
  • Poster
  • converting(jpg/png)

Getting started

$ npm install react-native-media-thumbnail --save

Mostly automatic installation

$ react-native link react-native-media-thumbnail

Manual installation

iOS

Currently No Support

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNMediaThumbnailPackage; to the imports at the top of the file
  • Add new RNMediaThumbnailPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-media-thumbnail'
    project(':react-native-media-thumbnail').projectDir = new File(rootProject.projectDir,  '../node_modules/react-native-media-thumbnail/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-media-thumbnail')
  3. Add all wanted permissions to your app android/app/src/main/AndroidManifest.xml file:
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

Usage

import RNMediaThumbnail from 'react-native-media-thumbnail';

RNMediaThumbnail.getMedia(
    'FILE_PATH', // <------- uri: {Image, Video, Audio}
    {
      'poster': // <------- Optional
      {
        'export_uri': 'DESTINATION_FILE_PATH', // <------- Allowed: {jpg, png}
      },
      'thumbnail': // <------- Optional
      {
        'export_uri': 'Base64', // <------- Allowed: {Base64, DESTINATION_FILE_PATH}
        'export_type': 'jpg', // <------- Allowed: {jpg, png} - Default: jpg
        'width': 200,
        'height': 200
      }
    },
    (params) => {
      console.log(params);
    }, (e) => {
      console.log('Error: ', e);
    });

import RNMediaThumbnail from 'react-native-media-thumbnail';

RNMediaThumbnail.getMedia(
    'FILE_PATH', // <------- uri: {Image, Video, Audio}
    {
      'poster': // <------- Optional
      {
        'export_uri': 'Base64', // <------- Allowed: {Base64, DESTINATION_FILE_PATH}
        'export_type': 'png', // <------- Allowed: {jpg, png} - Default: jpg
      },
      'thumbnail': // <------- Optional
      {
        'export_uri': 'DESTINATION_FILE_PATH', // <------- Allowed: {jpg, png}
        'width': 200,
        'height': 200
      }
    },
    (params) => {
      console.log(params);
    }, (e) => {
      console.log('Error: ', e);
    });

Input

| Param | Required | Value | | ------------- |:-------------:|:-------------:| | uri | Yes | String | | poster | No | Object | | poster.export_uri | Yes: [ poster ] not empty | String: Base64 or DESTINATION_FILE_PATH | | poster.export_type | Yes: [ poster.export_uri ] = Base64 | String: jpg or png | | thumbnail | No | Object | | thumbnail.export_uri | Yes: [ thumbnail ] not empty | String: Base64 or DESTINATION_FILE_PATH | | thumbnail.export_type | Yes: [ thumbnail.export_uri ] = Base64 | String: jpg or png | | thumbnail.width | Yes: [ thumbnail ] not empty | Int | | thumbnail.height | Yes: [ thumbnail ] not empty | Int |

Output

| Param | Media | Value | | ------------- |:-------------:|:-------------:| | media_type | * | String: Image or Video or Audio | | width | Image, Video | Int | | height | Image, Video | Int | | size | * | Double | | duration | Video, Audio | Double | | poster | * | Object / null | | poster.width | * | Int | | poster.height | * | Int | | poster.size | * | Double | | poster.uri | * | String: Base64 or DESTINATION_FILE_PATH | | poster.format | * | String: jpg or png | | thumbnail | * | Object / null | | thumbnail.width | * | Int | | thumbnail.height | * | Int | | thumbnail.size | * | Double | | thumbnail.uri | * | String: Base64 or DESTINATION_FILE_PATH | | thumbnail.format | * | String: jpg or png |