12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- if (!defined('GETID3_INCLUDEPATH')) {
- exit;
- }
-
- class getid3_wtv extends getid3_handler
- {
-
-
- public function Analyze() {
- $info = &$this->getid3->info;
-
- $info['fileformat'] = 'wtv';
- $info['video']['dataformat'] = 'wtv';
-
- $this->error('WTV (Windows Recorded TV Show) files not properly processed by this version of getID3() ['.$this->getid3->version().']');
-
- return true;
- }
-
- }
|