I am using ffmpeg for audio conversion. I am using this command:
ffmpeg -i file.mp3 file.wav
This works fine. However I only want to my output file to contain maximum 1 minute of audio. How can I do that using ffmpeg?
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.
Use the following command:
-ss 0– Start at 0 seconds-t 30– Capture 30 seconds (from 0, so 0:00 – 0:30). If you want 1 minute of audio, use-t 60.file.mp3– Input filefile.wav– output file