Jump to content

How to set Language tag in MP4 file.


BillOatman
Go to solution Solved by seanbuff,

Recommended Posts

BillOatman

If this is not in the correct place, please move it.

I have a bunch of MP4 container files that display audio info like this in Emby:

image.png.f4627ed6fd5f60336220c2933e8c6216.png

Undefined language of the audio.

It's because the file is missing the language tag like this file has:

image.png.efd867a9c95a37b61844902f8c62dbdc.png

Does anyone know a free simple tool that runs on Windows that could add this tag without reencoding anything?

Also, same question, but for MKV container files.

Thanks!

Link to comment
Share on other sites

  • Solution
seanbuff
44 minutes ago, BillOatman said:

Does anyone know a free simple tool that runs on Windows that could add this tag without reencoding anything?

For MP4, i use MP4Box (which is available for Windows)

I run a small batch script on my .mp4 files without a language set on the audio stream:

for /R %%f in (*.mp4) do mp4box.exe -lang 2=eng "%%f"
echo completed
pause


For MKV, i use mkvtoolnix and use the included mkvpropedit tool for the same result:

for /R %%f in (*.mkv) do "mkvpropedit" "%%f" --edit track:a1 --set name="" --set flag-default=1 --set language=en
echo completed
pause

 

FYI you'll need to add the tools location to your $PATH env variable, otherwise you'll need to specify full executable path in your script

Edited by seanbuff
more info
  • Thanks 1
Link to comment
Share on other sites

js28194

Emby App has a "default language" which I believe will force any media with multiple languages to play the default language.  I checked and it does as does Kodi to force default language to English so you don't have to do the above scripting.

Good script though so no knock on that.

 

Ah nevermind... I see what you are trying to do.  Nevermind.

Edited by js28194
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...