📅  最后修改于: 2023-12-03 14:49:18.783000             🧑  作者: Mango
在本文中,我们将介绍如何使用 Shell/Bash 在 PC Linux 上将音频投射到 Google Home Mini。
在开始之前,我们需要准备以下工具和环境:
gstreamer 是一个用于多媒体处理的工具包。我们可以使用以下命令在 PC Linux 上安装 gstreamer:
sudo apt-get install gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-tools
我们可以使用以下命令创建一个音频流,并将其保存到文件中:
gst-launch-1.0 audiotestsrc ! audioconvert ! audioresample ! vorbisenc ! oggmux ! filesink location=test.ogg
我们可以使用以下命令将刚刚创建的音频流投射到 Google Home Mini:
gst-launch-1.0 filesrc location=test.ogg ! decodebin ! audioconvert ! audioresample ! autoaudiosink host=192.168.0.100
其中,192.168.0.100
为 Google Home Mini 的 IP 地址。
通过本文,我们学习了如何使用 Shell/Bash 在 PC Linux 上将音频投射到 Google Home Mini。我们首先安装了 gstreamer 包,然后使用 gstreamer 创建了一个音频流,并将其投射到 Google Home Mini。