mirror of
https://github.com/imputnet/cobalt.git
synced 2026-03-09 07:17:16 -05:00
Auto convert YouTube audio WebA format to opus without re-encoding #740
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @onyx-nxt on GitHub (Feb 28, 2025).
describe the feature you'd like to see
When selecting the "best" (no re-encode) quality in cobalt, downloading audio from YouTube results in a weba file. These just hold an opus stream. It's easy to convert it after in ffmpeg with
ffmpeg -i "audio.weba" -c:a copy "audio.opus", but within cobalt with the remux like feature automatically would be nice, since weba isn't super common and also contains wrong metadata for values like bitrate. It's also weirdly 100kb larger for some reason.additional context
No response