> On May 24, 2021, at 4:22 PM, pink panther <pantherl...@gmail.com> wrote:
> 
> I have tried all of the below. I just want to cut the audio(music on hold)
> to 1 minute because it's too long
> 
> 
> 
> ffmpeg -ss 0 -i Mohg729.wav -t 60 -acodec copy Mohg729a.wav
> 
> ffmpeg -i mohg729.wav -ss 00:00:00 -to 00:00:60 -c copy -y temp.wav
> 
> ffmpeg -ss 00:00 -i Mohg729.wav -t 00:60 -o Mohg729a.wav
> 
> ffmpeg -i Mohg729.wav -ss 00:00:00.0 -codec copy -t 60 Mohg729a.wav
> 
> ffmpeg -i Mohg729.wav -ss 00:1:00 -c copy Mohg729b.wav
> 
> ffmpeg -i Mohg729.wav -ss 00:1:00 -c copy Mohg729b.wav
> 
> ffmpeg -ss 0 -t 50 -i Mohg729.wav Mohg729a.wav
> 

Hi pink panther,

Will this do it?

ffmpeg -i 'audio_too_long.wav' -ss 00:00:00.00 -t 00:01:00.00 -c:a copy 
‘audio_just_right.wav'

Laine Lee
_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to