树莓派声音设置

默认的声音输出是HDMI,改到3.5音频口就可以了。
命令
$:sudo amixer cset numid=3 1

config文件是这样设置的,用HDMI直连显示器,播放电影,音乐3.5口没有声音
raspi-config 设置从3.5 输出一样没有声音
有没有 解决办法

# For more options and information see 
http://www.raspberrypi.org/documentation/configuration/config-txt.md
# Some settings may impact device functionality. See link above for details

# uncomment if you get no picture on HDMI for a default "safe" mode
#hdmi_safe=1

# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
#disable_overscan=1

# uncomment the following to adjust overscan. Use positive numbers if console
# goes off screen, and negative if there is too much border
#overscan_left=16
#overscan_right=16
#overscan_top=16
#overscan_bottom=16

# uncomment to force a console size. By default it will be display‘s size minus
# overscan.
#framebuffer_width=1280
#framebuffer_height=720

# uncomment if hdmi display is not detected and composite is being output
#hdmi_force_hotplug=1

# uncomment to force a specific HDMI mode (this will force VGA)
hdmi_group=2
hdmi_mode=14

# uncomment to force a HDMI mode rather than DVI. This can make audio work in
# DMT (computer monitor) modes
#hdmi_drive=2

# uncomment to increase signal to HDMI, if you have interference, blanking, or
# no display
#config_hdmi_boost=4

# uncomment for composite PAL
#sdtv_mode=2

#uncomment to overclock the arm. 700 MHz is the default.
#arm_freq=800

# NOOBS Auto-generated Settings:
#hdmi_force_hotplug=1
config_hdmi_boost=4
#overscan_left=24
#overscan_right=24
#overscan_top=16
#overscan_bottom=16
disable_overscan=1

时间: 2024-10-20 14:53:47

树莓派声音设置的相关文章

树莓派的设置及opencv的安装详解

1.树莓派的系统下载网站为:https://www.raspberrypi.org/downloads/raspbian/,其中选择Raspbian Jessie with desktop此版本,另外的mini版功能不是很健全,不推荐. 当然也可以在https://www.raspberrypi.org/downloads/网址下载NOOBS然后选择安装,据说会更简洁. 下载raspbian系统时可以用utorrent种子软件来下载,速度可达2M左右,很节省时间.系统压缩包为1.6G,安装完成占

树莓派 raspi-config 设置详解

一.简介:raspi-config是Raspberry PI官方Raspbian镜像自带的一个系统配置工具.它都可以做什么呢?让我们来学习一下吧.raspi-config,会在系统首次启动时自动运行,就是那个蓝色背景,灰底黑字的界面.首次自动运行之后,下次就不会自动 运行了,若想手动运行,请以root身份运行: sudo raspi-config 二.基本操作:键盘上的上.下键进行菜单项目的选择,回车键进入,左右键进行OK和cancel等按钮的选择,Esc键取消返回,空格键为选择定选项.最后改完

树莓派 wifi设置

1,设置interfaces sudo nano /etc/network/interfaces 修改 wanl0 部分: auto wlan0 allow-hotplus wlan0 iface wlan0 inet dhcp wpa_conf  /etc/wpa_supplicant/wpa_supplicant.conf 2修改 wpa_supplicants sudo nano /etc/wpa_supplicants/wps_supplicants.conf 添加 ap_scan=1

树莓派3设置静态IP

1.首先登录树莓派: sudo nano /etc/dhcpd.conf 2.在dhcpcd.conf后添加一下: interface eth0 static ip_address = 210.26.96.127 static routers = 210.26.96.1 static domain_name_servers = 202.201.48.1 202.201.48.2 3.保存后重启树莓派 sudo reboot

树莓派初始化设置

前往官网下载最新镜像文件http://downloads.raspberrypi.org/raspbian_latest 下载后解压 下载镜像烧录软件https://sourceforge.net/projects/win32diskimager/files/Archive/win32diskimager-v0.9-binary.zip/download烧录img文件进内存卡 在树莓派boot目录下新建ssh空白文件文件 使用powershell命令 new-item ssh -type fil

树莓派 buster 设置国内镜像

1 首先,确认该镜像下有buster文件夹 deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ buster main contrib non-free rpi 2 进入树莓派,编辑 /etc/apt/sources.list deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ buster main 使用国内镜像地址替换原地址即可,后面的那些保持不动 3 编辑  /etc/apt/sources.l

树莓派桌面设置快捷键

对于很多程序员来说,不愿太过依赖鼠标,基本上都是用键盘来控制PC,所以装完系统后就找桌面的快捷键,找了很久终于找到方法去设置桌面快捷键:#vim ~/.config/openbox/lxde-rc.xml按ESC 输入:250  //跳到250行左右 其中文本格式为: <keybind key="C-A-t">  <action name="Execute">   <command>lxterminal</command&g

在树莓派上设置无线静态IP

修改文件: /etc/network/interfaces,命令如下 sudo nano /etc/network/interfaces 将最后一句iface default inet dhcp,替换成: iface default inet staticaddress 192.168.3.0xxnetmask 255.255.255.0gateway 192.168.3.xxxdns-nameservers 192.168.3.xxx最后Ctrl+O 存盘  Ctrl+X 退出,然后重启网络:

Html5 Egret游戏开发 成语大挑战(九)设置界面和声音管理

在上一篇中,简单的使用界面元素快速实现了一个游戏中的二级页面,这种直接在游戏页面上做UI的做法并不太好,原因是,UI会让游戏的压力变大,即使它是隐蔽的,如果同样的功能在其它的地方也是一样的,那么就要写多个同样的逻辑吗?例如设置界面,游戏中的设置界面基本上功能都是一样,如果每个UI中都做一遍,是多么愚蠢的办法?在UI的代码设计中,一般来说,单独的功能不会在其它的地方用到,如GameOver,就直接写在UI里,而如果是通用功能,则最好的做法是做一个通用的单例类或者工厂类在需要的时候将它们初始化,在多