You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Sometimes you need a quick way to work with media files. For example:
27
27
28
28
If you find yourself working with media files often, it may be helpful to have a library to automate your workflows.
29
29
30
-

30
+
<imgsrc="pluto_demo.gif?raw=true">
31
31
32
32
To use the library, follow the prerequisites below and run from your terminal.
33
33
@@ -48,8 +48,8 @@ To get started, check out the table of contents below and follow these steps:
48
48
49
49
1. Run the name of the command from your terminal like so:
50
50
51
-
```bash
52
-
sh index.sh <command><file1><file2><option1>
51
+
```bash
52
+
sh index.sh <command><file1><file2><option1>
53
53
```
54
54
55
55
1. Check the `assets` directory for the created file
@@ -58,6 +58,7 @@ To get started, check out the table of contents below and follow these steps:
58
58
59
59
## Table of Contents
60
60
61
+
- [Convert multiple images to video](#convert-multiple-images-to-video)
61
62
- [Convert image to video](#convert-image-to-video)
62
63
- [Convert image to WebP](#convert-image-to-webp)
63
64
- [Convert PDF to video](#convert-pdf-to-mp4)
@@ -70,6 +71,16 @@ To get started, check out the table of contents below and follow these steps:
70
71
- [Extract frames from a video](#extract-frames-from-a-video)
71
72
- [Modify video speed](#modify-video-speed)
72
73
74
+
### Convert Multiple Images to Video
75
+
76
+
This command can encode multiple image files into an MP4 video file. Pass in the desired transition (you can find all the available options in the [FFmpeg documentation](https://trac.ffmpeg.org/wiki/Xfade)), duration, and files you'd like to join.
77
+
78
+
Usage:
79
+
80
+
```bash
81
+
sh index.sh multiple-images-to-video hblur 12 assets/image1.png assets/image2.png assets/image3.png assets/image4.png
82
+
```
83
+
73
84
### Convert Image to Video
74
85
75
86
This command can encode an image file into an MP4 video file. Pass in the desired frame rate and duration. Frame rate will default to 24 frames per second and duration will default to 10 seconds.
0 commit comments