## lib/ffprobe * [lib/ffprobe](#module_lib/ffprobe) * [~FFPROBE](#module_lib/ffprobe..FFPROBE) * [.parseFps()](#module_lib/ffprobe..FFPROBE+parseFps) * [.info(video)](#module_lib/ffprobe..FFPROBE+info) ⇒ object * [.frames(video)](#module_lib/ffprobe..FFPROBE+frames) ⇒ integer ### lib/ffprobe~FFPROBE Class representing all ffprobe features. **Kind**: inner class of [lib/ffprobe](#module_lib/ffprobe) * [~FFPROBE](#module_lib/ffprobe..FFPROBE) * [.parseFps()](#module_lib/ffprobe..FFPROBE+parseFps) * [.info(video)](#module_lib/ffprobe..FFPROBE+info) ⇒ object * [.frames(video)](#module_lib/ffprobe..FFPROBE+frames) ⇒ integer #### ffprobE.parseFps() Parse the fps entry into a float representing the fps of a video **Kind**: instance method of [FFPROBE](#module_lib/ffprobe..FFPROBE) #### ffprobE.info(video) ⇒ object Get info on a video in json format. Use for filmout. **Kind**: instance method of [FFPROBE](#module_lib/ffprobe..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](#module_lib/ffprobe..FFPROBE) **Returns**: integer - Number of frames in video | Param | Type | Description | | --- | --- | --- | | video | string | Path to video |