Get captions from Youtube video

(…not video’s subtitle) 1youtube-dl --o "%(title)s.%(id)s.%(ext)s" $URL; # first stop 2youtube-dl --sub-lang en --write-auto-sub --sub-format srt --skip-download -o "%(title)s.%(id)s.%(ext)s" $URL; # and finally if you’re using mpv as video player, use v to display captions.

2020-01-21 · G2G

Choose a public DNS server for more privacy

You have to prepend a nameserver in resolv.conf file. Follow this quick guide in KISS mode (Keep It Simple and Stupid). create (if not exits) /etc/dhclient.conf file with interface "eth0" { prepend domain-name-servers 9.9.9.9; } for testing purpose 1dhclient eth0 -v 2cat /etc/resolv.conf by this way, it will be the first DNS server to be querying for domain name. some public DNS servers easy to remember: 1.1.1.1 (Cloudflare) 9.9.9.9 (Quad9) More public DNS servers ...

2020-01-15 · G2G