Added download real time feature back.
This commit is contained in:
parent
7d8b3ddb39
commit
8d80719f6b
2 changed files with 35 additions and 1 deletions
|
@ -283,7 +283,7 @@ class App:
|
|||
desc=f"({count}/{total}) {track.name}",
|
||||
total=track.input_stream.size,
|
||||
) as p_bar:
|
||||
file = track.write_audio_stream(output, p_bar)
|
||||
file = track.write_audio_stream(output, p_bar, self.__config.download_real_time)
|
||||
|
||||
# Download lyrics
|
||||
if playable.type == PlayableType.TRACK and self.__config.lyrics_file:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
from math import floor
|
||||
from pathlib import Path
|
||||
from time import time, sleep
|
||||
|
||||
from librespot.core import PlayableContentFeeder
|
||||
from librespot.metadata import AlbumId
|
||||
|
@ -197,6 +198,39 @@ class Track(PlayableContentFeeder.LoadedStream, Playable):
|
|||
)
|
||||
return self.__lyrics
|
||||
|
||||
def write_audio_stream(
|
||||
self,
|
||||
output: Path | str,
|
||||
p_bar: tqdm = tqdm(disable=True),
|
||||
real_time: bool = False,
|
||||
) -> LocalFile:
|
||||
"""
|
||||
Writes audio stream to file
|
||||
Args:
|
||||
output: File path of saved audio stream
|
||||
p_bar: tqdm progress bar
|
||||
real_time: Enable delay to emulate real time streaming
|
||||
Returns:
|
||||
LocalFile object
|
||||
"""
|
||||
if not isinstance(output, Path):
|
||||
output = Path(output).expanduser()
|
||||
file = f"{output}.ogg"
|
||||
time_start = time()
|
||||
downloaded = 0
|
||||
with open(file, "wb") as f, p_bar as p_bar:
|
||||
chunk = None
|
||||
while chunk != b"":
|
||||
chunk = self.input_stream.stream().read(1024)
|
||||
p_bar.update(f.write(chunk))
|
||||
if real_time:
|
||||
downloaded += len(chunk)
|
||||
delta_current = time() - time_start
|
||||
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)
|
||||
|
||||
|
||||
class Episode(PlayableContentFeeder.LoadedStream, Playable):
|
||||
def __init__(self, episode: PlayableContentFeeder.LoadedStream, api):
|
||||
|
|
Loading…
Add table
Reference in a new issue