dsovc00684 2018-06-12 22:21
浏览 32
已采纳

如何在PHP中获取视频时长和视频艺术家名称?

I want to know how to get the duration and Video Artist Name on upload video file in PHP. The file can be in any video format.

  • 写回答

1条回答 默认 最新

  • dss087358 2018-06-12 22:28
    关注

    You would need to add these variables when the video is uploaded by the user or yourself there is no reasonable way (that doesn't involve lots of work) to get that information given only a video file in php.

    Something like

    <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>
    

    Then in your php script you retrieve the post variables and add it to a database table or whatever you want to do with it, your question is short on details.

    You could also use php-mp4info library to read the video file meta data but that requires every video has meta data attached.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部