Created
August 20, 2014 16:17
-
-
Save boltronics/b23cf2b83d7af6cb8938 to your computer and use it in GitHub Desktop.
~/.config/youtube-dl.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Configuration for youtube-dl | |
### See: https://rg3.github.io/youtube-dl/documentation.html | |
## Video Selection: | |
# skip download for matching titles (regex or caseless sub-string) | |
#--reject-title FistShark | |
# Try to download the DASH manifest on YouTube videos (experimental) | |
--youtube-include-dash-manifest | |
## Filesystem Options: | |
# output filename template | |
--output '%(uploader)s - %(upload_date)s - %(title)s - %(extractor)s.%(ext)s' | |
# write video description to a .description file | |
#--write-description | |
## Video Format Options: | |
# video format code, specify the order of preference using slashes: | |
--format bestvideo+bestaudio | |
# prefer free video formats unless a specific one is requested | |
--prefer-free-formats |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment