mcopy/app/lib/ffprobe
Matt McWilliams bc081cfe63 Correct lib jsdocs in modules. Update tests to catch new error in mscript. 2024-05-24 15:23:58 -04:00
..
Readme.md Correct lib jsdocs in modules. Update tests to catch new error in mscript. 2024-05-24 15:23:58 -04:00
index.d.ts Correct lib jsdocs in modules. Update tests to catch new error in mscript. 2024-05-24 15:23:58 -04:00
index.js Correct lib jsdocs in modules. Update tests to catch new error in mscript. 2024-05-24 15:23:58 -04:00
index.js.map Correct lib jsdocs in modules. Update tests to catch new error in mscript. 2024-05-24 15:23:58 -04:00
package.json Install libs from intval_go_node project 2019-02-08 12:46:58 -05:00

Readme.md

lib/ffprobe

lib/ffprobe~FFPROBE

Class representing all ffprobe features.

Kind: inner class of lib/ffprobe

ffprobE.parseFps()

Parse the fps entry into a float representing the fps of a video

Kind: instance method of FFPROBE

ffprobE.info(video) ⇒ object

Get info on a video in json format. Use for filmout.

Kind: instance method of FFPROBE
Returns: object - Video info in an object

Param Type Description
video string Path to video

ffprobE.frames(video) ⇒ integer

Count the number of frames in the video using one of two methods. The first uses -select_streams and is very fast. The second uses -count_frames and is VERY slow.

Kind: instance method of FFPROBE
Returns: integer - Number of frames in video

Param Type Description
video string Path to video