mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
Add M4A backend support.
This commit is contained in:
parent
b9dde5f794
commit
821451b301
1 changed files with 4 additions and 4 deletions
|
@ -23,14 +23,13 @@ def get_format(format: str, quality: str) -> str:
|
|||
# Quality is irrelevant in this case since we skip the download
|
||||
return "bestaudio/best"
|
||||
|
||||
if format == "mp3":
|
||||
if format in ("m4a", "mp3"):
|
||||
# Audio quality needs to be set post-download, set in opts
|
||||
return "bestaudio/best"
|
||||
|
||||
if format in ("mp4", "any"):
|
||||
if quality == "audio":
|
||||
return "bestaudio/best"
|
||||
|
||||
# video {res} {vfmt} + audio {afmt} {res} {vfmt}
|
||||
vfmt, afmt = ("[ext=mp4]", "[ext=m4a]") if format == "mp4" else ("", "")
|
||||
vres = f"[height<={quality}]" if quality != "best" else ""
|
||||
|
@ -60,12 +59,13 @@ def get_opts(format: str, quality: str, ytdl_opts: dict) -> dict:
|
|||
if "postprocessors" not in opts:
|
||||
opts["postprocessors"] = []
|
||||
|
||||
if format == "mp3":
|
||||
if format in ("m4a", "mp3"):
|
||||
opts["postprocessors"].append({
|
||||
"key": "FFmpegExtractAudio",
|
||||
"preferredcodec": "mp3",
|
||||
"preferredcodec": format,
|
||||
"preferredquality": 0 if quality == "best" else quality,
|
||||
})
|
||||
|
||||
opts["writethumbnail"] = True
|
||||
opts["postprocessors"].append({"key": "FFmpegThumbnailsConvertor", "format": "jpg", "when": "before_dl"})
|
||||
opts["postprocessors"].append({"key": "FFmpegMetadata"})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue