Skip to content

Commit 56a9678

Browse files
committed
feat: Update README and some ui tweaks
1 parent 3be8284 commit 56a9678

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

README.MD

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,29 @@ Supported on **Windows** & **MacOS** with GoPro Hero 6, 7, 8, 9, 10 and MAX
1414

1515
_Download and execute installer (**[Releases tab](https://github.com/rubegartor/ReelSteady-Joiner/releases)**) or build source code and execute it_
1616

17+
**IMPORTANT!!** It's absolutely necessary that the video files keep their original names, otherwise ReelSteady Joiner will not be able to find them.
18+
1719
1. Choose your settings
20+
1. Projects queue option higher than 1 is not recommended when using HDD instead of SSD
21+
2. Project save path options:
22+
1. **Select project save path**: Specify the path where the output video will be stored
23+
2. **Export to source path**: The output video will automatically be stored at the same location of the origin video
1824

19-
![Settings](https://i.imgur.com/A3vTKBF.png)
25+
![Settings](https://i.imgur.com/ChiR3RN.png)
2026

21-
2. Select all of your mp4/360 files to concatenate (Normally 4GB chunks or less) and start merge process
27+
2. Select the folder containing mp4/360 files to concatenate (Normally 4GB chunks or less) (ReelSteady Joiner will take care of finding the files) and start merge process
2228

23-
![Select files](https://i.imgur.com/na3SE7l.png)
29+
![Select files](https://i.imgur.com/d5LSXdp.png)
2430
![Select files](https://i.imgur.com/zMIcsCo.png)
2531

2632
3. Customize your projects
2733

28-
![Customize](https://i.imgur.com/wdao3Gz.png)
34+
![Customize](https://i.imgur.com/DnfD9oz.png)
2935

3036
4. Let ReelSteady Joiner work and combine all the videos
3137

32-
![Processing videos](https://i.imgur.com/Gjawlv7.png)
38+
![Processing videos](https://i.imgur.com/dKj0AzU.png)
39+
![Processing videos](https://i.imgur.com/rwX66Ng.png)
3340

3441
---
3542

app/render.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if (os.platform() === 'win32') {
4848
}
4949

5050
ui.disableDrop(() => {
51-
const alert = new AlertRender('Warning: Drag & drop files is not enabled', AlertRender.ALERT_WARNING, 5000);
51+
const alert = new AlertRender('Warning: Drag & drop files is not allowed', AlertRender.ALERT_WARNING, 5000);
5252
alert.enableBtn();
5353
alert.width = '350px';
5454

app/templates/index-mac.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>ReelSteady Joiner</h1>
1616
</div>
1717
<div class="buttonContainer">
1818
<button type="button" class="button-green" id="settingsBtn" style="padding: 0 16px 0 16px;"></button>
19-
<button type="button" class="button-orange" id="selectFiles">Select files</button>
19+
<button type="button" class="button-orange" id="selectFiles">Select folder</button>
2020
<button type="button" class="button-green" id="processVideos" disabled>Merge!</button>
2121
</div>
2222
</div>

app/templates/index-win.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h1>ReelSteady Joiner</h1>
1919
</div>
2020
<div class="buttonContainer">
2121
<button type="button" class="button-green" id="settingsBtn" style="padding: 0 16px 0 16px;"></button>
22-
<button type="button" class="button-orange" id="selectFiles">Select files</button>
22+
<button type="button" class="button-orange" id="selectFiles">Select folder</button>
2323
<button type="button" class="button-green" id="processVideos" disabled>Merge!</button>
2424
</div>
2525
</div>

0 commit comments

Comments
 (0)