You are here: Start » Function Reference » All Functions » Image IO » FisFilter_ReadVideo
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code. OpenInputVideoStream and ReadVideoStream should be used instead.
Header: | FIL.h |
---|---|
Namespace: | fis |
Module: | FoundationLite |
Reads a frame sequence from a video file.
Syntax
bool fis::FisFilter_ReadVideo ( fis::InputVideoStream& ioState, const ftl::File& inFile, int inStartFrame, bool inRepeat, fil::Image& outImage, float& outFPS, int& outFrameNum, int& outMaxFrame )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
ioState | InputVideoStream& | Object used to maintain state of the function. | ||
![]() |
inFile | const File& | Video file | ||
![]() |
inStartFrame | int | 0 - +![]() |
Number of first frame to fetch. | |
![]() |
inRepeat | bool | Determines whether to repeat video playback | ||
![]() |
outImage | Image& | Output image | ||
![]() |
outFPS | float& | FPS | ||
![]() |
outFrameNum | int& | Current frame number | ||
![]() |
outMaxFrame | int& | Last frame number |
Description
FisFilter_ReadVideo filter is based on DirectShow and supports all video formats available using this technology. List of the most popular supported file types and compression formats is shown below.
- MPEG-2 video
- Digital Video
- AVI
- WMV
For complete list of supported formats, please follow the link below:
https://docs.microsoft.com/windows/desktop/DirectShow/supported-formats-in-directshow
Remarks
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Filter not available under the Linux. |
See Also
- FisFilter_WriteVideo – Writes an image sequence to a video file one frame per iteration.