Перейти к основному содержимому
Версия: 14.x

Как улучшить поддержку устройства

Если ваше устройство не функционирует, например, не может просматривать папки или воспроизводить файлы, можно попробовать это исправить, изменив настройки в конфигурационном файле рендерера. Различные устройства/рендереры/клиенты взаимодействуют с серверами типа UMS по-разному, так что конфигурационный файл сообщает UMS о том, как говорить на том же языке, что и ваше устройство.

Every configuration profile serves two purposes:

  • Allow UMS to recognize a specific renderer when it tries to connect
  • Define the possibilities of that renderer

У нас есть стандартный конфигурационный файл, содержащий документацию по всем настройкам рендерера. Его новейшая версия доступна тут: https://github.com/UniversalMediaServer/UniversalMediaServer/blob/master/src/main/external-resources/renderers/DefaultRenderer.conf

Adding support for an unrecognized device

When UMS does not recognize your device, it means none of the renderer configuration profiles match your device. The result is that UMS displays an Unknown Renderer, and since it does not know the possibilities of your renderer, it cannot provide optimized output for your device.

The solution is to try creating your own renderer configuration file.

  1. Make a copy of the .conf file that is closest to your device. For example, if your Samsung TV is not recognized, one of the Samsung TV configs might be a good place to start from.

  2. Go to the Logs tab in UMS and look for the text Media renderer was not recognized. Possible identifying HTTP headers:. That information is what is needed to make UMS recognize your device.

  3. In your new .conf file, look for the line that defines UserAgentSearch and/or UpnpDetailsSearch and replace the values with that identifying information.

  4. Browse and play some media on your device. Take note of which media had a problem playing. Now you can move on to the next section to improve support for your device.

Improving support for a device

  1. If any of your media has a problem playing, the renderer config should be modified until it works. Refer to DefaultRenderer.conf for the full list of options. The most common ones to change are:

    Video
    Audio
    Image
    TranscodeVideo
    TranscodeAudio
    SeekByTime
    Supported

    Make sure you do not have MediaInfo = false in your new config, because that will stop the Supported lines from working.

  2. To make sure transcoding is working on your device, play a file from the #--TRANSCODE--# folder. Within that folder, play one of the FFmpeg entries. If it plays, then transcoding is working.

  3. The Supported lines need to be populated to tell UMS which files your device supports natively. It can be a good idea to find the manual for your device online and use that to help populate those lines.

  4. Кроме того, вы можете ознакомиться с другими настройками рендерера в папке "renderers" в каталоге установки. Иногда вам нужна помощь, которую мы можем оказать на нашем форуме, только не забудьте сообщать нам об улучшениях, чтобы исправление было полезно другим пользователи с таким же устройством, как у вас. Мы упомянем вас в объявлении о выходе новой версии и списке изменений.