DHCP is provided for the AP with dhcpd, the file /etc/dhcp/dhcpd.conf has this stanza for the subnet 192.168.4.0.
subnet 192.168.4.0 netmask 255.255.255.0 {
option domain-name "audiopi";
range 192.168.4.10 192.168.4.248;
}
I pushed the setup_hostap script to my gitlab audiopi repository,
https://gitlab.com/schessman/audiopi
#!/bin/sh
#
# enable cirrus_logic audio
/etc/init.d/audiopi_settings.sh
# shutdown wlan0 client, switch to hostap
/etc/init.d/wpa_supplicant stop
ifdown wlan0
/etc/init.d/hostapd start
ip addr add 192.168.4.1 dev wlan0
ip route add default dev wlan0
# enable DHCP and access
/etc/init.d/dhcpd start
# conserve power
echo /etc/init.d/usb_power stop
I had good success with recording at a jam session, mic clipped to the bag and placed in the center of the group; and also at a few rehearsals where I clipped the mic to a music stand to bring the vocals to the foreground. For the best results, taking a stereo line in feed from a mixing board connected to more mikes makes the most sense. I was satisfied with the results from the Stereo Sony ECMCS3, and burned a couple CDs from the rehearsal sessions. Ardour is a great tool for mastering, the plugin set is extensive and well worth the effort to make it work.
I also went to a Google Developer Group meetup with the RPi in a pocket and had the only wearable computer (besides all the android phones). The blinking lights on the RPi combined with the volume bar lights in the ArdOsc app make for a good casual demo.
Next I plan to present this at the Monthly NovaLug meeting on
Saturday, February 9, 2019. I'll post the slides from the talk on the gitlab audiopi repository.
No comments:
Post a Comment