Creating CD covers with Folder structure ?

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: Hacker, petermad, Stefan2, white

Post Reply
User avatar
StickyNomad
Power Member
Power Member
Posts: 1933
Joined: 2004-01-10, 00:15 UTC
Location: Germany

Creating CD covers with Folder structure ?

Post by *StickyNomad »

Hi all,

I'd like to print covers for my MP3-Album CDs containing their directory structure:
(The front cover would suffice, I have no need to print back-cover, CD or booklet)

The CD Folder Strucure is always the same:
[Artist1]\[Year Albumname1]
[Artist1]\[Year Albumname2]
[Artist2]\[Year Albumname1]
...

I simply would like to print a cover in the following style:

Kyuss
1992 Blues for the red sun
1994 Sky Valley

Queens of the Stone Age
1998 Queens of the Stone Age
2000 Rated R
2002 Songs for the Deaf

Soul Coughing
1996 Irresistible Bliss
...


So my wanted app simply should print out every level-one folder (if possible formatted in bold e.g) followed by its subfolders. All should be sorted alphabetically, respectively by numbers.

Actually that's all I need so I could write a perl script or batch-file and create an HTML-File to print that out, but maybe someone already knows how to script/batch this task so I won't thave to re-invent the wheel :)

I also tried WDX Infopacker Plugin wich is quite promising, but it lacks (or I didn't find it) the possibility to scan only folders and to structurize the oputput in the kind I showed above.

The best of all would be a freeware tool that can do this and more, but I didn't found a decent app yet (cdrLabel and CD2HTML were quite close but they're not free and also lack some features to fit my exact needs).

Thx in advance
User avatar
majkinetor
Senior Member
Senior Member
Posts: 369
Joined: 2005-11-20, 10:36 UTC
Location: Belgrade, Serbia
Contact:

Post by *majkinetor »

Code: Select all

@echo off
set OUT=album_list.html

echo off >%OUT%
for /F "delims=" %%i in ('dir /b /A:D') do ( 
   >>%OUT% echo ^<H2^> %%i ^</H2^>
   >>%OUT% echo ^<pre^>
   >>%OUT% dir /b /A:D "%%i" 
   >>%OUT% echo ^</pre^>
)
It can be visualy enhanced on various places, ofcourse. This is just a basic procedure. YOu don't need 3th party tool for this. You can customize this the exact way you want. I will further help you with this if there is need for that, mainly because I like people who organize their music. I have about 10 000 CDs on my HD all organised like you are in the real store.

I also have suggestion for you... experiment witho other types of music... there are no genres, just current feeling.
Last edited by majkinetor on 2005-12-02, 17:58 UTC, edited 5 times in total.
We are not doing this just for the money.
We are doing it for sh*t load of money.
 
 
r-moth.com
r-moth.deviantart.com
User avatar
majkinetor
Senior Member
Senior Member
Posts: 369
Joined: 2005-11-20, 10:36 UTC
Location: Belgrade, Serbia
Contact:

Post by *majkinetor »

@ HACKER
If you wanna ban me, then do it.
I am behind the gateway so you will ban my whole network, that is, almost everybody in Belgrade.
That will ofcourse present problem for Belgrade citizens, and for you as moderator, but not for me. I can come back whenever I want from any other place I want.

Ofcourse, I will not do that. I will let this serve you on your honer, I have better things to do then doing stupid chats with moderator whos main property is bad taste (based on your site)

So please, don't be such a d*ck and live me in peace or just ban me already.

And what is the meaning of you having cool 14K animation avatar and everybody else only 6K 2D pictures to choose....
In case you want to respond to this moderation, please do so by e-mail that you can send either to me or to Lefteous
ups...
and leave Lefteous out of this. He has nothing to do with your atitude. I would be proud for this man to ban me :)
We are not doing this just for the money.
We are doing it for sh*t load of money.
 
 
r-moth.com
r-moth.deviantart.com
User avatar
StickyNomad
Power Member
Power Member
Posts: 1933
Joined: 2004-01-10, 00:15 UTC
Location: Germany

Post by *StickyNomad »

2majkinetor

Thanks very well, that batch seems to be a nice base for me.
there are no genres, just current feeling
exactly. And since I own a few more than the above mentioned Albums you can be sure there's quite a variety in my collection (as already is in those few examples, cos 'soul coughing' differs quite a bit from kyuss/queens tpye of music) But thanks for your advice :wink:

And I have a little advice for you, too: Try to listen the 'neurosis' or 'eisenvater' kind of music not too often, this could be a reason for the offensiveness you show sometimes (not yet to me...) :)
User avatar
majkinetor
Senior Member
Senior Member
Posts: 369
Joined: 2005-11-20, 10:36 UTC
Location: Belgrade, Serbia
Contact:

Post by *majkinetor »

Try to listen the 'neurosis' or 'eisenvater' kind of music not too often,
I listen and do mainly ambiental computer music... something like Soundtrack of BladeRunner movie... or "Selected ambient works" by Aphex Twin... I must admit that I am bigest fun of German electronic music, which you may know much better (some of my favorites are Pole, Rechenchentrum, Monolake etc). I enjoy that pure mathematics in music of your nation.

And my agressive style is just mascarade because of my own reasons. Lets just say I consider it as an examination method ...

And I am nice to people that are not bad to me, like you already noticed.
Last edited by majkinetor on 2005-12-02, 20:10 UTC, edited 1 time in total.
User avatar
SanskritFritz
Power Member
Power Member
Posts: 3693
Joined: 2003-07-24, 09:25 UTC
Location: Budapest, Hungary

Post by *SanskritFritz »

2majkinetor
You still owe me that snow music, dont forget it ;-)
I switched to Linux, bye and thanks for all the fish!
User avatar
majkinetor
Senior Member
Senior Member
Posts: 369
Joined: 2005-11-20, 10:36 UTC
Location: Belgrade, Serbia
Contact:

Post by *majkinetor »

SanskritFritz
I didn't.
You know me already.

As it seems that I will soon be banned from this space, I can still asure you that I always keep to what I said.
Post Reply