Change Audio title from English to Sinhalese using ffmpeg
Posted
by
user330461
on Super User
See other posts from Super User
or by user330461
Published on 2014-06-08T08:47:29Z
Indexed on
2014/06/08
9:29 UTC
Read the original article
Hit count: 327
I insert an extra Sound track in my video file and it works well.
ffmpeg -i news.mov -i news.wav -map 0:0 -map 0:1 -map 1:0 -pass 1 -vcodec libx264 -preset fast -b 512k -minrate 512k -maxrate 512k -bufsize 512k -threads 0 -f mp4 -an -y /dev/null && ffmpeg -i news.mov -i news.wav -map 0:0 -map 0:1 -map 1:0 -pass 2 -acodec libfaac -ab 128k -ac 2 -vcodec libx264 -preset fast -b 512k -minrate 512k -maxrate 512k -bufsize 512k -threads 0 -f mp4 news.mp4
The default audio track come with the label "English" and I would like to give it a label "Sinhalese"
The Second Audio track come up without a label as "track#1" and I would like to give that a label of "Tamil".
How do I do that ?
© Super User or respective owner