I got a LG 47LV550W LCD TV and using the "LG TV (DLNA, 16:9, 720x406)" profile.
The problem i have is that i can't get gif animations to transcode properly to the TV. I only get the first image frame moved over to the TV screen.
Maybe it's not possible to transcode gif animations?
.gif animations on LG 47LV550W
Re: .gif animations on LG 47LV550W
Spookyy wrote:I got a LG 47LV550W LCD TV and using the "LG TV (DLNA, 16:9, 720x406)" profile.
The problem i have is that i can't get gif animations to transcode properly to the TV. I only get the first image frame moved over to the TV screen.
Maybe it's not possible to transcode gif animations?

1. Download and install ImageMagick - http://www.imagemagick.org/
2. WMS - Settings - Transcoder - Profiles - "Transcoding profiles list" - Photo - Add
Name: Photo (GIF) - ImageMagick - FFMPEG
Execute mode: Transcoding
Language: PascalScript
MIME-type - click "Edit Script" - Expression - cfgTranscodingVideoMimeType - Ok
Transcoding parameters:
Code: Select all
var
sDirectory, sFileMask, sTranscodingParams: string;
begin
TranscodingResult := False;
sDirectory := IncludeTrailingBackslash(WmsTranscodingTempDirectory) + 'GifConvert\';
if ForceDirectories(sDirectory) then begin
sFileMask := sDirectory + mpItemID + '%05d.jpg';
if WmsTranscodingExecute('IMAGEMAGICK', InputFileName + ' ' + sFileMask, True) then begin
sTranscodingParams := Format('-loop_input -t 10 -i "%s" %s -an "%s"', [sFileMask, WmsTranscodingVideoParams, OutputFileName]);
TranscodingResult := WmsTranscodingExecute('WMSMPEG', sTranscodingParams, True);
end
end
end.
3. Select a gif-file - right click - Transcoding profile - "Photo (GIF) - ImageMagick - FFMPEG"
Tested with No problems
Re: .gif animations on LG 47LV550W
Thanks a LOT!
Totally awesome program! Gonna buy it before trial runs out.
Totally awesome program! Gonna buy it before trial runs out.
Re: .gif animations on LG 47LV550W
New version
1. Unzip "Photo (GIF) - ImageMagick - FFMPEG.zip"
2. Download and install ImageMagick - http://www.imagemagick.org/
3. WMS - Settings - Transcoder - Profiles - "Transcoder list" - IMAGEMAGICK - Delete - Yes
4. WMS - Settings - Transcoder - Profiles - Load - "Photo (GIF) - ImageMagick - FFMPEG.cfg" - "Clear current lists ?" - No
5. Main form of the program - Photo - List [Photo] - Select a gif-file - right click - Transcoding profile - "Photo (GIF) - ImageMagick - FFMPEG"
1. Unzip "Photo (GIF) - ImageMagick - FFMPEG.zip"
2. Download and install ImageMagick - http://www.imagemagick.org/
3. WMS - Settings - Transcoder - Profiles - "Transcoder list" - IMAGEMAGICK - Delete - Yes
4. WMS - Settings - Transcoder - Profiles - Load - "Photo (GIF) - ImageMagick - FFMPEG.cfg" - "Clear current lists ?" - No
5. Main form of the program - Photo - List [Photo] - Select a gif-file - right click - Transcoding profile - "Photo (GIF) - ImageMagick - FFMPEG"