diff --git a/README.md b/README.md
index eb0de6341..9f6483312 100644
--- a/README.md
+++ b/README.md
@@ -54,6 +54,8 @@ Any applications not in ported or unsupported need to be tested for whether they
ESPHome
Fhem
FlowiseAI
+ Frigate
+ Go2RTC
Jellyseerr
Mafl
Nginx Proxy Manager
diff --git a/ct/frigate.sh b/ct/frigate.sh
index f34830138..dbb1b137f 100644
--- a/ct/frigate.sh
+++ b/ct/frigate.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
+source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# Copyright (c) 2021-2024 tteck
# Authors: tteck (tteckster)
# License: MIT
diff --git a/ct/go2rtc.sh b/ct/go2rtc.sh
index 380ed801c..58506b617 100644
--- a/ct/go2rtc.sh
+++ b/ct/go2rtc.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
+source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster)
# License: MIT
@@ -60,8 +60,8 @@ msg_info "Updating $APP"
systemctl stop go2rtc
cd /opt/go2rtc
rm go2rtc_linux_amd64
-wget -q https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_amd64
-chmod +x go2rtc_linux_amd64
+wget -q https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_arm64
+chmod +x go2rtc_linux_arm64
systemctl start go2rtc
msg_ok "Updated $APP"
exit
diff --git a/install/frigate-install.sh b/install/frigate-install.sh
index b22fbb9d2..a22194ea8 100644
--- a/install/frigate-install.sh
+++ b/install/frigate-install.sh
@@ -14,7 +14,7 @@ network_check
update_os
msg_info "Installing Dependencies (Patience)"
-$STD apt-get install -y {curl,sudo,mc,git,gpg,automake,build-essential,xz-utils,libtool,ccache,pkg-config,libgtk-3-dev,libavcodec-dev,libavformat-dev,libswscale-dev,libv4l-dev,libxvidcore-dev,libx264-dev,libjpeg-dev,libpng-dev,libtiff-dev,gfortran,openexr,libatlas-base-dev,libssl-dev,libtbb2,libtbb-dev,libdc1394-22-dev,libopenexr-dev,libgstreamer-plugins-base1.0-dev,libgstreamer1.0-dev,gcc,gfortran,libopenblas-dev,liblapack-dev,libusb-1.0-0-dev}
+$STD apt-get install -y {curl,sudo,mc,git,gpg,automake,build-essential,xz-utils,libtool,ccache,pkg-config,libgtk-3-dev,libavcodec-dev,libavformat-dev,libswscale-dev,libv4l-dev,libxvidcore-dev,libx264-dev,libjpeg-dev,libpng-dev,libtiff-dev,gfortran,openexr,libatlas-base-dev,libssl-dev,libtbb2,libtbb-dev,libdc1394-22-dev,libopenexr-dev,libgstreamer-plugins-base1.0-dev,libgstreamer1.0-dev,gcc,gfortran,libopenblas-dev,liblapack-dev,libusb-1.0-0-dev,wget}
msg_ok "Installed Dependencies"
msg_info "Installing Python3 Dependencies"
@@ -34,7 +34,7 @@ msg_ok "Installed Node.js"
msg_info "Installing go2rtc"
mkdir -p /usr/local/go2rtc/bin
cd /usr/local/go2rtc/bin
-wget -qO go2rtc "https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_amd64"
+wget -qO go2rtc "https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_arm64"
chmod +x go2rtc
$STD ln -svf /usr/local/go2rtc/bin/go2rtc /usr/local/bin/go2rtc
msg_ok "Installed go2rtc"
diff --git a/install/go2rtc-install.sh b/install/go2rtc-install.sh
index e50c6d76c..a2d726245 100644
--- a/install/go2rtc-install.sh
+++ b/install/go2rtc-install.sh
@@ -17,13 +17,14 @@ msg_info "Installing Dependencies"
$STD apt-get install -y curl
$STD apt-get install -y sudo
$STD apt-get install -y mc
+$STD apt-get install -y wget
msg_ok "Installed Dependencies"
msg_info "Installing go2rtc"
mkdir -p /opt/go2rtc
cd /opt/go2rtc
-wget -q https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_amd64
-chmod +x go2rtc_linux_amd64
+wget -q https://github.com/AlexxIT/go2rtc/releases/latest/download/go2rtc_linux_arm64
+chmod +x go2rtc_linux_arm64
msg_ok "Installed go2rtc"
msg_info "Creating Service"
@@ -35,7 +36,7 @@ After=network.target
[Service]
Type=simple
User=root
-ExecStart=/opt/go2rtc/go2rtc_linux_amd64
+ExecStart=/opt/go2rtc/go2rtc_linux_arm64
[Install]
WantedBy=multi-user.target" >$service_path