-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add resolution settings to video conversion and modal
- Loading branch information
1 parent
ae199f4
commit 0c83419
Showing
4 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
<sly-field> | ||
<sly-field title="Target FPS"> | ||
<el-input-number v-model="state.targetFps" :min="0.1" max=200></el-input-number> | ||
<el-input-number v-model="state.targetFps" :min="0.1" :max=200></el-input-number> | ||
</sly-field> | ||
<sly-field title="New project name" :description="data.resultProjectName.description"> | ||
<sly-field title="New Project Name" :description="data.resultProjectName.description"> | ||
<el-input v-model="state.resultProjectName"></el-input> | ||
</sly-field> | ||
<sly-field title="Change Resolution Settings"> | ||
<el-switch v-model="state.changeResolution"></el-switch> | ||
</sly-field> | ||
<sly-field v-if="state.changeResolution" title="Resolution Width x Height"> | ||
<div style="display: flex; align-items: center;"> | ||
<el-input-number v-model="state.targetResolutionWidth" :min=24 :max=5000></el-input-number> | ||
<span style="margin: 0 10px;">x</span> | ||
<el-input-number v-model="state.targetResolutionHeight" :min=24 :max=5000></el-input-number> | ||
</div> | ||
</sly-field> | ||
</sly-field> |