Change Audio title from English to Sinhalese using ffmpeg
- by user330461
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 ?