]> njoseph.me Git - nimcoon.git/blame - clitube.nim
Play selected video using media player
[nimcoon.git] / clitube.nim
CommitLineData
44978125
JN
1import htmlparser
2import httpClient
3import os
4import osproc
2f3c8875 5import sequtils, sugar
44978125
JN
6import strtabs
7import strutils
8import uri
9import xmltree
44978125 10
44978125 11# Supported video players in order of preference
39a495a9 12let supportedPlayers = @["mpv", "mplayer", "vlc"]
44978125 13
c760b5d9
JN
14# Only show these many results
15let limit = 10
16
2d9a92ad
JN
17# Hard-coded terminal colors
18proc reset(): string {.procvar.} = "\e[0m"
19proc bold*(s: string): string {.procvar.} = "\e[1m" & s & reset()
20
21proc fgMagenta*(s: string): string {.procvar.} = "\e[35m" & s & reset()
22proc fgCyan*(s: string): string {.procvar.} = "\e[36m" & s & reset()
23
2f3c8875
JN
24type SearchResult = tuple[title: string, url: string]
25
933e339b
JN
26proc selectMediaPlayer(): string =
27 let availablePlayers = filterIt(supportedPlayers, execProcess("which " & it).len != 0)
28 if len(availablePlayers) == 0:
29 echo "Please install one of the supported media players: ", supportedPlayers
30 raise newException(OSError, "No supported media player found")
31 else:
32 return availablePlayers[0]
44978125 33
39a495a9
JN
34proc getYoutubePage(searchQuery: string): string =
35 let queryParam = encodeUrl(searchQuery)
44978125 36 var client = newHttpClient()
39a495a9 37 let response = get(client, "https://www.youtube.com/results?hl=en&search_query=" & queryParam)
44978125
JN
38 writeFile("/tmp/cli-tube-page.html", response.body)
39 return "/tmp/cli-tube-page.html"
40
2f3c8875 41proc extractTitlesAndUrls(htmlFile: string): seq[SearchResult] =
39a495a9 42 loadHtml(htmlFile).findAll("a").
44978125 43 filter(a => "watch" in a.attrs["href"] and a.attrs.hasKey "title").
c760b5d9 44 map(a => (a.attrs["title"], "https://www.youtube.com" & a.attrs["href"]))[..(limit-1)]
44978125 45
2f3c8875 46proc presentVideoOptions(searchResults: seq[SearchResult]) =
efcc0441 47 echo ""
2f3c8875 48 for index, (title, url) in searchResults:
2d9a92ad 49 echo index, ". ", title.bold.fgMagenta, "\n", url.fgCyan, "\n"
44978125 50
efcc0441
JN
51let searchResults = extractTitlesAndUrls(getYoutubePage(paramStr(1)))
52
53presentVideoOptions(searchResults)
54
55stdout.write "Choose video number: "
56var number: int = parseInt(readLine(stdin))
57
58var player = selectMediaPlayer()
59echo "\n", "Playing ", searchResults[number].title.bold.fgMagenta
60
61# Play the video in the media player
62discard execProcess(player & " " & searchResults[number].url)