From aa01acc582ce2d49bd4878e1da7816e3ab50358d Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Tue, 18 Sep 2018 17:32:32 +0200 Subject: [PATCH] ytv: Download subtitles. --- ytv/ytv | 1 + 1 file changed, 1 insertion(+) diff --git a/ytv/ytv b/ytv/ytv index 7c7af22..2e8e1e3 100755 --- a/ytv/ytv +++ b/ytv/ytv @@ -77,6 +77,7 @@ map { $before{$_} = -M $_ } <*>; for my $url (@ARGV) { if(not fork()) { # Download in the background + system(qw(youtube-dl --all-subs --skip-download), @tor,$url); system(qw(youtube-dl -f best), @tor,$url); exit; }