The difference is only apparent with subsequent additions to the playlist. When Inserting or Enqueueing a single track, they behave identically. When Inserting the second track, it goes before the first inserted track. When Enqueueing the second track, it goes after the first enqueued track.
The difference is FIFO (First in First Out) vs. LIFO (Last in First Out) if you follow me. Insert is LIFO, Enqueue is FIFO. When adding only a single track, first and last is the same, so they are identical.
Note that when the currently playing track changes, the queue of inserts and/or enqueues starts over.
That much I understood. For some reason, I thought that I had to insert the first of a series of tracks, then enqueue the subsequent tracks. This caused the enqueued tracks to place
ahead of the inserted track, so instead of ending up with a sequence of 1, 2, 3, 4, 5 I ended up with a sequence of 2, 3, 4, 5, 1.
Obviously I need to arrange my thinking so that by default I always use enqueue, and only use insert when I absolutely want that track to be the next to play.
tanstaafl.