.gif animations on LG 47LV550W

Post Reply
Spookyy
Posts: 9
Joined: Wed Jul 27, 2011 2:43 pm

.gif animations on LG 47LV550W

Post 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?
Eugene
Posts: 2940
Joined: Tue Nov 17, 2009 8:05 pm

Re: .gif animations on LG 47LV550W

Post 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 17564 times
No problems
Spookyy
Posts: 9
Joined: Wed Jul 27, 2011 2:43 pm

Re: .gif animations on LG 47LV550W

Post by Spookyy »

Thanks a LOT!
Totally awesome program! Gonna buy it before trial runs out.
Eugene
Posts: 2940
Joined: Tue Nov 17, 2009 8:05 pm

Re: .gif animations on LG 47LV550W

Post by Eugene »

New version
Photo (GIF) - ImageMagick - FFMPEG.zip
(1.06 KiB) Downloaded 991 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"
Post Reply