31 May
2005
31 May
'05
11:58 a.m.
On tir, 2005-05-31 at 13:25 -0400, Heitzso wrote:
Right now I'm wondering how I can take the raw.dv file as input with ffmpeg and split out a nice raw.pcm file without the audio headers which I might be able to feed into a resampling program to push it from the 48008 (or whatever it is) over to the true 48000.
Maybe you can use sox, that will allow you to override the sample rate in the headers. Example: ffmpeg -i Turman.dv -vn Turman.wav sox -r 48008 Turman.wav -r 48000 Turman_4800.wav Or for better quality, add "resample": sox -r 48008 Turman.wav -r 48000 Turman_4800.wav resample -- Kind regards, Niels Andersen