X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/e9f0c7d0facb6a454a204e3b3ce66d521f40d6e8..9a8ef4ad5f1c6dbee407cbea01224676131060ba:/src/lib.nim diff --git a/src/lib.nim b/src/lib.nim index 1b6ed93..ffa4a4a 100644 --- a/src/lib.nim +++ b/src/lib.nim @@ -51,7 +51,26 @@ proc presentVideoOptions*(searchResults: seq[SearchResult]) = proc play*(player: string, args: openArray[string], title: string) = styledEcho "\n", fgGreen, "Playing ", styleBright, fgMagenta, title - discard execProcess(player, args=args, options=processOptions) + if "--no-video" in args: + discard execShellCmd(&"{player} {args.join(\" \")}") + else: + discard execProcess(player, args=args, options=processOptions) + +func buildMusicDownloadArgs*(url: string): seq[string] = + {.noSideEffect.}: + var args = @["--ignore-errors", "-f", "bestaudio", "--extract-audio", "--audio-format", "mp3", "--audio-quality", "0", "-o"] + let downloadLocation = &"'{expandTilde(musicDownloadDirectory)}/%(title)s.%(ext)s'" + args.add(downloadLocation) + args.add(url) + return args + +func buildVideoDownloadArgs*(url: string): seq[string] = + {.noSideEffect.}: + var args = @["-f", "best", "-o"] + let downloadLocation = &"'{expandTilde(videoDownloadDirectory)}/%(title)s.%(ext)s'" + args.add(downloadLocation) + args.add(url) + return args proc download*(args: openArray[string], title: string) = styledEcho "\n", fgGreen, "Downloading ", styleBright, fgMagenta, title @@ -66,9 +85,12 @@ func stripZshEscaping(url: string): string = func sanitizeURL*(url: string): string = urlLongen(stripZshEscaping(url)) -proc directPlay*(searchQuery: string, player: string) = - let url = sanitizeURL(searchQuery) - if searchQuery.startswith("magnet:"): +proc directPlay*(url: string, player: string) = + if url.startswith("magnet:"): discard execProcess("peerflix", args=[url, &"--{player}"], options=processOptions) else: discard execProcess(player, args=[url], options=processOptions) + +proc directDownload*(url: string) = + let args = buildVideoDownloadArgs(url) + discard execShellCmd(&"youtube-dl {args.join(\" \")}")