Skip to content

Commit 92df53a

Browse files
committed
Release v0.8.2
1 parent eed9d27 commit 92df53a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Use FFmpeg directly in your browser without any backend services!!
5353

5454
---
5555

56-
ffmpeg.js provides simple to use APIs, to transcode a video you only need few lines of code:
56+
ffmpeg.wasm provides simple to use APIs, to transcode a video you only need few lines of code:
5757

5858
```javascript
5959
const fs = require('fs');
@@ -85,7 +85,7 @@ $ node --experimental-wasm-threads --experimental-wasm-bulk-memory transcode.js
8585
Or, using a script tag in the browser (only works in Chrome):
8686

8787
```html
88-
<script src="https://unpkg.com/@ffmpeg/[email protected].1/dist/ffmpeg.min.js"></script>
88+
<script src="https://unpkg.com/@ffmpeg/[email protected].2/dist/ffmpeg.min.js"></script>
8989
<script>
9090
const { createFFmpeg } = FFmpeg;
9191
...
@@ -106,15 +106,15 @@ await ffmpeg.run('-i flame.avi -threads 2 flame.mp4');
106106

107107
## Examples
108108

109-
- With React: https://github.com/ffmpegjs/react-app
109+
- With React: https://github.com/ffmpegwasm/react-app
110110

111111
## Documentation
112112

113113
- [API](https://github.com/ffmpegwasm/ffmpeg.wasm/blob/master/docs/api.md)
114114

115115
## Tutorials
116116

117-
Learn how to build ffmpeg.js from stories:
117+
Learn how to build ffmpeg.wasm from stories:
118118

119119
- [Part.1 Preparation](https://itnext.io/build-ffmpeg-webassembly-version-ffmpeg-js-part-1-preparation-ed12bf4c8fac)
120120
- [Part.2 Compile with Emscripten](https://itnext.io/build-ffmpeg-webassembly-version-ffmpeg-js-part-2-compile-with-emscripten-4c581e8c9a16)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ffmpeg/ffmpeg",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "FFmpeg WebAssembly version",
55
"main": "src/index.js",
66
"directories": {
@@ -24,7 +24,7 @@
2424
},
2525
"repository": {
2626
"type": "git",
27-
"url": "git+https://github.com/ffmpegjs/ffmpeg.js.git"
27+
"url": "git+https://github.com/ffmpegwasm/ffmpeg.wasm.git"
2828
},
2929
"keywords": [
3030
"ffmpeg",
@@ -34,12 +34,12 @@
3434
"author": "Jerome Wu <[email protected]>",
3535
"license": "MIT",
3636
"bugs": {
37-
"url": "https://github.com/ffmpegjs/ffmpeg.js/issues"
37+
"url": "https://github.com/ffmpegwasm/ffmpeg.wasm/issues"
3838
},
3939
"engines": {
4040
"node": ">=12.16.1"
4141
},
42-
"homepage": "https://github.com/ffmpegjs/ffmpeg.js#readme",
42+
"homepage": "https://github.com/ffmpegwasm/ffmpeg.wasm#readme",
4343
"dependencies": {
4444
"@ffmpeg/core": "^0.7.1",
4545
"idb": "^4.0.5",

0 commit comments

Comments
 (0)