Seleção de canal com sox

1

Supondo que eu só quero um canal no arquivo de saída, é

sox in.wav out.wav -c 1

equivalente a

sox in.wav out.wav remix 1-n , n é o número de canais de entrada

    
por Nimitz14 25.05.2017 / 12:18

1 resposta

1

A página sox diz:

channels CHANNELS

Invoke a simple algorithm to change the number of channels in the audio signal to the given number CHANNELS: mixing if decreasing the number of channels or duplicating if increasing the number of channels.

The channels effect is invoked automatically if SoX's -c option specifies a number of channels that is different to that of the input file(s).

Portanto, não é equivalente ( channels em vez de remix ), mas o resultado é o mesmo.

    
por 25.05.2017 / 17:00

Tags