php-mediainfo icon indicating copy to clipboard operation
php-mediainfo copied to clipboard

add a menu helper

Open mhor opened this issue 8 years ago • 2 comments

mhor avatar Nov 24 '15 15:11 mhor

@mhor, if you tell me what is a menu helper, may be can i help you with this enhncement

javiertrejo avatar May 07 '16 22:05 javiertrejo

@javiertrejo mediainfo command can return in certain information about menu like this.

As it this information are not usable. The goal of the issue is to add some function to make information about menu revelant.

For example:

$chapters = $menu->getChapters();
$chapter = reset($chapters);
print_r($chapter->getStart()); 
print_r($chapter->getEnd()); 
print_r($chapter->getDuration()); 
print_r($chapter->getName());
print_r($chapter->getLang());
// ....

mhor avatar May 09 '16 10:05 mhor