Add M4A backend support.

This commit is contained in:
georgekav2 2022-06-13 02:07:48 +02:00 committed by georgekav
parent b9dde5f794
commit 821451b301

View file

@ -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"})