Skip to content

Commit 301f73e

Browse files
committed
fix: update to libcamera0.5
1 parent 71faeeb commit 301f73e

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
wget https://github.com/TzuHuanTai/Native-WebRTC-Build/releases/download/5790/libwebrtc-arm64.tar.gz
1919
tar -xzf libwebrtc-arm64.tar.gz
2020
sudo mkdir -p /usr/local/include/webrtc
21-
sudo cp -r include/* /usr/local/include/webrtc
22-
sudo cp -r lib/* /usr/local/lib
21+
sudo mv include/* /usr/local/include/webrtc
22+
sudo mv lib/* /usr/local/lib
2323
sudo mkdir -p /usr/local/include/nlohmann
2424
sudo curl -L https://raw.githubusercontent.com/nlohmann/json/v3.11.3/single_include/nlohmann/json.hpp -o /usr/local/include/nlohmann/json.hpp
2525

.github/workflows/docker_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ jobs:
5454
wget -q https://github.com/TzuHuanTai/Native-WebRTC-Build/releases/download/5790/libwebrtc-arm64.tar.gz &&
5555
tar -xzf libwebrtc-arm64.tar.gz &&
5656
mkdir -p /usr/local/include/webrtc &&
57-
cp -r include/* /usr/local/include/webrtc &&
58-
cp -r lib/* /usr/local/lib &&
57+
mv include/* /usr/local/include/webrtc &&
58+
mv lib/* /usr/local/lib &&
5959
mkdir -p /usr/local/include/nlohmann &&
6060
curl -L https://raw.githubusercontent.com/nlohmann/json/v3.11.3/single_include/nlohmann/json.hpp -o /usr/local/include/nlohmann/json.hpp
6161
"

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,16 @@ Use the [Raspberry Pi Imager](https://www.raspberrypi.com/software/) to install
6565
### 2. Install Dependencies
6666

6767
```bash
68-
sudo apt update
69-
sudo apt full-upgrade
70-
sudo apt install libmosquitto1 pulseaudio libavformat59 libswscale6
68+
sudo update
69+
sudo apt install libcamera0.5 libmosquitto1 pulseaudio libavformat59 libswscale6
7170
```
7271

7372
### 3. Download & Unpack
7473

7574
Prepare the binary file from [Releases](https://github.com/TzuHuanTai/RaspberryPi_WebRTC/releases).
7675
```bash
77-
wget https://github.com/TzuHuanTai/RaspberryPi_WebRTC/releases/latest/download/pi_webrtc-v1.0.6-rc.3_raspios-bookworm-arm64.tar.gz
78-
tar -xzf pi_webrtc-v1.0.6-rc.3_raspios-bookworm-arm64.tar.gz
76+
wget https://github.com/TzuHuanTai/RaspberryPi_WebRTC/releases/latest/download/pi_webrtc-v1.0.6_raspios-bookworm-arm64.tar.gz
77+
tar -xzf pi_webrtc-v1.0.6_raspios-bookworm-arm64.tar.gz
7978
```
8079

8180
### 4. Set Up MQTT

0 commit comments

Comments
 (0)