Skip to content

Commit

Permalink
Release 4.10.6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yahweasel committed Feb 16, 2024
1 parent 771c346 commit 8e80590
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FFMPEG_VERSION_MAJOR=6
FFMPEG_VERSION_MINREV=1.1
FFMPEG_VERSION=$(FFMPEG_VERSION_MAJOR).$(FFMPEG_VERSION_MINREV)
LIBAVJS_VERSION_SUFFIX=
LIBAVJS_VERSION_BASE=4.9
LIBAVJS_VERSION_BASE=4.10
LIBAVJS_VERSION=$(LIBAVJS_VERSION_BASE).$(FFMPEG_VERSION)$(LIBAVJS_VERSION_SUFFIX)
LIBAVJS_VERSION_SHORT=$(LIBAVJS_VERSION_BASE).$(FFMPEG_VERSION_MAJOR)
EMCC=emcc
Expand Down
2 changes: 1 addition & 1 deletion Makefile.m4
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FFMPEG_VERSION_MAJOR=6
FFMPEG_VERSION_MINREV=1.1
FFMPEG_VERSION=$(FFMPEG_VERSION_MAJOR).$(FFMPEG_VERSION_MINREV)
LIBAVJS_VERSION_SUFFIX=
LIBAVJS_VERSION_BASE=4.9
LIBAVJS_VERSION_BASE=4.10
LIBAVJS_VERSION=$(LIBAVJS_VERSION_BASE).$(FFMPEG_VERSION)$(LIBAVJS_VERSION_SUFFIX)
LIBAVJS_VERSION_SHORT=$(LIBAVJS_VERSION_BASE).$(FFMPEG_VERSION_MAJOR)
EMCC=emcc
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ of using libav.js from a CDN:
<!doctype html>
<html>
<body>
<script type="text/javascript">LibAV = {base: "https://cdn.jsdelivr.net/npm/@libav.js/variant-default@4.9.6/dist"};</script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@libav.js/variant-default@4.9.6/dist/libav-4.9.6.1.1-default.js"></script>
<script type="text/javascript">LibAV = {base: "https://cdn.jsdelivr.net/npm/@libav.js/variant-default@4.10.6/dist"};</script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@libav.js/variant-default@4.10.6/dist/libav-4.10.6.1.1-default.js"></script>
<script type="text/javascript">(async function() {
const libav = await LibAV.LibAV({noworker: true});
await libav.writeFile("tmp.opus", new Uint8Array(
Expand All @@ -64,7 +64,7 @@ Here's a better example, using libav.js locally:
<!doctype html>
<html>
<body>
<script type="text/javascript" src="libav-4.9.6.1.1-default.js"></script>
<script type="text/javascript" src="libav-4.10.6.1.1-default.js"></script>
<script type="text/javascript">(async function() {
const libav = await LibAV.LibAV();
await libav.writeFile("tmp.opus", new Uint8Array(
Expand Down
2 changes: 1 addition & 1 deletion demo/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<body>
<script type="text/javascript">(async function() {
try {
const version = "4.9.6.1.1";
const version = "4.10.6.1.1";

const dce = document.createElement.bind(document);
const main = dce("div");
Expand Down
2 changes: 1 addition & 1 deletion old-tests/libav.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const version = "4.9.6.1.1";
const version = "4.10.6.1.1";

function load(variant = "default") {
const opts = {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "libav.js",
"//version": "The major and minor are our own versioning, while the revision is FFmpeg's major. When updating the version, make sure you update it here (both in version and main), in the Makefile.m4 and Makefile, in the README, in the demo, in tools/ff*.js, in tests/harness.js, and in old-tests/libav.js.",
"version": "4.9.6",
"version": "4.10.6",
"description": "A compilation of the libraries associated with handling audio and video in ffmpeg—libavformat, libavcodec, libavfilter, libavutil and libswresample—for WebAssembly and asm.js, and thus the web.",
"main": "dist/libav-4.9.6.1.1-default.js",
"main": "dist/libav-4.10.6.1.1-default.js",
"types": "dist/libav.types.d.ts",
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion tests/harness.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ LibAVTestHarness = {
data: {},
utils: {},

libAVVersion: "4.9.6.1.1",
libAVVersion: "4.10.6.1.1",
libAVVariant: null,
libAVOpts: null,
libav: null,
Expand Down
2 changes: 1 addition & 1 deletion tools/ffmpeg.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

const LibAV = require("../dist/libav-4.9.6.1.1-all.js");
const LibAV = require("../dist/libav-4.10.6.1.1-all.js");
const fs = require("fs/promises");

async function main() {
Expand Down
2 changes: 1 addition & 1 deletion tools/ffprobe.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

const LibAV = require("../dist/libav-4.9.6.1.1-all.js");
const LibAV = require("../dist/libav-4.10.6.1.1-all.js");
const fs = require("fs/promises");

async function main() {
Expand Down

0 comments on commit 8e80590

Please sign in to comment.