Subtitles default question
3 posters
Page 1 of 1
Subtitles default question
Hello,
I've been wondering if it's possible to set up "Full subtitles" as default track somehow via LAV or MPC settings
- "Signs ąnd Song" are just subtitles for the opening and ending songs so I have to manually set it to "Full subtitles" each time
https://i.imgur.com/yIuoTWz.jpg
I've been wondering if it's possible to set up "Full subtitles" as default track somehow via LAV or MPC settings
- "Signs ąnd Song" are just subtitles for the opening and ending songs so I have to manually set it to "Full subtitles" each time
https://i.imgur.com/yIuoTWz.jpg
berocent- Posts : 5
Join date : 2012-03-24
Re: Subtitles default question
MPC-HC options > Playback > Default Track Preference
If you add "full" (without quotes) there, then it should pick the desired track. It matches based on track name. Put it in front of any language codes to give it highest priority. Also enable option to allow override external splitter choice.
If you add "full" (without quotes) there, then it should pick the desired track. It matches based on track name. Put it in front of any language codes to give it highest priority. Also enable option to allow override external splitter choice.
Re: Subtitles default question
Hi,
tried that but it doesn't work at all
- tried with a similar video and a different version of MPC, and still couldn't change the default subtitle
tried that but it doesn't work at all
- tried with a similar video and a different version of MPC, and still couldn't change the default subtitle
berocent- Posts : 5
Join date : 2012-03-24
Re: Subtitles default question
I have tested that file, and this works for me:
MPC-HC options > Playback > Default Track Preference > Subtitles > 2
The 2 means select second subtitle track. Of course this may select wrong sub for other sets of videos, so don't forget to change it after watching this series.
Another solution is to modify the mkv file to change the default subtitle track. This is possible with header editor function in MkvToolNix software.
MPC-HC options > Playback > Default Track Preference > Subtitles > 2
The 2 means select second subtitle track. Of course this may select wrong sub for other sets of videos, so don't forget to change it after watching this series.
Another solution is to modify the mkv file to change the default subtitle track. This is possible with header editor function in MkvToolNix software.
Re: Subtitles default question
Simple is best , "2" worked great!
Thank you, wish I asked sooner ~
Thank you, wish I asked sooner ~
berocent- Posts : 5
Join date : 2012-03-24
Re: Subtitles default question
If you have any experience with scripting, it's pretty easy to change the track defaults with a batch script. This is my preferred method because it's not video player dependent. This methods require the use MKV Toolnix.
a1 is the first audio track, a2 is the second, etc. s1 is the first subtitle track, etc.
Example Batch Script:
@ECHO OFF
REM APPLICATION FOR CHANGE DEFAULT TRACKS
set editpath="C:\Program Files\MKVToolNix\mkvpropedit.exe"
set FolderLocation=D:\MKV folder path goes here
for %%F in ("%FolderLocation%\*.mkv") do (
echo %%F
%editpath% "%%F" --edit track:a1 --set flag-default=0 ^
--edit track:a2 --set flag-default=1 ^
--edit track:s1 --set flag-default=0 --set flag-forced=0 ^
--edit track:s2 --set flag-default=1
)
a1 is the first audio track, a2 is the second, etc. s1 is the first subtitle track, etc.
Example Batch Script:
@ECHO OFF
REM APPLICATION FOR CHANGE DEFAULT TRACKS
set editpath="C:\Program Files\MKVToolNix\mkvpropedit.exe"
set FolderLocation=D:\MKV folder path goes here
for %%F in ("%FolderLocation%\*.mkv") do (
echo %%F
%editpath% "%%F" --edit track:a1 --set flag-default=0 ^
--edit track:a2 --set flag-default=1 ^
--edit track:s1 --set flag-default=0 --set flag-forced=0 ^
--edit track:s2 --set flag-default=1
)
marcgii- Posts : 25
Join date : 2016-08-25
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum