getID3::CalculateReplayGain

Advertisement

Syntax Syntax

getID3::CalculateReplayGain()

Return Return

(bool)

Source Source

File: wp-includes/ID3/getid3.php

			return false;
		}
		if (empty($this->info['video']['resolution_x']) || empty($this->info['video']['resolution_y'])) {
			return false;
		}
		if (empty($this->info['video']['bits_per_sample'])) {
			return false;
		}

		switch ($this->info['video']['dataformat']) {
			case 'bmp':
			case 'gif':
			case 'jpeg':
			case 'jpg':
			case 'png':
			case 'tiff':
				$FrameRate = 1;
				$PlaytimeSeconds = 1;
				$BitrateCompressed = $this->info['filesize'] * 8;
				break;

Advertisement

Advertisement

Leave a Reply