Get the length of an audio file php

前端 未结 8 559
轻奢々
轻奢々 2020-12-11 01:43

How I can get the length of an audio file in php.

If it\'s too hard to do in php then any other way should work alright.

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-11 02:30

    If you're using linux / unix and have ffmpeg installed, just do this:

    $time = exec("ffmpeg -i " . escapeshellarg($path) . " 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//");
    list($hms, $milli) = explode('.', $time);
    list($hours, $minutes, $seconds) = explode(':', $hms);
    $total_seconds = ($hours * 3600) + ($minutes * 60) + $seconds;
    

提交回复
热议问题