Formatted to conventions
This commit is contained in:
parent
5ff25967ca
commit
ec5a26b603
2 changed files with 5 additions and 3 deletions
|
@ -305,7 +305,7 @@ class App:
|
|||
self.__config.audio_format.value.ext,
|
||||
playable.library,
|
||||
playable.output_template,
|
||||
self.__config.replace_existing
|
||||
self.__config.replace_existing,
|
||||
)
|
||||
except FileExistsError:
|
||||
Logger.log(
|
||||
|
|
|
@ -87,7 +87,7 @@ class Playable:
|
|||
"{" + meta.name + "}", fix_filename(meta.string)
|
||||
)
|
||||
file_path = library.joinpath(output).expanduser()
|
||||
file_path = Path(f'{file_path}.{ext}')
|
||||
file_path = Path(f"{file_path}.{ext}")
|
||||
if file_path.exists() and not replace:
|
||||
f = LocalFile(file_path)
|
||||
f.write_metadata(self.metadata)
|
||||
|
@ -231,7 +231,9 @@ class Track(PlayableContentFeeder.LoadedStream, Playable):
|
|||
p_bar.update(f.write(chunk))
|
||||
downloaded += len(chunk)
|
||||
delta_current = time() - time_start
|
||||
delta_required = (downloaded / self.input_stream.size) * (self.duration/1000)
|
||||
delta_required = (downloaded / self.input_stream.size) * (
|
||||
self.duration / 1000
|
||||
)
|
||||
if delta_required > delta_current:
|
||||
sleep(delta_required - delta_current)
|
||||
return LocalFile(Path(file), AudioFormat.VORBIS)
|
||||
|
|
Loading…
Add table
Reference in a new issue