Qual é o formato do arquivo de configuração do youtube-dl?

1

Não é possível encontrar em qualquer lugar. Eu sei que vai em /etc/youtube-dl.conf ou ~/.config/youtube-dl/config .

    
por felwithe 02.07.2015 / 19:32

2 respostas

5

Não há formato. Basta colocar as opções da linha de comando no arquivo, por exemplo, --extract-audio --no-mtime

Fonte

Portanto, uma linha por opção de configuração, por exemplo, para alterar o diretório padrão mantendo o nome do arquivo padrão, apenas essa linha seria necessária:

-o '~/Downloads/%(title)s-%(id)s.%(ext)s'
    
por Martin Thornton 02.07.2015 / 19:51
1

Tente isto:

w3@aardvark:~(0)$ apt-cache search youtube-dl
youtube-dl - downloader of videos from YouTube and other sites
nicovideo-dl - Download videos from www.nicovideo.jp
w3@aardvark:~(0)$ dpkg -l !$
dpkg -l youtube-dl
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
    ||/ Name                                  Version                 Architecture            Description
+++-=====================================-=======================-=======================-================================================================================
ii  youtube-dl                            2014.02.17-1            all                     downloader of videos from YouTube and other sites
w3@aardvark:~(0)$ dpkg -L !$
dpkg -L youtube-dl
/.
/etc
/etc/bash_completion.d
/etc/bash_completion.d/youtube-dl.bash-completion

E assim por diante, listando todos os arquivos no pacote youtube-dl , incluindo

 /usr/share/man/man1/youtube-dl.1.gz

E, se você ler man youtube-dl , ele informará:

CONFIGURATION
       You  can  configure  youtube-dl  by  placing  default  arguments  (such  as  --extract-audio --no-mtime  to  always  extract the audio and not copy the mtime) into
       /etc/youtube-dl.conf and/or ~/.config/youtube-dl.conf.  On Windows, the  configuration  file  locations  are  %APPDATA%\youtube-dl\config.txt  and  C:\Users\<Your‐
       name>\youtube-dl.conf.
    
por waltinator 12.07.2015 / 06:33