Sure. I'll cobble something up.
Here. It's the "Burly Brawl" tune from Dungeons of Dredmor, which plays when you open a monster zoo. Load that zip in ZDoom with your favorite IWAD (or, your least favorite, I won't judge), and type "changemus brawl.ogg" in the console.
How did I do that? Perfectly lazily. What took the most time was verifying that it works since the full length is more than two minutes and a half.
I have a "brawl-intro.ogg" and a "brawl-repeat" ogg. Since it's a streaming format, I lazily glued them to each other to get a single file. (Ctrl-C/Ctrl-V works in a hex editor.)
Foobar2000 told me, looking at its properties, that the duration is "0:05.415 (238 787 samples)". That's because it's too smart for its own good and doesn't play both streams back to back like ZDoom does (or SLADE 3, by the way). I guess it looks at the first header and stops playing when it reaches the given duration. Anyway, that's good.
On the metadata tab , I right-clicked and chose "add new field". I named that new field LOOP_START and gave it the value 238787, since I thought that a duration in samples would be more precise, and I had that value. (My first attempt, actually, was with just 0:05 since that was the duration the playlist gave me. The lack of precision could be heard. I hadn't thought of looking at the properties tab to get a more precise value then; I guess 0:05.415 would have been precise enough.)