@livekit/av-linux-arm64 7.1.500

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/NOTICE +35 -0
  2. package/ffmpeg +0 -0
  3. package/package.json +20 -0
package/NOTICE ADDED
@@ -0,0 +1,35 @@
1
+ @livekit/av
2
+ Copyright LiveKit, Inc.
3
+
4
+ The meta package (`@livekit/av`) containing this file is licensed under the Apache License, Version 2.0.
5
+ The FFmpeg binaries distributed via `@livekit/av-<platform>-<arch>` platform packages are licensed separately (see below).
6
+
7
+ ------------------------------------------------------------------------------
8
+ FFmpeg (bundled binary, contained in @livekit/av-<platform>-<arch> packages)
9
+ ------------------------------------------------------------------------------
10
+
11
+ These prebuilt FFmpeg binaries are built by LiveKit from unmodified upstream
12
+ FFmpeg sources using the build recipe in `av/scripts/build-ffmpeg.sh` in the
13
+ livekit/agents-private repository and are licensed under the GNU Lesser General
14
+ Public License, version 2.1 or later (LGPL-2.1-or-later).
15
+
16
+ The binaries are configured WITHOUT `--enable-gpl` and WITHOUT
17
+ `--enable-nonfree` (no GPL-only components such as libx264/libx265 are
18
+ included). The only external codec library linked is libopus, which is
19
+ distributed under the 3-clause BSD license.
20
+
21
+ The build is further restricted to an explicit allowlist of royalty-free audio
22
+ codecs (PCM, MP3, FLAC, Vorbis, Opus, ALAC). Patent-encumbered codecs such as
23
+ AAC, AC-3, E-AC-3 and DTS are intentionally excluded, as are all video codecs.
24
+
25
+ Written offer / corresponding source (LGPL §6):
26
+ - FFmpeg source: https://ffmpeg.org/releases/ (the exact `ffmpeg-<version>`
27
+ tarball pinned in `av/scripts/build-ffmpeg.sh`)
28
+ - libopus source: https://downloads.xiph.org/releases/opus/
29
+ - Build scripts: `av/scripts/build-ffmpeg.sh` in livekit/agents-private
30
+
31
+ FFmpeg is a trademark of Fabrice Bellard, originator of the FFmpeg project.
32
+ See https://www.ffmpeg.org/legal.html for FFmpeg's license and legal notes.
33
+
34
+ To use your own FFmpeg binary instead of the bundled one, set the
35
+ `LIVEKIT_FFMPEG_PATH` environment variable to its path.
package/ffmpeg ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@livekit/av-linux-arm64",
3
+ "version": "7.1.500",
4
+ "description": "Prebuilt minimal FFmpeg (linux-arm64) for LiveKit Agents audio en/decoding. For internal use; no stability guarantees.",
5
+ "license": "LGPL-2.1-or-later",
6
+ "author": "LiveKit",
7
+ "files": [
8
+ "ffmpeg",
9
+ "NOTICE"
10
+ ],
11
+ "os": [
12
+ "linux"
13
+ ],
14
+ "cpu": [
15
+ "arm64"
16
+ ],
17
+ "libc": [
18
+ "glibc"
19
+ ]
20
+ }