Anduril wrote: 
> Is there a way to create a kind of playlist with first and last item set
> (intro and outro) and inbetween a specific number of random titles?

Hi,

since a playlist is just a simple textfile the creation isnt that hard.
To do it manually is just time consuming - to do it from a batch depends
on your whole setup. (Linux or windows and so on)

eg under windows something like:
just a demo for the dosbox in case your using windows wrote: 
> 
> > 
Code:
--------------------
  >   > 
  > for /f "delims=" %a in ('cd') do set "folder=%~na"
  > for /f "delims=" %a in ('dir /b /O-N') do set "first=%~dpnxa"
  > for /f "delims=" %a in ('dir /b /ON') do set "last=%~dpnxa"
  > echo %first%>%folder%.m3u
  > echo %last%>>%folder%.m3u
  > 
--------------------
> > 
> could be your starting point....


------------------------------------------------------------------------
DJanGo's Profile: http://forums.slimdevices.com/member.php?userid=1516
View this thread: http://forums.slimdevices.com/showthread.php?t=108465

_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to