Skip to content

Commit

Permalink
Update rpi-rgb-led-matrix, add ffmpeg and mp3gain to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
dkulp committed Oct 29, 2023
1 parent c36f857 commit 9ad971d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -yq upgrade
RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" alsa-utils arping avahi-daemon avahi-utils locales nano net-tools \
apache2 apache2-bin apache2-data apache2-utils \
bc bash-completion btrfs-progs exfat-fuse lsof ethtool curl zip unzip bzip2 wireless-tools dos2unix \
fbi fbset file flite ca-certificates lshw \
fbi fbset file flite ca-certificates lshw ffmpeg mp3gain \
build-essential gcc g++ gdb ccache vim vim-common bison flex device-tree-compiler dh-autoreconf \
git git-core hdparm i2c-tools ifplugd less sysstat tcpdump time usbutils usb-modeswitch \
samba rsync sudo shellinabox dnsmasq hostapd vsftpd ntp sqlite3 at haveged samba samba-common-bin \
Expand Down
2 changes: 1 addition & 1 deletion external/rpi-rgb-led-matrix
Submodule rpi-rgb-led-matrix updated 53 files
+2 −0 .gitignore
+1 −0 Makefile
+19 −4 README.md
+5 −2 bindings/c#/.gitignore
+85 −0 bindings/c#/Bindings.cs
+38 −0 bindings/c#/Color.cs
+50 −0 bindings/c#/InternalRGBLedMatrixOptions.cs
+23 −10 bindings/c#/Makefile
+11 −0 bindings/c#/Multiplexing.cs
+7 −22 bindings/c#/README.md
+92 −92 bindings/c#/RGBLedCanvas.cs
+31 −51 bindings/c#/RGBLedFont.cs
+95 −282 bindings/c#/RGBLedMatrix.cs
+124 −0 bindings/c#/RGBLedMatrixOptions.cs
+27 −0 bindings/c#/RPiRgbLEDMatrix.csproj
+10 −0 bindings/c#/ScanModes.cs
+11 −0 bindings/c#/examples/FontExample/FontExample.csproj
+29 −0 bindings/c#/examples/FontExample/Program.cs
+0 −41 bindings/c#/examples/Makefile
+11 −0 bindings/c#/examples/MatrixRain/MatrixRain.csproj
+74 −0 bindings/c#/examples/MatrixRain/Program.cs
+11 −0 bindings/c#/examples/MinimalExample/MinimalExample.csproj
+19 −0 bindings/c#/examples/MinimalExample/Program.cs
+12 −0 bindings/c#/examples/PlayGIF/PlayGIF.csproj
+40 −0 bindings/c#/examples/PlayGIF/Program.cs
+33 −0 bindings/c#/examples/PulsingBrightness/Program.cs
+11 −0 bindings/c#/examples/PulsingBrightness/PulsingBrightness.csproj
+90 −0 bindings/c#/examples/Rotating3DCube/Program.cs
+11 −0 bindings/c#/examples/Rotating3DCube/Rotating3DCube.csproj
+0 −36 bindings/c#/examples/font-example.cs
+0 −90 bindings/c#/examples/matrix-rain.cs
+0 −32 bindings/c#/examples/minimal-example.cs
+0 −54 bindings/c#/examples/pulsing-brightness.cs
+392 −133 bindings/python/rgbmatrix/core.cpp
+10 −2 bindings/python/rgbmatrix/core.pyx
+1 −1 bindings/python/rgbmatrix/cppinc.pxd
+210 −36 bindings/python/rgbmatrix/graphics.cpp
+60 −0 bindings/python/samples/gif-viewer.py
+1 −1 examples-api-use/Makefile
+28 −10 include/led-matrix-c.h
+16 −6 include/led-matrix.h
+49 −23 lib/bdf-font.cc
+2 −0 lib/framebuffer-internal.h
+9 −0 lib/framebuffer.cc
+12 −0 lib/led-matrix-c.cc
+42 −11 lib/led-matrix.cc
+18 −1 lib/options-initialize.cc
+15 −0 shell.nix
+1 −0 utils/.gitignore
+19 −2 utils/README.md
+7 −2 utils/led-image-viewer.cc
+59 −8 utils/text-scroller.cc
+6 −1 utils/video-viewer.cc

0 comments on commit 9ad971d

Please sign in to comment.