You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like something like https://github.com/PyAV-Org/PyAV could be used to get the mappings supported by ffmpeg? Trying not to bring in another dependency
Or would it be preferable to add a configuration setting to define preferred formats per file extension along with defaults?
by default, it should preserve container and codec of the input
if that is ambiguous (different input files)
then just pick the first, or let the user set a codec
this error appears when i run
audalign.target_align
on mka fileswith
destination_path != None
problem: audalign calls
AudioSegment.export
withformat = "mka"
but
mka
is the file extension, and the ffmpeg format ismatroska
pydub/audio_segment.py
related upstream issue jiaaro/pydub#755
same problem with
m4a
extension, the ffmpeg format isipod
related upstream PR jiaaro/pydub#793
this would allow us to pass
out_f="out.mka"
and let ffmpeg guess format from extensionproblem is, pydub is unmaintained jiaaro/pydub#389 jiaaro/pydub#444
so...
we could use ffprobe to get the format name
The text was updated successfully, but these errors were encountered: