将 parec 的输出通过管道传输到 sox

将 parec 的输出通过管道传输到 sox

sox可能是唯一一个让我继续感到沮丧的 Linux 程序。与此同时,我对它的功能感到敬畏,如果不能掌握它的话,我想接近流利地使用它。

今天,我花了大约 2 个小时尝试通过管道sox读取字节。parec

字节parec是一个pulseaudio“接收器”。为了让它们流过管道,我用了这个答案来自askubuntu。

这是我一直在使用的命令:

$ parec -d telephonControl.monitor | sox -b 16 -e signed -c 2 -r 44100 - -t pulse hmm.ogg silence 1 0.50 0.1% 1 2.0 0.1% :             newfile : restart

这是我得到的错误:

sox FAIL formats: can't determine type of  `-'
write() failed: Broken pipe

更重要的是,oggenc 可以很好地解析它们:

parec -d telephonControl.monitor | oggenc -b 192 -o telephonControl.ogg --raw -
Encoding standard input to 
         "telephonControl.ogg" 
at approximate bitrate 192 kbps (VBR encoding enabled)

我完全不知道如何消化sox这些字节。

$ parec -d telephonControl.monitor >> somebytes

$ soxi somebytes
soxi FAIL formats: can't determine type of file `somebytes'

但我确实知道它们是原始音频、16 位带符号小端、2 通道 44​​100kHz:

$pacmd
>>> list-sink-inputs
1 sink input(s) available.
    index: 17
        driver: <protocol-native.c>
        flags: 
        state: RUNNING
        sink: 2 <telephonControl>
        volume: 0: 100% 1: 100%
                0: 0.00 dB 1: 0.00 dB
                balance 0.00
        muted: no
        current latency: 92.86 ms
        requested latency: 23.20 ms
        sample spec: s16le 2ch 44100Hz
        channel map: front-left,front-right
                     Stereo
        resample method: (null)
        module: 7
        client: 53 <ALSA plug-in>
        properties:
                media.name = "ALSA Playback"
                application.name = "ALSA plug-in"
                native-protocol.peer = "UNIX socket client"
                native-protocol.version = "26"
                application.process.id = "3609"
                application.process.user = "alec"
                application.process.host = "ROOROO"
                window.x11.display = ":0"
                application.language = "en_GB.UTF-8"
                application.process.machine_id = "eec7c6ae60f90bb3921ad16d0000302d"
                application.process.session_id = "eec7c6ae60f90bb3921ad16d0000302d-1345384044.64188-1149507345"
                module-stream-restore.id = "sink-input-by-application-name:ALSA plug-in"

答案1

-t选项需要来它适用的文件名。此外,还-t pulse意味着直接从 PulseAudio 守护进程读取(或写入);它本身不是一种文件格式。原始音频的类型名称是raw

尝试这个:

parec ... | sox -t raw -b 16 -e signed -c 2 -r 44100 - hmm.ogg ...

(其中...意味着保留之前的相同论点)

soxi无法识别文件类型,因为它所做的只是查看标头。原始音频没有可供查看的标题。

相关内容