Skip to contents

Retrieve the output file of a VideoWriter object.

Usage

writerOuput(x)

Arguments

x

A VideoWriter object.

Value

A character string corresponding to the address of the output file on the hard drive.

Author

Simon Garnier, garnier@njit.edu

Examples

if (FALSE) {
writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
writerOuput(writer)
release(writer)
}