@cayars said:
How do you guys feel? Still using these scripts? Want an updated version?
Carlo
Love the scripts!
While Plex does an admirable job of subtitles, the languages most files are encoded in leave much to be desired. Maybe we could add in a check for language in both mp4 and mkv files:
ffprobe.exe -v quiet -show_entries stream_tags -select_streams a:0 -of csv="p=0"
and then run a selective (as opposed to all encompassing remux):
MP4Box.exe -lang 1=en-us -lang 2=en-us "%f"
and/or
mkvpropedit.exe %f --edit track:v1 --set language="eng" --edit track:a1 --set language="eng"
or something of the sort…