Page 1 of 1

.gif animations on LG 47LV550W

Posted: Thu Jul 28, 2011 7:51 pm
by Spookyy
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?

Re: .gif animations on LG 47LV550W

Posted: Fri Jul 29, 2011 7:40 am
by Eugene
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.
Ok - Ok - OK
3. Select a gif-file - right click - Transcoding profile - "Photo (GIF) - ImageMagick - FFMPEG"

Tested with
sample2.gif
sample2.gif (29.62 KiB) Viewed 18142 times
No problems

Re: .gif animations on LG 47LV550W

Posted: Fri Jul 29, 2011 10:16 am
by Spookyy
Thanks a LOT!
Totally awesome program! Gonna buy it before trial runs out.

Re: .gif animations on LG 47LV550W

Posted: Thu Dec 27, 2018 6:21 pm
by Eugene
New version
Photo (GIF) - ImageMagick - FFMPEG.zip
(1.06 KiB) Downloaded 1081 times
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"