Skip to content

Commit

Permalink
Release 5.1.6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yahweasel committed Mar 2, 2024
1 parent 8bb2e7a commit e422730
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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=5.0
LIBAVJS_VERSION_BASE=5.1
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=5.0
LIBAVJS_VERSION_BASE=5.1
LIBAVJS_VERSION=$(LIBAVJS_VERSION_BASE).$(FFMPEG_VERSION)$(LIBAVJS_VERSION_SUFFIX)
LIBAVJS_VERSION_SHORT=$(LIBAVJS_VERSION_BASE).$(FFMPEG_VERSION_MAJOR)
EMCC=emcc
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ example of using libav.js from a CDN in the browser thread:
<!doctype html>
<html>
<body>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@libav.js/variant-default@5.0.6/dist/libav-5.0.6.1.1-default.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@libav.js/variant-default@5.1.6/dist/libav-5.1.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 @@ -73,7 +73,7 @@ Here's a better example, using libav.js locally:
<!doctype html>
<html>
<body>
<script type="text/javascript" src="libav-5.0.6.1.1-default.js"></script>
<script type="text/javascript" src="libav-5.1.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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"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, in the Makefile.m4 and Makefile, and in the README.",
"version": "5.0.6",
"version": "5.1.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-default.js",
"exports": {
Expand Down

0 comments on commit e422730

Please sign in to comment.