我想知道如何在PHP中上传视频文件中获取持续时间和视频艺术家名称。该文件可以采用任何视频格式。
答案 0 :(得分:0)
当用户或您自己上传视频时,您需要添加这些变量,没有合理的方法(这不涉及大量工作)只能在php中提供视频文件。< / p>
像
这样的东西
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<input type="text" name="video_name" placeholder="Video Name">
<input type="text" name="video_duration" placeholder="Video Duration">
<input type="file" name="video_file">
</body>
然后在你的php脚本中检索post变量并将其添加到数据库表或者你想用它做什么,你的问题是细节问题。
您还可以使用php-mp4info库来阅读视频文件元数据,但这需要每个视频都附加了元数据。