@invintusmedia/tomp4 1.0.0 → 1.0.1
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.
- package/dist/tomp4.js +2 -2
- package/package.json +1 -2
- package/src/index.js +1 -1
package/dist/tomp4.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* toMp4.js v1.0.
|
|
2
|
+
* toMp4.js v1.0.1
|
|
3
3
|
* Convert MPEG-TS and fMP4 to standard MP4
|
|
4
4
|
* https://github.com/TVWIT/toMp4.js
|
|
5
5
|
* MIT License
|
|
@@ -1611,7 +1611,7 @@
|
|
|
1611
1611
|
toMp4.isMpegTs = isMpegTs;
|
|
1612
1612
|
toMp4.isFmp4 = isFmp4;
|
|
1613
1613
|
toMp4.isStandardMp4 = isStandardMp4;
|
|
1614
|
-
toMp4.version = '1.0.
|
|
1614
|
+
toMp4.version = '1.0.1';
|
|
1615
1615
|
|
|
1616
1616
|
return toMp4;
|
|
1617
1617
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@invintusmedia/tomp4",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Convert MPEG-TS and fMP4 streams to standard MP4 - pure JavaScript, zero dependencies",
|
|
5
5
|
"main": "dist/tomp4.js",
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -40,4 +40,3 @@
|
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://tvwit.github.io/toMp4.js/"
|
|
42
42
|
}
|
|
43
|
-
|
package/src/index.js
CHANGED