const config = require('config')
const crypto = require('crypto')
const express = require('express')
-const ffmpeg = require('fluent-ffmpeg')
const multer = require('multer')
const logger = require('../../../helpers/logger')
return next(err)
}
- ffmpeg.ffprobe(video_file.path, function (err, metadata) {
+ videos.getVideoDuration(video_file.path, function (err, duration) {
if (err) {
// TODO: unseed the video
logger.error('Cannot retrieve metadata of the file')
return next(err)
}
- const duration = Math.floor(metadata.format.duration)
-
const video_data = {
name: video_infos.name,
namePath: video_file.filename,
const async = require('async')
const config = require('config')
+const ffmpeg = require('fluent-ffmpeg')
const pathUtils = require('path')
const webtorrent = require('../lib/webtorrent')
const uploadDir = pathUtils.join(__dirname, '..', '..', config.get('storage.uploads'))
const videos = {
+ getVideoDuration: getVideoDuration,
getVideoState: getVideoState,
seed: seed,
seedAllExisting: seedAllExisting
}
+function getVideoDuration (video_path, callback) {
+ ffmpeg.ffprobe(video_path, function (err, metadata) {
+ if (err) return callback(err)
+
+ return callback(null, Math.floor(metadata.format.duration))
+ })
+}
+
function getVideoState (video) {
const exist = (video !== null)
let owned = false