Answers:
通过将suite命令放在您可能为冗长的过程而调用的脚本的末尾,至少有三种命令行方法可以实现此目的:
播放声音的“经典”方法是 通过PC扬声器使用蜂鸣声 。但是,这并非在所有情况下都有效(例如,在我的系统中PC扬声器完全被禁用),您需要从中删除pscpkr /etc/modprobe/blacklist.conf
并加载pcspkr
内核模块。
sudo sed -i 's/blacklist pcspkr/#blacklist pcspkr/g' /etc/modprobe.d/blacklist.conf
sudo modprobe pcspkr
beep [optional parameters]
我们还可以使用aplay播放wav格式的任何声音文件(默认安装):
aplay /usr/share/sounds/alsa/Side_Right.wav
另一种方法是使用pulseaudio命令行界面来启用系统(在中libsndfile
)在默认音频输出上识别的任何声音文件的播放:
paplay /usr/share/sounds/freedesktop/stereo/complete.oga
我们可以使用中的默认声音文件/usr/share/sounds/
,也可以使用其他位置的声音文件。
刚才已经提到过,还有另一种不错的方法可以通过滥用espeak来实现,该默认安装在Ubuntu <= 12.04中。查看,或者更确切地说,听到以下示例:
#! /bin/bash
c=10; while [ $c -ge 0 ]; do espeak $c; let c--; done; sleep 1 ## here lengthy code
espeak "We are done with counting"
在Ubuntu> = 12.10中,Orca使用语音调度程序。然后,我们可以安装espeak 或使用spd-say "Text"
。
spd-say
。
spd-say
实用程序默认情况下已安装,并且可以在我的系统上运行。
paplay /usr/share/sounds/freedesktop/stereo/complete.oga
我用
make; spd-say done
用您使用的任何长时间运行的命令替换“ make”。
spd-say 'get back to work
'。而且还预装了:releases.ubuntu.com/trusty/…,我想适合盲人吗?和-w
无限循环:while true; do spd-say -w 'get back to work you lazy bum'; done
。
在命令完成后播放声音:
long-running-command; sn3
(sn3
第3号声音在哪里)将其放入.bashrc
:
sound() {
# plays sounds in sequence and waits for them to finish
for s in $@; do
paplay $s
done
}
sn1() {
sound /usr/share/sounds/ubuntu/stereo/dialog-information.ogg
}
sn2() {
sound /usr/share/sounds/freedesktop/stereo/complete.oga
}
sn3() {
sound /usr/share/sounds/freedesktop/stereo/suspend-error.oga
}
或阅读下面的更多选项:
这正是我用于您所要的内容的地方-唯一的区别是:它不仅在命令完成时播放声音,而且在成功和错误时播放不同的声音。(但是,如果您不喜欢它,可以更改它。)
我有一个称为Bash的函数oks
,可以在长时间运行的命令末尾使用:
make && make test && make install; oks
当上一个命令完成时,它会播放声音并显示OK或ERROR(带有错误代码)。
这是带有两个助手的函数:
sound() {
# plays sounds in sequence and waits for them to finish
for s in $@; do
paplay $s
done
}
soundbg() {
# plays all sounds at the same time in the background
for s in $@; do
# you may need to change 0 to 1 or something else:
pacmd play-file $s 0 >/dev/null
done
}
oks() {
# like ok but with sounds
s=$?
sound_ok=/usr/share/sounds/ubuntu/stereo/dialog-information.ogg
sound_error=/usr/share/sounds/ubuntu/stereo/dialog-warning.ogg
if [[ $s = 0 ]]; then
echo OK
soundbg $sound_ok
else
echo ERROR: $s
soundbg $sound_error
fi
}
您可以将其直接放在〜/ .bashrc中,也可以放在其他文件中,然后将此行放入〜/ .bashrc中:
. ~/path/to/file/with/function
改变声音sound_ok
并sound_error
发出其他声音。
您可以试验sound
vs. soundbg
并进行更改,sound_ok
并sound_error
使用许多喜欢的声音序列来获得所需的结果。
要在系统上找到一些好的声音,您可以尝试:
for i in /usr/share/sounds/*/stereo/*; do echo $i; paplay $i; sleep 1; done
以下是我经常使用的默认情况下在Ubuntu上可用的一些声音,这些声音对于通知非常有用-sn1很大且很好,sn2非常很大而且仍然很不错,sn3非常很大而且不太好:
sn1() {
sound /usr/share/sounds/ubuntu/stereo/dialog-information.ogg
}
sn2() {
sound /usr/share/sounds/freedesktop/stereo/complete.oga
}
sn3() {
sound /usr/share/sounds/freedesktop/stereo/suspend-error.oga
}
同样,您可以更改sound
为soundbg
是否要在后台播放而不等待声音结束(例如,在播放大量声音时不要放慢脚本速度)。
以防万一-这里的功能oks
与之相同,但没有声音:
ok() {
# prints OK or ERROR and exit status of previous command
s=$?
if [[ $s = 0 ]]; then
echo OK
else
echo ERROR: $s
fi
}
使用方法如下:
成功的例子:
ls / && ls /bin && ls /usr; oks
错误示例:
ls / && ls /bim && ls /usr; oks
当然,实际上,命令更像是:
make && make test && make install; oks
但我使用过,ls
以便您可以快速了解其工作原理。
您可以使用ok
代替而不使用oks
静默版本。
或者您可以使用例如:
ls / && ls /bim && ls /usr; ok; sn1
打印OK / ERROR,但始终播放相同的声音等。
我将这些功能放在GitHub上,请参阅:
可以从以下位置下载源:
我soundloop
在上面的仓库中添加了一个功能。它会播放声音,并且可以按Ctrl + C中断(不像while true; do paplay file.ogg; done
人们期望的那样简单,但它不会奏效),如shadi在评论中所要求的。它实现为:
soundloop() {
set +m
a=`date +%s`
{ paplay $1 & } 2>/dev/null
wait
b=`date +%s`
d=$(($b-$a))
[ $d -eq 0 ] && d=1
while :; do
pacmd play-file $1 0 >/dev/null
sleep $d
done
}
如果您认为这很复杂,请直接向PulseAudio开发人员投诉。
while true; do paplay ...; done
,以使声音一直重复直到我按下为止Ctrl+C
,但是当我这样做时,它不会破裂。我找不到任何特殊的选择man paplay
来弄清楚如何使其工作。有任何想法吗?
根据该对\a
字符转义ASCII码7,这是计算机的蜂鸣声。
因此echo $'\a'
,即使在通过诸如PuTTY之类的终端接口连接到的计算机上运行的bash shell上执行蜂鸣声时,它也可以在本地计算机上发出蜂鸣声。
扩展Michael Curries的答案,您可以通过以下方式使Bash打印BEL
(\a
)字符PROMPT_COMMAND
:
PROMPT_COMMAND='printf \\a'
设置PROMPT_COMMAND
该方式将使Bash printf \\a
在每个命令的末尾执行,这将使终端播放声音(尽管正如大师指出的那样,仅触发提示的重绘将使终端播放声音,即将播放声音)每次绘制新提示时(例如,即使刚刚点击ENTER)也是如此。
这是一个终端功能,因此可能无法在所有终端上使用;例如,它在控制台中不起作用(但我确定它在gnome-terminal
和中 可以工作xterm
)。
command && (say done ; echo done) || (echo error ; say error)
示例1:echo alik && (say done ; echo done) || (echo error ; say error)
将完成一个单词。
示例2:non_existing_command_error && (say done ; echo done) || (echo error ; say error)
将导致错误字。
*需求gnustep-gui-runtime
-
sudo apt-get install gnustep-gui-runtime
干杯。
我创建了一个简单的,几乎是本机的脚本,该脚本播放声音并为Ubuntu(Gist)显示带有给定消息和时间的通知:
#!/bin/sh
# https://gist.github.com/John-Almardeny/04fb95eeb969aa46f031457c7815b07d
# Create a Notification With Sound with a Given Message and Time
# The Downloaded Sound is from Notification Sounds https://notificationsounds.com/
MSSG="$1"
TIME="$2"
# install wget if not found
if ! [ -x "$(command -v wget)" ]; then
echo -e "INSTALLING WGET...\n\n"
sudo apt-get install wget
echo -e "\n\n"
fi
# install at package if not found
if ! [ -x "$(command -v at)" ]; then
echo -e "INSTALLING AT...\n\n"
sudo apt-get install at
echo -e "\n\n"
fi
# install sox if not found
if ! [ -x "$(command -v sox)" ]; then
echo -e "INSTALLING SOX...\n\n"
sudo apt-get install sox
sudo apt-get install sox libsox-fmt-all
echo -e "\n\n"
fi
# download the noti sound if this is first time
# add alias to the bashrc file
if ! [ -f ~/noti/sound.mp3 ]; then
echo -e "DOWNLOADING SOUND...\n\n"
touch ~/noti/sound.mp3 | wget -O ~/noti/sound.mp3 "https://notificationsounds.com/wake-up-tones/rise-and-shine-342/download/mp3"
sudo echo "alias noti=\"sh ~/noti/noti.sh\"" >> ~/.bashrc
source ~/.bashrc
echo -e "\n\n"
fi
# notify with the sound playing and particular given message and time
echo "notify-send \""$MSSG\"" && play ~/noti/sound.mp3" | at $TIME
在家里创建一个新目录并调用它 noti
mkdir ~/noti
打开终端并将目录更改为 noti
cd ~/noti
通过发出以下命令使noti.sh可执行:
sudo chmod +x noti.sh
运行这样的测试:
sh ~/noti/noti.sh "Test" "now"
noti "Hello From Noti" "now +1 minute"
noti "Hello From Noti" "now +5 minutes"
noti "Hello From Noti" "now + 1 hour"
noti "Hello From Noti" "now + 2 days"
noti "Hello From Noti" "4 PM + 2 days"
noti "Hello From Noti" "now + 3 weeks"
noti "Hello From Noti" "now + 4 months"
noti "Hello From Noti" "4:00 PM"
noti "Hello From Noti" "2:30 AM tomorrow"
noti "Hello From Noti" "2:30 PM Fri"
noti "Hello From Noti" "2:30 PM 25.07.18"
sudo apt-get update; noti "Done" "now"
ffmpeg正弦波
对于极简主义者,您可以播放1000 Hz正弦波5秒钟:
sudo apt-get install ffmpeg
ffplay -f lavfi -i "sine=frequency=1000:duration=5" -autoexit -nodisp
或直到您执行Ctrl-C为止:
ffplay -f lavfi -i "sine=frequency=1000" -nodisp
有关更多信息,请访问:https://stackoverflow.com/questions/5109038/linux-sine-wave-audio-generator/57610684#57610684
已在Ubuntu 18.04,ffmpeg 3.4.6中测试。