View Single Post
Old 16th March 2015, 14:36   #1  |  Link
cool_snoopy
Registered User
 
Join Date: Feb 2013
Posts: 12
How to set audio track title in mp4 with ffmpeg

I used the following command
ffmpeg -i INPUT -c copy -metadata:s:a:0 title="name" OUTPUT.mp4
It didn't work
And I tried another command
ffmpeg -i VIDEO -i AUDIO -c:v copy -c:a copy -metadata:s:a:0 title="name" OUTPUT.mp4
It didn't workd either
But I tried to set audio track language
ffmpeg -i INPUT -c copy -metadata:s:a:0 language=jpn OUTPUT.mp4
It worked.
And if I used megui to mux and set audio track title, it worked
Is it possible to set audio track title in mp4 with ffmpeg?

Last edited by cool_snoopy; 16th March 2015 at 15:15.
cool_snoopy is offline   Reply With Quote