Released version "Wild Media Server (DLNA) v1.50.3 (32-bit)

Locked
Eugene
Posts: 2940
Joined: Tue Nov 17, 2009 8:05 pm

Released version "Wild Media Server (DLNA) v1.50.3 (32-bit)

Post by Eugene »

Update files

How to update the program:
1. Download the update file.
2. Open update file, if all successful, then the update program will start automatically.
If run the upgrade did not happen, then the Start-Programs-Wild Media Server-
"Maintenance Wild media server (UPnP, DLNA, HTTP)"-Update

The program can be updated from the distribution kit - http://www.wildmediaserver.com/download.php
  • Wild Media Server (UPnP, DLNA, HTTP) v.1.50
  • 1. Added device configurations:
    • "Samsung Galaxy Tab 10.1 (AllShare, DLNA, 16:9, 640x360)";
    • "Panasonic BD Player (DLNA, 16:9, 720x406)";
    • "Iconbit Media Player (DLNA, 16:9, 720x406)".
    2. The form "Information about the DMR-device":
    • added the field "Group of playback devices".
    3. The ability to use the "Play to" for the group of playback devices.
    4. Updated transcoder FFMPEG (ffmpeg-1.dll), due to changes in the padding parameters (replaced by the use of a filter pad),
    the existing user transcoding profiles may be required to make the changes.
    5. In the status bar of the main form of the program added to the color selection buttons (colors used in the main form of the program).
    6. For mkv-files in the folder Transcoding added the folder "Chapters",
    need reload the file properties.
    7. Device Settings:
    • added option "Transcoding mpo-files" (No, Horizontal pair, Vertical pair);
    • added mode "Include a description of the file links to photos of different resolutions" (enabled by default for devices enabled mode DLNA 1.0 and DLNA 1.5);
    • added the possibility of an authorization server access in Web-mode (Device Settings - Additional - "Web-navigation" - Authorization).
    8. Released 64-bit version of the program (http://www.wildmediaserver.com/forum/vi ... f=3&t=1446).
Update to 1.50.3

1. In the table "List [Movies]" added the column "3D" (No, Horizontal pair, Vertical pair, Two video-tracks).
2. In the form "Movie information" added the field "3D-video" (No, Horizontal pair, Vertical pair, Two video-tracks).
3. Added support for transcoding 3D-films (Horizontal pair, Vertical pair) with the addition of 3D-subtitles.
4. Updated transcoding profiles "Movies (Remux)", "Movies (additional)", "Movies (additional) - WMV", "Movies - CorePlayer".
5. Updated Bulgarian, German, Italian and Slovac translation files.
6. Device Settings:
  • added transcoding setting with subtitles "3D-offset".
7. Updated transcoder FFMPEG (ffmpeg-1.dll).
Eugene
Posts: 2940
Joined: Tue Nov 17, 2009 8:05 pm

Re: Released version "Wild Media Server (UPnP) v1.50.1 (32-b

Post by Eugene »

Changes the padding parameters in the transcoding profiles (if the transcoding profiles were changed)

1st way.
Settings - Transcoder - Profiles - choose a transcoding profile - click "Restore transcoding profile from the distribution kit"

2nd way
Settings - Transcoder - Profiles - choose a transcoding profile - click "Edit transcoding profile"

find the code

Code: Select all

          sParams := sParams + Format(' -padleft %d -padright %d -padtop %d -padbottom %d -padcolor %s',
                      [iPadLeft, iPadRight, iPadTop, iPadBottom, WmsConvertColor(cfgTranscodingPadColor)]);
          if cfgTranscodingFrameExists then
            sParams := sParams + cfgTranscodingFrameParams;
          Inc(iFrameWidth,  iPadLeft + iPadRight);
          Inc(iFrameHeight, iPadTop + iPadBottom);
replace with

Code: Select all

          Inc(iFrameWidth,  iPadLeft + iPadRight);
          Inc(iFrameHeight, iPadTop + iPadBottom);
          sParams := sParams + Format(' -vf "pad=%d:%d:%d:%d:0x%s"',
                        [iFrameWidth, iFrameHeight, iPadLeft, iPadTop, WmsConvertColor(cfgTranscodingPadColor)]);
          if cfgTranscodingFrameExists then
            sParams := sParams + cfgTranscodingFrameParams;
The variable name (sParams) may be different.
Eugene
Posts: 2940
Joined: Tue Nov 17, 2009 8:05 pm

Re: Released version "Wild Media Server (UPnP) v1.50.2 (32-b

Post by Eugene »

Update to 1.50.3

1. In the table "List [Movies]" added the column "3D" (No, Horizontal pair, Vertical pair, Two video-tracks).
2. In the form "Movie information" added the field "3D-video" (No, Horizontal pair, Vertical pair, Two video-tracks).
3. Added support for transcoding 3D-films (Horizontal pair, Vertical pair) with the addition of 3D-subtitles.
4. Updated transcoding profiles "Movies (Remux)", "Movies (additional)", "Movies (additional) - WMV", "Movies - CorePlayer".
5. Updated Bulgarian, German, Italian and Slovac translation files.
6. Device Settings:
  • added transcoding setting with subtitles "3D-offset".
7. Updated transcoder FFMPEG (ffmpeg-1.dll).
Locked