Fixed issue #18
This commit is contained in:
parent
ea3be10ee0
commit
f56c133273
3 changed files with 21 additions and 2 deletions
|
@ -384,6 +384,7 @@ class App:
|
|||
with Loader("Converting audio..."):
|
||||
file.transcode(
|
||||
self.__config.audio_format,
|
||||
self.__config.download_quality,
|
||||
self.__config.transcode_bitrate,
|
||||
True,
|
||||
self.__config.ffmpeg_path,
|
||||
|
|
|
@ -5,7 +5,7 @@ from subprocess import PIPE, Popen
|
|||
from music_tag import load_file
|
||||
from mutagen.oggvorbis import OggVorbisHeaderError
|
||||
|
||||
from zotify.utils import AudioFormat, MetadataEntry
|
||||
from zotify.utils import AudioFormat, MetadataEntry, Quality
|
||||
|
||||
|
||||
class TranscodingError(RuntimeError): ...
|
||||
|
@ -25,6 +25,7 @@ class LocalFile:
|
|||
def transcode(
|
||||
self,
|
||||
audio_format: AudioFormat | None = None,
|
||||
download_quality: Quality | None = None,
|
||||
bitrate: int = -1,
|
||||
replace: bool = False,
|
||||
ffmpeg: str = "",
|
||||
|
@ -63,7 +64,10 @@ class LocalFile:
|
|||
f"Cannot overwrite source, target file {path} already exists."
|
||||
)
|
||||
|
||||
cmd.extend(["-b:a", str(bitrate) + "k"]) if bitrate > 0 else None
|
||||
if bitrate > 0:
|
||||
cmd.extend(["-b:a", str(bitrate) + "k"])
|
||||
else:
|
||||
cmd.extend(["-b:a", str(Quality.get_bitrate(download_quality)) + "k"])
|
||||
cmd.extend(["-c:a", audio_format.value.name]) if audio_format else None
|
||||
cmd.extend(opt_args)
|
||||
cmd.append(str(path))
|
||||
|
|
|
@ -59,6 +59,20 @@ class Quality(Enum):
|
|||
except Exception:
|
||||
return s
|
||||
|
||||
@staticmethod
|
||||
def get_bitrate(quality):
|
||||
match quality:
|
||||
case Quality.NORMAL:
|
||||
bitrate = 96
|
||||
case Quality.HIGH:
|
||||
bitrate = 160
|
||||
case Quality.VERY_HIGH:
|
||||
bitrate = 320
|
||||
case Quality.AUTO:
|
||||
bitrate = 160
|
||||
|
||||
return bitrate
|
||||
|
||||
|
||||
class ImageSize(IntEnum):
|
||||
SMALL = 0 # 64px
|
||||
|
|
Loading…
Add table
Reference in a new issue