-
Downsample multi-channel wav
Like others here I’m trying to come up with better remote / proxy workflows. The task for today is to get a Library to an editor via file transfer. I have the video reduced from 60GB to 8GB using Steve @ Ripple’s HEVC trick and FCPX is happily relinking, but I’m having trouble reducing several days of multi-channel wav files with ffmpeg that total 10GB.
The ffprobe output shows some differences in Metadata but the reported duration and channels are the same but at about 1/4 the size.
Anybody successfully reducing multichannel wav files that FCPX will relink?
ffmpeg:
$ ffmpeg -guess_layout_max 0 -i file.wav -ar 22050 ../newfolder/file.wavffprobe output:
Original:
Input #0, wav, from ‘101T01.WAV’:
Metadata:
comment : sSPEED=023.976-ND
: sTAKE=01
: sUBITS=$00000000
: sSWVER=4.51.01
: sSCENE=101
: sFILENAME=101T01.WAV
: sTAPE=DAY1
: sCIRCLED=FALSE
: sTRK1=MixL
: sTRK2=MixR
: sTRK3=LAV1
: sTRK4=LAV2
: sNOTE=
:
encoded_by : Sound Dev: Mix664 S#KA0713225002
originator_reference: USSDVKA07132250022002198QB1XU 11
date : 2020-02-19
creation_time : 08:26:22
time_reference : 1459265809
coding_history : A=PCM,F=48000,W=24,M=multi,R=48000,T=4 Ch
:
Duration: 00:00:24.02, bitrate: 4610 kb/s
Stream #0:0: Audio: pcm_s24le ([1][0][0][0] / 0x0001), 48000 Hz, 4 channels, s32 (24 bit), 4608 kb/sReduced:
Input #0, wav, from ‘101T01.WAV’:
Metadata:
comment : sSPEED=023.976-ND
: sTAKE=01
: sUBITS=$00000000
: sSWVER=4.51.01
: sSCENE=101
: sFILENAME=101T01.WAV
: sTAPE=DAY1
: sCIRCLED=FALSE
: sTRK1=MixL
: sTRK2=MixR
: sTRK3=LAV1
: sTRK4=LAV2
: sNOTE=
:
date : 2020-02-19
encoder : Lavf58.29.100
encoded_by : Sound Dev: Mix664 S#KA0713225002
Duration: 00:00:24.02, bitrate: 1411 kb/s
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 22050 Hz, 4 channels, s16, 1411 kb/sThanks,
-Terry