File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -94,9 +94,9 @@ def should_transcode(item, fmt):
94
94
"""Determine whether the item should be transcoded as part of
95
95
conversion (i.e., its bitrate is high or it has the wrong format).
96
96
"""
97
- dont_convert_queries = config ['convert' ]['dont_convert ' ].as_str_seq ()
98
- if dont_convert_queries :
99
- for query_string in dont_convert_queries :
97
+ no_convert_queries = config ['convert' ]['no_convert ' ].as_str_seq ()
98
+ if no_convert_queries :
99
+ for query_string in no_convert_queries :
100
100
query , _ = parse_query_string (query_string , Item )
101
101
if query .match (item ):
102
102
return False
@@ -141,7 +141,7 @@ def __init__(self):
141
141
u'quiet' : False ,
142
142
u'embed' : True ,
143
143
u'paths' : {},
144
- u'dont_convert ' : u'' ,
144
+ u'no_convert ' : u'' ,
145
145
u'never_convert_lossy_files' : False ,
146
146
u'copy_album_art' : False ,
147
147
u'album_art_maxwidth' : 0 ,
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ file. The available options are:
73
73
this does not guarantee that all converted files will have a lower
74
74
bitrate---that depends on the encoder and its configuration.
75
75
Default: none.
76
- - **dont_convert **: Does not transcode items matching provided query string
76
+ - **no_convert **: Does not transcode items matching provided query string
77
77
(see :doc: `/reference/query `). (i.e. ``format:AAC, format:WMA `` or
78
78
``path::\.(m4a|wma)$ ``)
79
79
- **never_convert_lossy_files **: Cross-conversions between lossy codecs---such
You can’t perform that action at this time.
0 commit comments