How to use stream-mmmagic - 3 common examples

To help you get started, we’ve selected a few stream-mmmagic examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github oohnoitz / jii / lib / storage / gridfs.js View on Github external
save(file, readStream, cb) {
    debug('save', file)
    if (file.metadata.secure && (!file.crypto.algorithm || !file.crypto.passphrase)) {
      return cb('You did not provide a valid crypto algorithm and/or passphrase.')
    }

    detectMime(readStream, (err, mime, dataStream) => {
      if (err) {
        return cb(err)
      }

      // set default mime value if libmagic fails
      if (mime === null) {
        mime = { type: 'application/octet-stream' }
      }

      // perform additional lookup when mime type is text/plain
      mime.type = mime.type === 'text/plain'
        ? mimeType.lookup(file.filename) || 'text/plain'
        : mime.type

      // detect if file is blacklisted
      const { blacklist } = this._storageConfig
github oohnoitz / jii / lib / storage / diskfs.js View on Github external
save(file, readStream, cb) {
    debug('save', file)
    if (file.metadata.secure && (!file.crypto.algorithm || !file.crypto.passphrase)) {
      return cb('You did not provide a valid crypto algorithm and/or passphrase.')
    }

    detectMime(readStream, (err, mime, dataStream) => {
      if (err) {
        return cb(err)
      }

      // set default mime value if libmagic fails
      if (mime === null) {
        mime = { type: 'application/octet-stream' }
      }

      // perform additional lookup when mime type is text/plain
      mime.type = mime.type === 'text/plain'
        ? mimeType.lookup(file.filename) || 'text/plain'
        : mime.type

      // detect if file is blacklisted
      const { blacklist } = this._storageConfig
github nknapp / html5-media-converter / src / Html5MediaConverter.js View on Github external
var _ = require("underscore");
var path = require("path");
var VideoConverter = require("./VideoConverter.js");
var Stream = require('stream');
var magic = require('stream-mmmagic');
magic.config.magicFile = "(null),"+path.join(__dirname,"../misc/magic");
var presets = require("./presets.js");


/**
 *
 *
 * @param options configuration options
 * @param options.ffmpeg {String} path to ffmpeg
 * @param options.im {String} path to imagemagick
 * @constructor
 */
function MediaConverter(options) {
    options = _.defaults(options || {}, {
        programs: {
            // Path to the ffmpeg program
            ffmpeg: 'ffmpeg',

stream-mmmagic

sniff the start of a stream (non-destructively) to detect the file type and encoding

MIT
Latest version published 3 years ago

Package Health Score

51 / 100
Full package analysis

Popular stream-mmmagic functions