I have a form where user can upload audio file (mp3), but instead of limiting the actual size of it, is it possible to limit the duration of the file in php?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can process the uploaded file with FFMPEG to determine audio length, and cut it if you wish.
You can either call it with
exec(), or use the PHP extension.