There are several but a simple solution is a batch file and a reg file. Create a file called MakePlaylist.cmd in C:\Program Files\PlaylistCreate In it put the following:
cd /D %1 echo #EXTM3U > playlist.m3u dir /b *.mp3 >> playlist.m3u echo done pause And then to add the context entry you can make a .reg file with the following: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\shell\MakePlaylist] @="Create a Playlist from Folder of MP3s" [HKEY_CLASSES_ROOT\Directory\shell\MakePlaylist\command] @="\"C:\\Program Files\\PlaylistCreate\" \"%1\"" Now when you right click on a folder it will have "Create a Playlist from Folder of MP3s" and will save it as playlist.m3u. You can expand it to include .wma files by adding: dir /b *.wma >> playlist.m3u right after dir /b *.mp3 >> playlist.m3u -- Chris On Thu, Aug 20, 2009 at 12:57 AM, Matthew Bullis<[email protected]> wrote: > Hello, is there a program out there that will let you make a playlist of > files by selecting a folder, or files in it, right clicking on that, and > making an m3u file right there? This would save me going to the command > prompt, switching to the folder, and piping the directory listing to a file > name. If this program exists, would it also drop the m3u file right in with > those files, so it's easy to transfer to the Braille Note? > Thanks a lot. > Matthew > > > ___ > Replies to this message will go directly to the sender. > If your reply would be useful to the list, please send a > copy to the list as well. > > To leave the BrailleNote list, send a blank message to > [email protected] > To view the list archives or change your preferences, visit > http://list.humanware.com/mailman/listinfo/braillenote > > ___ Replies to this message will go directly to the sender. If your reply would be useful to the list, please send a copy to the list as well. To leave the BrailleNote list, send a blank message to [email protected] To view the list archives or change your preferences, visit http://list.humanware.com/mailman/listinfo/braillenote
