Skip to content

Commit

Permalink
Fix C demo action
Browse files Browse the repository at this point in the history
  • Loading branch information
ErisMik committed Jan 30, 2024
1 parent e8f3361 commit eb6cfd3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/c-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ jobs:
pv_recorder_platform: raspberry-pi4
- machine: rpi4-64
pv_recorder_platform: raspberry-pi4-64
- machine: rpi5-64
pv_recorder_platform: raspberry-pi5-64
- machine: jetson
pv_recorder_platform: jetson-nano
- machine: beaglebone
Expand Down
2 changes: 1 addition & 1 deletion demo/c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if(NOT PV_RECORDER_PLATFORM)
message(FATAL_ERROR "No `PV_RECORDER_PLATFORM` value was given. Valid platforms are: \n"
"linux, mac-arm64, mac-x86_64, windows, raspberry-pi, raspberry-pi2, "
"raspberry-pi3-32, raspberry-pi3-64, raspberry-pi4-32, raspberry-pi4-64, "
"jetson-nano, beaglebone")
"raspberry-pi5-32, raspberry-pi5-64, jetson-nano, beaglebone")
endif()

if (${PV_RECORDER_PLATFORM} STREQUAL "beaglebone")
Expand Down
2 changes: 1 addition & 1 deletion demo/c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-ti
- Linux (x86_64)
- macOS (x86_64, arm64)
- Windows (amd64)
- Raspberry Pi (Zero, 2, 3 and 4)
- Raspberry Pi (Zero, 2, 3, 4 and 5)
- NVIDIA Jetson Nano
- BeagleBone

Expand Down
3 changes: 2 additions & 1 deletion demo/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-ti
- 2
- 3 (32 and 64 bit)
- 4 (32 and 64 bit)
- 5 (32 and 64 bit)
- NVIDIA Jetson Nano
- BeagleBone

Expand Down Expand Up @@ -57,4 +58,4 @@ You can also select the audio device index to use for recording (use `--show_aud

```console
dotnet run -- --output_wav_path ${OUTPUT_WAV_FILE} --audio_device_index ${DEVICE_INDEX}
```
```
2 changes: 1 addition & 1 deletion demo/nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-ti
## Compatibility

- Node.js 14+
- Runs on Linux (x86_64), macOS (x86_64 and arm64), Windows (x86_64), Raspberry Pi (2, 3, 4), NVIDIA Jetson (Nano), and BeagleBone.
- Runs on Linux (x86_64), macOS (x86_64 and arm64), Windows (x86_64), Raspberry Pi (2, 3, 4, 5), NVIDIA Jetson (Nano), and BeagleBone.

## Installation:

Expand Down
1 change: 1 addition & 0 deletions demo/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-ti
- 2
- 3 (32 and 64 bit)
- 4 (32 and 64 bit)
- 5 (32 and 64 bit)
- NVIDIA Jetson Nano
- BeagleBone

Expand Down

0 comments on commit eb6cfd3

Please sign in to comment.