mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
9440be3a90
Retrieve video properties such as: height width codec fps
11 lines
504 B
Plaintext
11 lines
504 B
Plaintext
Video::Info is a factory class for working with video files. When you create
|
|
a new Video::Info object, something like this will happen:
|
|
1) open file, determine type. See Video::Info::Magic.
|
|
2) attempt to create object of appropriate class (ie, MPEG::Info for MPEG
|
|
files, RIFF::Info for AVI files).
|
|
3) Probe the file for various attributes
|
|
4) return the created object, or a Video::Info object if the appropriate
|
|
class is unavailable.
|
|
|
|
WWW: http://search.cpan.org/dist/Video-Info/
|