I am writing the aiff metadata with this line:
ffmpeg -i uno.aiff -metadata title=Track -metadata artist=Band -f aiff dos.aiff
but iTunes done recognize the metadata. What I am doing wrong?
I am writing the aiff metadata with this line:
ffmpeg -i uno.aiff -metadata title=Track -metadata artist=Band -f aiff dos.aiff
but iTunes done recognize the metadata. What I am doing wrong?
Copyright © 2021 Jogjafile Inc.
Use
-write_id3v2 1
as an output option:You can add
-c copy
to stream copy instead of re-encoding if you just want to add metadata.-f aiff
is superfluous in your example sinceffmpeg
can guess the correct muxer via the output file name.See AIFF muxer documentation.