]> njoseph.me Git - nimcoon.git/blobdiff - src/lib.nim
Allow http urls to .torrent files to be streamed
[nimcoon.git] / src / lib.nim
index 4305b2cbb1c0387cee28ce38887608d744009608..24aa9305218c02a599af07e93eeb223589b0e071 100644 (file)
@@ -106,11 +106,13 @@ func sanitizeURL*(url: string): string =
   urlLongen(stripZshEscaping(url))
 
 proc directPlay*(url: string, player: string, options: Table[string, bool]) =
-  if url.startswith("magnet:"):
+  if url.startswith("magnet:") or url.endswith(".torrent"):
     if options["musicOnly"]:
+      # TODO Replace with WebTorrent once it supports media player options
       discard execShellCmd(&"peerflix '{url}' -a --{player} -- --no-video")
     else:
-      discard execProcess("peerflix", args=[url, &"--{player}"], options=processOptions)
+      # WebTorrent is so much faster!
+      discard execProcess("webtorrent", args=[url, &"--{player}"], options=processOptions)
   else:
     play(player, options, url)