Hi Mattiamazz,
The mkv file that you mentioned not to work with your philips 37PFL8404H TV has a resolution of 1920x796.
I mentioned in the
config-file in "Findings" that I found that this TV does not support all resolutions in the MPEG-2 format. (format used for transcoding)
With a width of 1920, only a height of 1080 is supported. (1920x1080)
So video scaling is needed. (unfortunately this uses many CPU load so the transcode buffer fills slower)
This setting can be given in 4 different locations:
In the GUI: (general settings used for all renderers)
(1) "Transcoding Settings" >> "MEncoder" >> "Use Video Scaler" + 1920 and 1080
(2) "Transcoding Settings" >> "MEncoder" >> "Custom options:" -vf scale=1920:1080
(3) "Transcoding Settings" >> "MEncoder" >> "Expert settings: Codec-specific parameters" >> "Custom parameters"
In the renderer config file: (renderer specific)
(4) In the renderer config file by using CustomMencoderOptions = -vf scale=1920:1080
However I guess that I found a bug in the current PMS code where video scaling is not used.
Only by using the expert settings, video scaling is used.
Add next code in "Transcoding Settings" >> "MEncoder" >> "Expert settings: Codec-specific parameters" >> "Custom parameters" and let us know how it goes:
- Code: Select all
container == matroska :: -vf scale=1920:1080