@invintusmedia/tomp4 1.2.0 → 1.2.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 +606 -163
- package/package.json +2 -1
- package/src/fmp4/converter.js +604 -161
- package/src/fmp4/utils.js +13 -6
- package/src/index.js +3 -3
- package/src/thumbnail.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@invintusmedia/tomp4",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Convert MPEG-TS, fMP4, and HLS streams to MP4 with clipping support - pure JavaScript, zero dependencies",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"test:hls-map": "node tests/hls-map.test.js",
|
|
25
25
|
"test:thumbnail": "node tests/thumbnail.node.test.js",
|
|
26
26
|
"test:clip": "node tests/clip.test.js",
|
|
27
|
+
"test:fmp4-clip": "node tests/fmp4-clip.test.js",
|
|
27
28
|
"test:mp4": "node tests/mp4-parser.test.js",
|
|
28
29
|
"test:all": "npm run test",
|
|
29
30
|
"release": "npm test && npm run build && git add -A && git commit -m \"v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push && git push --tags",
|