The installation scripts and manuals for using AES67 on Raspberry Pi with Ubuntu are archived in this repository.
Patrick Carroll
7 days ago 7074975ed4a8f7ca2de448c0dcde159b8676534e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
 
echo "Step one: requires admin rights and will reboot the system!"
 
sudo -s
 
#Install NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
 
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion
 
 
Echo "Step 2 - please confirm the installations"
 
nvm install 13
 
apt install make
apt install gcc
apt install cmake
apt install python3
 
cd node-modules
npm install audify 
cd ..
cd
 
 
apt install unzip
 
wget https://github.com/almoghamdani/audify/archive/refs/heads/master.zip
mv master.zip audify.zip
unzip audify.zip
cd audify-master
 
git clone https://github.com/teletype1/aes67-sender-enhanced.git
cd aes67-sender-enhanced
npm install
 
node aes67 --help