AIMP Forum

AIMP for PC => Вопросы / Questions => Topic started by: kswartz26 on March 13, 2026, 01:41:38

Title: How to go to next track in playlist of streaming songs when song ends
Post by: kswartz26 on March 13, 2026, 01:41:38
I have a playlist that consists of multiple URLs. It looks like this:
Code: [Select]
#EXTM3U
#EXTINF:297,Cream - White Room (Crossroads, Disc 2)
http://localhost/myserver/playtrack.phtml?&id=3279
#EXTINF:253,Cream - Crossroads (Crossroads, Disc 2)
http://localhost/myserver/playtrack.phtml?&id=3280
#EXTINF:167,Cream - Strange Brew (Crossroads, Disc 1)
http://localhost/myserver/playtrack.phtml?&id=3281

Each of these URLs is a single song. What I want is for AIMP to go to the next URL when the song ends.

The problem is that it thinks each URL is an Internet Radio station, and therefore never ends. When the song does end, the player pauses for a few seconds, then reconnects and plays the same song again.

The server streaming the music is mine, so I have control over it. Is there something I need to do to send a signal to AIMP that the stream is over and it should move on in the playlist?

Thanks in advance (and apologies if this is already answered somewhere in here).
Keith
Title: Re: How to go to next track in playlist of streaming songs when song ends
Post by: kswartz26 on March 13, 2026, 07:08:46
Problem solved.

It's necessary to include a "Content-Length" HTTP header in the output.

Keith