File tree 5 files changed +36
-2
lines changed
5 files changed +36
-2
lines changed Original file line number Diff line number Diff line change
1
+ # asciinema-edit
2
+
3
+ Auxiliary tools for dealing with [ asciinema] ( https://asciinema.org/docs/getting-started ) casts.
4
+
Original file line number Diff line number Diff line change
1
+ package commands
2
+
3
+ import (
4
+ "gopkg.in/urfave/cli.v1"
5
+ )
6
+
7
+ var AddDelay = cli.Command {
8
+ Name : "add-delay" ,
9
+ Usage : "Increases the delay of a given frame" ,
10
+ Action : addDelayAction ,
11
+ }
12
+
13
+ func addDelayAction (c * cli.Context ) (err error ) {
14
+ return
15
+ }
Original file line number Diff line number Diff line change
1
+ package commands
2
+
3
+ import (
4
+ "gopkg.in/urfave/cli.v1"
5
+ )
6
+
7
+ var Cut = cli.Command {
8
+ Name : "cut" ,
9
+ Usage : "Removes a certain range of time frames" ,
10
+ Action : cutAction ,
11
+ }
12
+
13
+ func cutAction (c * cli.Context ) (err error ) {
14
+ return
15
+ }
Original file line number Diff line number Diff line change 6
6
7
7
var MaxDelay = cli.Command {
8
8
Name : "max-delay" ,
9
- Usage : "cuts all delays between commands up to a maximum value" ,
9
+ Usage : "Cuts all delays between commands down to a given value" ,
10
10
Action : maxDelayAction ,
11
11
}
12
12
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ func main() {
15
15
app := cli .NewApp ()
16
16
17
17
app .Version = version
18
- app .Usage = "edit recorded asciinema casts"
18
+ app .Usage = "edit recorded asciinema casts"
19
19
app .Description = `asciinema-edit provides missing features from the "asciinema" tool
20
20
when it comes to editing a cast that has already been recorded.`
21
21
app .Commands = []cli.Command {
You can’t perform that action at this time.
0 commit comments