Automatic fade for news won't work

Is it possible to make the end of a number (for example, the news) automatic a transition? When we download the news, it has 5 seconds of silence by default, and mairlist stays quiet until the end without a good transition :-\

First of all, can you please enter your license serial number to the forum profile so we can see what version/edition you have? Thank you.

Hi Torben,

I have entered the number on my profile. I use the Demo of the home version.

Thank you.

I’m afraid there is no way to cut off the silence automatically when the file gets replaced. (If it was a static file, Auto Cue would to the job.) Why is there silence in the file anyway? What does the supplier say about it?

Having the same ‘issue’ as Marco. I was also hoping to somehow cut the silence automatically. I’ll try checking with the supplier like you’re suggesting and see why they do it.

Well, as a last resort, you could use a script that performs an Auto Cue on the news item just before it is played.

var
  i: integer;
  pi: IPlaylistItem;

begin
  CurrentPlaylist.BeginRead;
  try
    for i := 0 to CurrentPlaylist.GetCount - 1 do begin
      pi := CurrentPlaylist.GetItem(i);
      if pi.GetTitle = 'News' then begin
        pi.AutoSearchPosition(ptCueIn);
        pi.AutoSearchPosition(ptCueOut);
      end;
    end;
  finally
    CurrentPlaylist.EndRead;
  end;
end.