Timing interface implies that the ID3v2 frame contains * one or more 32-bit timestamps. * * The timestamps are absolute times, meaning that every stamp contains the time * from the beginning of the file. * * @package php-reader * @subpackage ID3 * @author Sven Vollbehr * @copyright Copyright (c) 2008 The PHP Reader Project Workgroup * @license http://code.google.com/p/php-reader/wiki/License New BSD License * @version $Rev: 64 $ */ interface ID3_Timing { /** The timestamp is an absolute time, using MPEG frames as unit. */ const MPEG_FRAMES = 1; /** The timestamp is an absolute time, using milliseconds as unit. */ const MILLISECONDS = 2; /** * Returns the timing format. * * @return integer */ public function getFormat(); /** * Sets the timing format. * * @param integer $format The timing format. */ public function setFormat($format); }