Skip to content

Commit cad2441

Browse files
Show all bars by default
1 parent e0e4b16 commit cad2441

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

htdocs/fcut.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,13 @@ <h2>Fast FFmpeg Cutter (Preview)</h2>
8484
<div v-if="bars.time" class="button-bar" title="Preview time">
8585
<a href="#" v-on:click="navigateTo(0)" class="time" title="Go to start">0:00</a>
8686
<button v-on:click="move(-period)" title="Move backward one period"><i class="fas fa-backward"></i></button>
87-
<button v-on:click="move(-60)" title="Move backward one minute"><i class="fas fa-fast-backward"></i></button>
87+
<button v-on:click="move(-60)" title="Move backward one minute">-1mn</button>
88+
<button v-on:click="move(-10)" title="Move backward ten seconds">-10s</button>
8889
<button v-on:click="move(-step)" title="Move backward one step"><i class="fas fa-step-backward"></i></button>
8990
<input type="text" v-model="timeHMS" class="time" title="Preview time" />
9091
<button v-on:click="move(step)" title="Move forward one step"><i class="fas fa-step-forward"></i></button>
91-
<button v-on:click="move(60)" title="Move forward one minute"><i class="fas fa-fast-forward"></i></button>
92+
<button v-on:click="move(10)" title="Move forward ten seconds">+10s</button>
93+
<button v-on:click="move(60)" title="Move forward one minute">+1mn</button>
9294
<button v-on:click="move(period)" title="Move forward one period"><i class="fas fa-forward"></i></button>
9395
<a href="#" v-on:click="navigateTo(duration)" class="time" title="Go to end">{{ formatHMS(duration) }}</a>
9496
</div>

htdocs/fcut.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ var vm = new Vue({
1616
aspectRatio: 0,
1717
bars: {
1818
nav: true,
19-
time: false,
19+
time: true,
2020
cut: true,
21-
bsearch: false,
21+
bsearch: true,
2222
project: false
2323
},
2424
step: 1,

0 commit comments

Comments
 (0)