[Solved] BraviaEX: Fixed subtitles on black bands
Posted: Sun Oct 05, 2014 10:56 am
Short story:
Fixed subtitles on black bands not being cleared (causing subtitles to be overlapped) by reordering the video filter options for Mencoder in the BraviaEX.conf so that the expand filter is applied last. This solution was based on a similar issue and fix from this thread: http://lists.mplayerhq.hu/pipermail/mpl ... 68259.html
From:
To:
In case everybody agrees on the fix, here's the commit with the change that just needs to be pulled from my fork.
https://github.com/master-nevi/Universa ... 942b55190f
Long story:
When using the Mencoder engine on a video with subtitles, the subtitles appeared to continuously overlap each other. I never saw this when running on the PS3 Media Server (which I just switched from) and I then noticed the different in the BraviaEX.conf files. The Mencoder options were the biggest difference so I had a good starting point to start my Google searching.
Side note: I'm a long time PS3 MS user/fan who just recently discovered this UMS fork and am so happy to see this project active again. Cheers!
Fixed subtitles on black bands not being cleared (causing subtitles to be overlapped) by reordering the video filter options for Mencoder in the BraviaEX.conf so that the expand filter is applied last. This solution was based on a similar issue and fix from this thread: http://lists.mplayerhq.hu/pipermail/mpl ... 68259.html
From:
Code: Select all
CustomMencoderOptions =-vf softskip,expand=::::1:16/9:2,scale=1283:720 -lavcopts aspect=16/9
Code: Select all
CustomMencoderOptions =-vf softskip,scale=1283:720,expand=::::1:16/9:2 -lavcopts aspect=16/9
https://github.com/master-nevi/Universa ... 942b55190f
Long story:
When using the Mencoder engine on a video with subtitles, the subtitles appeared to continuously overlap each other. I never saw this when running on the PS3 Media Server (which I just switched from) and I then noticed the different in the BraviaEX.conf files. The Mencoder options were the biggest difference so I had a good starting point to start my Google searching.
Side note: I'm a long time PS3 MS user/fan who just recently discovered this UMS fork and am so happy to see this project active again. Cheers!