gst-launch-0.10没有与alsa和hdmi同步的音频

时间:2019-03-04 10:56:58

标签: gstreamer gst-launch gstreamer-0.10

我正在研究imx 6DualLite。

我无法添加或编辑系统库。

我必须播放hdmi和扬声器的音频文件。

这是我正在使用的管道:

gst-launch-0.10 filesrc location=/home/root/beep.wav ! wavparse ! audioconvert ! audioresample ! tee name=t ! queue ! alsasink t. ! queue ! volume volume=1 ! alsasink device=sysdefault:CARD=imxhdmisoc

问题是扬声器的音频与hdmi的音频不同步

我已经尝试添加

... alsasink device=sysdefault:CARD=imxhdmisoc sync=TRUE

1 个答案:

答案 0 :(得分:0)

我找到了一个解决方案(在我的例子中它有效),通过将显示的两张卡片与命令链接起来:

~ $ cat / proc / asound / cards
  0 [DWHDMI]: dw-hdmi-ahb-aud - DW-HDMI
                       DW-HDMI rev 0x0a, irq 22
  1 [sgtl5000audio]: sgtl5000-audio - sgtl5000-audio
                       sgtl5000-audio
  2 [tda1997xaudio]: tda1997x-audio - tda1997x-audio
                       tda1997x-audio

遵循本指南: https://www.alsa-project.org/wiki/Asoundrc#Virtual_multi_channel_devices

我编辑了文件 /etc/asound.conf。我没有引用整个文件(它很长),而是引用了我修改的最后一部分:

...

pcm.!default{
type plug
route_policy "average"
slave.pcm "asymed"
}

ctl.!default{
type hw
card 0
}

ctl.mixer0{
type hw
card 0
}

变成了

...

pcm.!default{
type plug
route_policy "average"
slave.pcm "asymed"
}

ctl.mixer0{
type hw
card 0
}

pcm.primary{
        type hw
        card 0
        device 0
}

ctl.primary {
  type hw
  card 0
}

pcm.secondary{
        type hw
        card 1
        device 0
}

ctl.secondary {
  type hw
  card 1
}

pcm.multi {
  type multi
  slaves.a.pcm "primary"
  slaves.a.channels 2
  slaves.b.pcm "secondary"
  slaves.b.channels 2
  bindings.0.slave a
  bindings.0.channel 0
  bindings.1.slave a
  bindings.1.channel 1
  bindings.2.slave b
  bindings.2.channel 0
  bindings.3.slave b
  bindings.3.channel 1
}