Author |
Message |
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 1:49 pm |
|
righty NEAL, not Neil, my man you will ken this anyway.
Got a cd with songs on it, need to get a list of the songs so I can put it in a mail
Cannae cut and paste and don't want to sit and type out a thousand or so song/album titles.
PS I bought them all |
Last edited by Chris H on Sat Jan 22, 2005 1:39 pm; edited 1 time in total |
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 2:07 pm |
|
just need to specify your CD drive letter in the batch file
so instead of
erase mp3list.txt
dir *.mp3 /o:N /s /b >mp3list.txt
for example for me it becomes
erase mp3list.txt
dir F:\*.mp3 /o:N /s /b >mp3list.txt |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 2:14 pm |
|
I can't get the batch thing to work anymore |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 2:19 pm |
|
why not, what does it say? |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 2:21 pm |
|
comes up for ohh about 1/4 second then goes away |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 2:24 pm |
|
does the original one still work? |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 2:25 pm |
|
its thaT ONE I'm tryign to open |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 2:40 pm |
|
right got it working but it lists all the seperate tracks and so on. Grr, I just need the album titles. |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 2:47 pm |
|
ok well have you got all the mp3s in the same directory, with the album name as part of their filenames, or are they organised into seperate directories, with the directory names as the albums?
if its the latter, we can work with that i think
if you need to keep the command prompt open after the batch file is finished so you can see what its been up to, just add
pause
to the end of the file. |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 2:51 pm |
|
pause doesn't work still get the whole lot |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 2:52 pm |
|
pause is just meant to keep the window open, not do the album listing.
does pause work for you? |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 2:55 pm |
|
just does the same I can get the list up |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 2:58 pm |
|
so the black batch file window still disappears? |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 3:00 pm |
|
yeah but I get another link to open the lot in notepad |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 3:02 pm |
|
you just right click the batch file and go to edit if you want to open it in notepad to change it
how have you been editing it thus far then? |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 3:03 pm |
|
I have not been editing it. I have to get a list done so I thought I had better look into it tonight |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 3:05 pm |
|
you've totally lost me now.
how did you get it to list it all out off the CD if you didnt edit the batch file? |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 3:08 pm |
|
I just changed it, thats not an edit.
anyway heres the list, I will delete it later btw, I am not being bad, but asa you can see its no use to print out/send, this is the 2nd disc btw
nothing was here at all ever |
Last edited by Chris H on Fri Jan 21, 2005 3:15 pm; edited 1 time in total |
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 3:13 pm |
|
ok our definitions of 'change' and 'edit' are obviously different. To me they mean the same thing. what do they mean to you?
Should be able to list just the album names, cant 'mind ' how at the moment though |
|
|
|
|
Chris H
Forum Moderator
Joined: 02 Mar 2004
Posts: 19978
|
Posted:
Fri Jan 21, 2005 3:27 pm |
|
when you remember neal in your own time eh son! now mofo |
|
|
|
|
Neal
Forum Moderator
Joined: 18 Feb 2004
Posts: 7432
|
Posted:
Fri Jan 21, 2005 3:37 pm |
|
alright alright chill
echo on
erase mp3list.txt
dir F:\ /o:G /A:D /b >mp3list.txt
pause
obviously change the F:\ bit to your CD drive letter |
|
|
|
|
|