VideoHelp Forum
+ Reply to Thread
Results 1 to 8 of 8
Thread
  1. Hello

    Back in the early 2000's i used a free program where all the track titles would come up and i would just cover and paste all tracks onto Notepad or WordPad.

    Anyone remember the name of this software?

    Thanks
    Quote Quote  
  2. Member hech54's Avatar
    Join Date
    Jul 2001
    Location
    Yank in Europe
    Search PM
    Most CD rippers will go online for you and get the track listing if it is a commercial, store bought CD.
    Something called CDText was also used on a small portion of CDs.
    Quote Quote  
  3. Thanks hech54

    Thanks for the information my friend... Its i have a good few mp3's in folders and instead painstakingly copy/paste each track onto notepad, is there another software/way of doing this?

    Many thanks
    Quote Quote  
  4. Like CMD:

    Code:
    dir /b *.mp3  > tracklist.txt
    Quote Quote  
  5. Member hech54's Avatar
    Join Date
    Jul 2001
    Location
    Yank in Europe
    Search PM
    Originally Posted by videobruger View Post
    Like CMD:

    Code:
    dir /b *.mp3  > tracklist.txt
    Does modern DOS allow you to copy and paste the results to a text document?
    Quote Quote  
  6. Hello

    Thanks again for replies., Much appreciated...

    I shall take a look... hopefully it will do the job.

    Many thanks
    Quote Quote  
  7. Originally Posted by hech54 View Post
    Originally Posted by videobruger View Post
    Like CMD:

    Code:
    dir /b *.mp3  > tracklist.txt
    Does modern DOS allow you to copy and paste the results to a text document?
    The given command line outputs the list to a plain text file called tracklist.txt. That can be opened with any text editor. If one does this instead:

    Code:
    dir /b *.mp3
    The list will be printed in the CLI window where you can mark and copy to the clipboard, then paste into any program.

    Image
    [Attachment 63866 - Click to enlarge]


    You can get a bare list of all files in a folder and subfolders therein with:

    Code:
    dir /s /b *.mp3  > tracklist.txt
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!