Add list input

This commit is contained in:
Dan Jones 2023-09-05 22:05:05 -05:00
commit e0bc00d779
2 changed files with 90 additions and 9 deletions

View file

@ -8,7 +8,8 @@ import (
"os"
"codeberg.org/danjones000/strip-beats/app"
"codeberg.org/danjones000/strip-beats/input/boolean"
// "codeberg.org/danjones000/strip-beats/input/boolean"
"codeberg.org/danjones000/strip-beats/input/list"
"github.com/spf13/cobra"
)
@ -19,14 +20,28 @@ var rootCmd = &cobra.Command{
// Uncomment the following line if your bare application
// has an action associated with it:
Run: func(cmd *cobra.Command, args []string) {
out := app.PickFileWithConf()
fmt.Printf("%+v\n", out)
// media.Watch(out.Format.Path)
show := boolean.Choose("Show stream?")
if show {
stream := out.WantedAudioStream()
fmt.Printf("Stream %d of %s: %+v\n", stream.Index, out.Format.Path, stream)
}
opt := list.List([]list.Option{
list.SimpleItem("Yes", "", 'y'),
list.SimpleItem("No", "", 'n'),
list.SimpleItem("Maybe", "perhaps", 'm'),
}, nil)
fmt.Printf("%+v\n", opt)
// out := app.PickFileWithConf()
out := app.SetFile("/home/drj/nothing.mkv")
fmt.Println("first", out.Format.Path)
// tmp, _ := os.CreateTemp("", "audio.*.mka")
// defer os.Remove(tmp.Name())
// fmt.Println("temp", tmp.Name())
app.Finish()
/*
fmt.Printf("%+v\n", out)
// media.Watch(out.Format.Path)
show := boolean.Choose("Show stream?")
if show {
stream := out.WantedAudioStream()
fmt.Printf("Stream %d of %s: %+v\n", stream.Index, out.Format.Path, stream)
}
*/
},
}