| 1 | <?php |
||
| 4 | class VideoMetadata extends MediaMetadata |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * The duration of the video in milliseconds |
||
| 9 | * |
||
| 10 | * @var int |
||
| 11 | */ |
||
| 12 | protected $duration; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Create a new VideoMetadata instance |
||
| 16 | * |
||
| 17 | * @param array $data |
||
| 18 | */ |
||
| 19 | public function __construct(array $data) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the duration of the video |
||
| 27 | * |
||
| 28 | * @return int |
||
| 29 | */ |
||
| 30 | public function getDuration() |
||
| 34 | } |
||
| 35 |