从L16创建一个mulaw音频文件

问题描述 投票:0回答:1

我有一个包含这些属性的wave文件。

   sampling rate = 16000 Hz 
   encoding = L16 
   channels = 1 
   bit resolution = 16

我想制作2条管道

1)我将此文件内容作为RTP数据包丢弃在port = 5000上

2)监听port = 500捕获rtp数据包并制作具有以下属性的音频文件

   sampling rate = 8000 Hz 
   encoding = PCMU 
   channels = 1 
   bit resolution = 8

我试过的是:发件人:

gst-launch-1.0 filesrc location=/path/to/test_l16.wav ! wavparse ! audioconvert ! audioresample ! mulawenc ! rtppcmupay ! udpsink host=192.168.xxx.xxx port=5000

接收器:

gst-launch-1.0 udpsrc port=5000 ! "application/x-rtp,media=(string)audio, clock-rate=(int)8000, encoding-name=(string)PCMU, channels=(int)1" ! rtppcmudepay ! mulawdec ! filesink location=/path/to/test_pcmu.ulaw

但我在Test.ulaw而不是PCMU获得L16文件

有什么建议吗?

audio gstreamer pipeline mu-law
1个回答
0
投票

检查mulawdec元素的作用:

Pad Templates:
  SINK template: 'sink'
    Availability: Always
    Capabilities:
      audio/x-mulaw
                   rate: [ 8000, 192000 ]
               channels: [ 1, 2 ]

  SRC template: 'src'
    Availability: Always
    Capabilities:
      audio/x-raw
                 format: S16LE
                 layout: interleaved
                   rate: [ 8000, 192000 ]
               channels: [ 1, 2 ]

所以基本上它将Mu Law解码为PCM。如果你想保存原始Mu法而不是删除mulawdec元素。

© www.soinside.com 2019 - 2024. All rights reserved.