-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathconfig
98 lines (98 loc) · 2.84 KB
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#*****************************************#
#*-------------config for ytmdl-----------#
#
#-----------------------------------------#
#------PLEASE DON'T LEAVE ANY BLANK LINES---#
#-----------------------------------------#
#
# To change defaults just remove the hash(#)
# from the beginning of the line.
#
#*****************************************
# The SONG_DIR is the directory where all the songs will be saved.
# In order to change it, simply remove the hash from beginning
# And change the path to your desired one.
# In case the path has spaces in in, include it in a " "
# Following is a simple folder path example
#
#SONG_DIR = "path/to/your/desired/folder"
#
#************--------ADVANCED-------*********
# If you want to save the song in custom folders than those can be
# added to the name like the following example.
# The possible values are following
#
# Artist --> Song Artist
# Album --> Song Album Name
# Title --> Song Name
# Genre --> Song Genre
# TrackNumber --> Song Number in the album
# ReleaseDate --> Song Release date
#
# Following is an example of the format
#SONG_DIR = "/home/user/Music$Artist->Album->Title"
#
#*****************************************#
# The QUALITY is the quality of the song in kbps
# By default it is set to 320kbps
# In case you want to change it to something else,
# Uncomment the following line and change it
#
# Supported values are 320 and 192
#
#QUALITY = "320"
#
#*****************************************#
# The METADATA_PROVIDERS value is a comma separated
# values that specifies wich API providers to use for getting
# the song metadata. Available values right now are:
#
# ---------
# itunes, spotify, gaana, deezer, lastfm, musicbrainz, saavn.
# ---------
#
# Please check the github page of ytmdl for more information.
#
#METADATA_PROVIDERS = "itunes, spotify, gaana"
#
#*****************************************#
# The DEFAULT_FORMAT denotes what to use as default for downloading.
# Available values are:
#
# ---------
# mp3, m4a, opus
# ---------
#
#DEFAULT_FORMAT = "mp3"
#
#*****************************************#
# What to do when something goes wrong while adding the metadata. This can
# happen for various reasons like lack of metadata or network issues.
# Available options are:
#
# ---------
# exit, skip, manual
# ---------
#
#ON_META_ERROR = "exit"
#****************************************#
# ITUNES SETTINGS
# Which region to use while searching from Itunes.
#
#
# Country where the song is to be searched for in Itunes.
# The country helps if you're looking for regional songs in
# which case Itunes orders the results accordingly.
#
# By default, 'US' will be used.
#
#ITUNES_COUNTRY = "US"
#
# Country where the song is to be searched for in Spotify.
# The country helps if you're looking for regional songs in
# which case Spotify orders the results accordingly.
#
# By default, 'US' is used
#
#SPOTIFY_COUNTRY = "US"
#