Coder Social home page Coder Social logo

Comments (3)

buzz avatar buzz commented on June 28, 2024 1

Please check out the current release v0.0.3. Thanks!

Node.js example: https://github.com/buzz/mediainfo.js/blob/master/examples/cli.js

from mediainfo.js.

BohdanVovkotrub avatar BohdanVovkotrub commented on June 28, 2024

Hi! Help me please, how can I use it? I am noob in node.js. Thank you before)

from mediainfo.js.

greifmatthias avatar greifmatthias commented on June 28, 2024

The sample didn't work for me.
Got it working this way for node v12.9.1

const mediainfolib = require('./mediainfo.js');
const parser = require('xml2json');
const fs = require('fs');

export default {

  mi: undefined,

  create: async function () {
    // some weird bug in the mediainfo.js library
    const oldReadFileSync = fs.readFileSync;
    fs.readFileSync = function (filename) {
      if (filename === 'mediainfo.js.mem')
        return oldReadFileSync.call(this, require.resolve('mediainfo.js') + '.mem');
      else return oldReadFileSync.apply(fs, arguments);
    };

    const lib = mediainfolib();

    // CHANGED THIS HERE
    this.mi = await new Promise(function (resolve, reject) {
      lib.then(x => resolve(new x.MediaInfo()));
    });

    return this;
  },

  extract: function (buffer) {
    const fileSize = parseInt(buffer.byteLength);
    const offset = 0;

    this.mi.open_buffer_init(fileSize, offset);
    this.mi.open_buffer_continue(buffer, fileSize);
    const xmlResult = this.mi.inform();
    this.mi.close();

    return parser.toJson(xmlResult, { object: true });
  }
};

from mediainfo.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.