我需要录制用户的音频并将其存储在本地服务器的数据库中。我试过这个,但它没有用。
<html>
<head></head>
<body>
<?php
if(isset($_POST[submit1]))
{
echo exec("ffmpeg -f alsa -ac 2 -i pulse -acodec pcm_s16le -vcodec libx264 -vpre lossless_ultrafast -threads 0 -y ./Desktop/myVOICE1.wav");
}
?>
<form name="form1" method="POST" action="sample.php">
<input type="Text" name="username">
<input type="submit" name="submit1" value="go">
</form>
</body>
</html>
我可以知道我的代码有问题吗?为什么它不起作用?
我应该怎么办?