ffmpeg-framecraft 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/README.md +16 -3
- package/package.json +22 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# ffmpeg-framecraft
|
|
1
|
+
# ffmpeg-framecraft – FFmpeg toolkit for 9:16 & short-form video
|
|
2
2
|
|
|
3
|
-
A Node.js FFmpeg
|
|
3
|
+
A Node.js-friendly FFmpeg toolkit for video processing: crop to 9:16, slice by time, add transitions between clips, subtitles, background music, and extract audio. Designed for vertical/short-form output (e.g. YouTube Shorts, TikTok, Reels) and general video pipelines.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -463,5 +463,18 @@ const { filterComplex, mapVideo, mapAudio } = buildSlicesWithTransitionsFilter(s
|
|
|
463
463
|
---
|
|
464
464
|
|
|
465
465
|
## License
|
|
466
|
+
ISC License
|
|
466
467
|
|
|
467
|
-
|
|
468
|
+
Copyright (c) 2025, the ffmpeg-framecraft contributors
|
|
469
|
+
|
|
470
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
471
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
472
|
+
copyright notice and this permission notice appear in all copies.
|
|
473
|
+
|
|
474
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
475
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
476
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
477
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
478
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
479
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
480
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ffmpeg-framecraft",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "FFmpeg-based video processing: crop, slice, transitions, subtitles, audio extraction",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,12 +22,31 @@
|
|
|
22
22
|
"9:16",
|
|
23
23
|
"shorts",
|
|
24
24
|
"reels",
|
|
25
|
-
"tiktok"
|
|
25
|
+
"tiktok",
|
|
26
|
+
"framecraft",
|
|
27
|
+
"video processing",
|
|
28
|
+
"video editing",
|
|
29
|
+
"video manipulation",
|
|
30
|
+
"video transformation",
|
|
31
|
+
"video conversion",
|
|
32
|
+
"video compression",
|
|
33
|
+
"video optimization",
|
|
34
|
+
"video enhancement",
|
|
35
|
+
"video enhancement",
|
|
36
|
+
"instagram reels",
|
|
37
|
+
"youtube shorts",
|
|
38
|
+
"tiktok shorts",
|
|
39
|
+
"tiktok videos",
|
|
40
|
+
"youtube videos",
|
|
41
|
+
"youtube shorts",
|
|
42
|
+
"tiktok shorts",
|
|
43
|
+
"tiktok videos",
|
|
44
|
+
"youtube videos"
|
|
26
45
|
],
|
|
27
46
|
"engines": {
|
|
28
47
|
"node": ">=18.0.0"
|
|
29
48
|
},
|
|
30
|
-
"homepage": "https://github.com/dxmari/ffmpeg-framecraft",
|
|
49
|
+
"homepage": "https://github.com/dxmari/ffmpeg-framecraft#readme",
|
|
31
50
|
"bugs": {
|
|
32
51
|
"url": "https://github.com/dxmari/ffmpeg-framecraft/issues"
|
|
33
52
|
},
|