mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-08 07:11:06 +00:00
feat: improve Youttube support. Print transcript and/or comments. Don't send them to AI if pattern is not defined.
This commit is contained in:
parent
9b3943e1a3
commit
25377ebd48
11
cli/cli.go
11
cli/cli.go
@ -113,12 +113,14 @@ func Cli() (message string, err error) {
|
||||
return
|
||||
}
|
||||
|
||||
if currentFlags.YouTubeTranscript {
|
||||
if !currentFlags.YouTubeComments || currentFlags.YouTubeTranscript {
|
||||
var transcript string
|
||||
if transcript, err = fabric.YouTube.GrabTranscript(videoId); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
fmt.Println(transcript)
|
||||
|
||||
if currentFlags.Message != "" {
|
||||
currentFlags.Message = currentFlags.Message + "\n" + transcript
|
||||
} else {
|
||||
@ -134,12 +136,19 @@ func Cli() (message string, err error) {
|
||||
|
||||
commentsString := strings.Join(comments, "\n")
|
||||
|
||||
fmt.Println(commentsString)
|
||||
|
||||
if currentFlags.Message != "" {
|
||||
currentFlags.Message = currentFlags.Message + "\n" + commentsString
|
||||
} else {
|
||||
currentFlags.Message = commentsString
|
||||
}
|
||||
}
|
||||
|
||||
if currentFlags.Pattern == "" {
|
||||
// if the pattern flag is not set, we wanted only to grab the transcript or comments
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
var chatter *core.Chatter
|
||||
|
Loading…
Reference in New Issue
Block a user