开发者

How to extract "description" tag from a video file info in PHP?

开发者 https://www.devze.com 2023-02-19 11:30 出处:网络
Could somebody help me with PHP code to read the description of a .mov or .mp4 video file? The getID3开发者_高级运维() does not get the Description information (screenshot attached to show what I wan

Could somebody help me with PHP code to read the description of a .mov or .mp4 video file?

The getID3开发者_高级运维() does not get the Description information (screenshot attached to show what I want)

How to extract "description" tag from a video file info in PHP?


Use the PHP Function: http://www.php.net/manual/de/book.id3.php

$tag = id3_get_tag( "path/to/example.mp3" );
print_r($tag);

Or use this: http://sourceforge.net/projects/getid3/

0

精彩评论

暂无评论...
验证码 换一张
取 消