Formatted to conventions

This commit is contained in:
DraftKinner 2025-02-07 22:49:44 -05:00
parent 5ff25967ca
commit ec5a26b603
2 changed files with 5 additions and 3 deletions

View file

@ -305,7 +305,7 @@ class App:
self.__config.audio_format.value.ext, self.__config.audio_format.value.ext,
playable.library, playable.library,
playable.output_template, playable.output_template,
self.__config.replace_existing self.__config.replace_existing,
) )
except FileExistsError: except FileExistsError:
Logger.log( Logger.log(

View file

@ -87,7 +87,7 @@ class Playable:
"{" + meta.name + "}", fix_filename(meta.string) "{" + meta.name + "}", fix_filename(meta.string)
) )
file_path = library.joinpath(output).expanduser() 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: if file_path.exists() and not replace:
f = LocalFile(file_path) f = LocalFile(file_path)
f.write_metadata(self.metadata) f.write_metadata(self.metadata)
@ -231,7 +231,9 @@ class Track(PlayableContentFeeder.LoadedStream, Playable):
p_bar.update(f.write(chunk)) p_bar.update(f.write(chunk))
downloaded += len(chunk) downloaded += len(chunk)
delta_current = time() - time_start 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: if delta_required > delta_current:
sleep(delta_required - delta_current) sleep(delta_required - delta_current)
return LocalFile(Path(file), AudioFormat.VORBIS) return LocalFile(Path(file), AudioFormat.VORBIS)