Zitat:
@BlackTM schrieb am 28. August 2015 um 18:16:56 Uhr:
Kopier dir doch einfach dieses Script:
Code:@ECHO OFFREM #######################REM ## WTFPL License © 2012REM #######################
SET playlistname=testREM sorting the files by creation date:SET diropts=/S /B /T:C
SETLOCAL ENABLEEXTENSIONSSETLOCAL ENABLEDELAYEDEXPANSION
chcp 65001set output=%CD%set dir=%1FOR /f %%i in ("%0") DO SET dir=%%~dpiSET dir=!dir:~0,-1!CD %dir%SET b=%dir%SET length=1:LOOPIF defined b (SET b=%b:~1%&SET /A length += 1&GOTO loop)FOR /f "tokens=*" %%a in ('dir %diropts% %dir%\*.mp3;%dir%\*.wma') DO (SET file=%%a&SET file=!file:~%length%,2000!&ECHO !file! } "%output%\%playlistname%.m3u")
REM cmd /u /c type "%dir%\%playlistname%"pause
in eine Batch-Datei (einfache Notepad-Textdatei mit Endung .bat), kopiere sie in den Ordner in dem deine Alben in Unterordnern liegen und führe sie dort aus. Dann hast du relative Pfadangaben in deiner Playlist und alle *.mp3 und *.wma Titel stehen drin.
MfG BlackTM