* @package MCMS\System * @since 1.1.0.0 */ interface MetaMultimedia extends Meta { const MEDIA_AUDIO = 'audio'; const MEDIA_VIDEO = 'video'; /** * MEDIA_AUDIO or MEDIA_VIDEO constant */ public function getType(); /** * Mimetype of the media element (audio/mpeg, application/x-shockwave-flash, . * ..) */ public function getMimeType(); /** * Player URL (flash/java/...) */ public function getPlayerUrl(); /** * Direct stream data URL */ public function getStreamUrl(); }