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 1as an output option:You can add
-c copyto stream copy instead of re-encoding if you just want to add metadata.-f aiffis superfluous in your example sinceffmpegcan guess the correct muxer via the output file name.See AIFF muxer documentation.