I'm using sox to resample audio before introducing it to our speech detection system, but I've hit a snag with version 14.3 of sox adding automatic dithering by default to the resampling operation, which we don't want.
This wouldn't be a problem if we knew that we were always using sox ≥ 14.3, as we could just use the new -D flag to disable it:
sox original.wav -Dr 8000 new.wav
However, we cannot guarantee that we will be using sox ≥ 14.3 so I need some way to specify the -D flag if needed, but leave it out otherwise (as it errors when it doesn't recognise it).
Any ideas?