Re: [FFmpeg-user] triming an audio wavfile

2021-06-13 Thread Carl Eugen Hoyos
Am So., 13. Juni 2021 um 08:47 Uhr schrieb Robert Jeffares : > ffmpeg -hide_banner -loglevel error -i $SOURCE -ss $HEADNUM > -to $TAILNUM somedesiredoutput.wav This cannot work as the file does not get recognized currently. The usual way of dealing with such a case is to upload a sample. Carl

Re: [FFmpeg-user] triming an audio wavfile

2021-06-13 Thread Robert Jeffares
Hi PP, assuming the wav file plays ok the following works here SOURCE=path/to/your/input/file HEADNUM=how far from the *START* of the file you want to start in seconds TAILNUM=how far from the *START* of the file you want to end in seconds. you may have 0 and 60 ffmpeg -hide_banner

Re: [FFmpeg-user] triming an audio wavfile

2021-05-25 Thread pink panther
To be clearer. G729 codec, G711 codec, etc.. the difference is bandwidth. This is a G729 audio wave file On Tue, May 25, 2021 at 6:36 AM pink panther wrote: > mohg729a is just the name of the file. I didn't show any name with g729b > btw. Nevertheless, that is just the name. Nothing to do with

Re: [FFmpeg-user] triming an audio wavfile

2021-05-25 Thread pink panther
mohg729a is just the name of the file. I didn't show any name with g729b btw. Nevertheless, that is just the name. Nothing to do with the format, codec, etc.. It's a g729 audio wavfile that plays while on hold. I just wanted to trim it because it's too long. This is a proprietary music audio file

Re: [FFmpeg-user] triming an audio wavfile

2021-05-25 Thread Carl Eugen Hoyos
> Am 25.05.2021 um 03:39 schrieb pink panther : > > Input #0, wav, from 'Mohg729.wav': > Duration: 00:05:32.55, bitrate: 8 kb/s > Stream #0:0: Audio: none (3[1][0][0] / 0x0133), 8000 Hz, mono, 8 kb/s Please provide the file Mohg729.wav to allow us to fix the issue you see. Thank you, Carl

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread Carl Zwanzig
Please learn what top-posting is and stop doing it on this list. On 5/24/2021 6:40 PM, pink panther wrote: I tried it with the double quotes and got the following. Same out I got using the other statements I got from the other links C:\ffmpeg>ffmpeg -i "Mohg729.wav" -ss 00:00:00.00 -t

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread llee...@sbcglobal.net
On May 24, 2021, at 8:33 PM, pink panther wrote: > > I wanted to send you the output again. This time with the quote removed > just to try it. The output below > > C:\ffmpeg>ffmpeg -i Mohg729.wav -ss 00:00:00.00 -t 00:01:00.00 -c:a copy > Mohg729a.wav > ffmpeg version N-101626-gc5341d415c

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread pink panther
I wanted to send you the output again. This time with the quote removed just to try it. The output below C:\ffmpeg>ffmpeg -i Mohg729.wav -ss 00:00:00.00 -t 00:01:00.00 -c:a copy Mohg729a.wav ffmpeg version N-101626-gc5341d415c Copyright (c) 2000-2021 the FFmpeg developers built with gcc

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread pink panther
I tried it with the double quotes and got the following. Same out I got using the other statements I got from the other links C:\ffmpeg> C:\ffmpeg>ffmpeg -i "Mohg729.wav" -ss 00:00:00.00 -t 00:01:00.00 -c:a copy "Mohg729a.wav" ffmpeg version N-101626-gc5341d415c Copyright (c) 2000-2021 the FFmpeg

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread llee...@sbcglobal.net
On May 24, 2021, at 8:27 PM, pink panther wrote: > > I notice the extra space also. I removed it after sending the email to > you. That didn't work either. > The file extension is the same because I am not changing the type. I am > just trying to change the length of the music audio to 1 minute

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread pink panther
I notice the extra space also. I removed it after sending the email to you. That didn't work either. The file extension is the same because I am not changing the type. I am just trying to change the length of the music audio to 1 minute On Mon, May 24, 2021 at 9:21 PM llee...@sbcglobal.net

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread llee...@sbcglobal.net
On May 24, 2021, at 7:55 PM, pink panther wrote: > > I got the error shown to the bottom of the page. Strange, because the file > is in the ffmpeg directory > > C:\ffmpeg>ffmpeg -i 'Mohg729.wav ' -ss 00:00:00.00 -t 00:01:00.00 -c:a copy > ‘Mohg729a.wav ' > ffmpeg version N-101626-gc5341d415c

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread pink panther
I got the error shown to the bottom of the page. Strange, because the file is in the ffmpeg directory C:\ffmpeg>ffmpeg -i 'Mohg729.wav ' -ss 00:00:00.00 -t 00:01:00.00 -c:a copy ‘Mohg729a.wav ' ffmpeg version N-101626-gc5341d415c Copyright (c) 2000-2021 the FFmpeg developers built with gcc

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread llee...@sbcglobal.net
> On May 24, 2021, at 4:22 PM, pink panther 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

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread Carl Eugen Hoyos
Am Mo., 24. Mai 2021 um 23:21 Uhr schrieb pink panther : > > 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 Complete, uncut console output missing. Can the input file be decoded? If not, please provide a sample. Please find out

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread pink panther
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

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread Carl Eugen Hoyos
Am Mo., 24. Mai 2021 um 22:23 Uhr schrieb pink panther : > > I have a 325kb audio wave file recorded in g729. If the file does not work at all, we would love to test a sample Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread Simon Roberts
On Mon, May 24, 2021 at 2:18 PM pink panther wrote: > I have a 325kb audio wave file recorded in g729. I am trying to trim it to > 1 minute. I have tried almost every command I see from guys using ffmpeg > and none seem to work.Can someone assist? > > In my experience, editing like this is

Re: [FFmpeg-user] triming an audio wavfile

2021-05-24 Thread Carl Zwanzig
On 5/24/2021 1:18 PM, pink panther wrote: I have a 325kb audio wave file recorded in g729. I am trying to trim it to 1 minute. I have tried almost every command I see from guys using ffmpeg and none seem to work.Can someone assist? What have you tried and what's the command output? (please

[FFmpeg-user] triming an audio wavfile

2021-05-24 Thread pink panther
I have a 325kb audio wave file recorded in g729. I am trying to trim it to 1 minute. I have tried almost every command I see from guys using ffmpeg and none seem to work.Can someone assist? Thanks ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org