by McoreD » Mon Dec 08, 2008 6:16 pm
nohitter,
Sorry I gave the wrong reason for why need DiscCount. Consider the following code:
Code: Select all
.\$If(<Disc#>>1,<Disc#>-<Track#:2> <Title>,<Track#:2> <Title>)
or even
Code: Select all
.\$If(<Disc#>>1,<Disc#:2>-<Track#:2> <Title>,<Track#:2> <Title>)
The above will not generate file names like this:
1-03 Rivers of Babylon.mp3
It will only include DiscNumber if the DiscNumber is greater than 1. So for a two-disc album, you will have file names like this:
For disc 1:
03 Rivers of Babylon.mp3
For disc 2:
2-07 Belfast.mp3
In iTunes, if the DiscCount is greater than 1, i.e. a multi-disc album, then
all the tracks in the album will have the DiscCount:
Disc 1:
1-03 Rivers of Babylon.mp3
Disc 2:
2-07 Belfast.mp3
If the DiscCount is 1, i.e. single disc album, then all the tracks will have the following format:
03 Rivers of Babylon.mp3
So I was wondering how do we use DiscCount to implement this.
Thanks,
McoreD
nohitter,
Sorry I gave the wrong reason for why need DiscCount. Consider the following code:
[code] .\$If(<Disc#>>1,<Disc#>-<Track#:2> <Title>,<Track#:2> <Title>)[/code]
or even
[code] .\$If(<Disc#>>1,<Disc#:2>-<Track#:2> <Title>,<Track#:2> <Title>)[/code]
The above will not generate file names like this:
[b]1-03[/b] Rivers of Babylon.mp3
It will only include DiscNumber if the DiscNumber is greater than 1. So for a two-disc album, you will have file names like this:
For disc 1:
[b]03[/b] Rivers of Babylon.mp3
For disc 2:
[b]2-07[/b] Belfast.mp3
In iTunes, if the DiscCount is greater than 1, i.e. a multi-disc album, then [b]all[/b] the tracks in the album will have the DiscCount:
Disc 1:
1-03 Rivers of Babylon.mp3
Disc 2:
[b]2-07[/b] Belfast.mp3
If the DiscCount is 1, i.e. single disc album, then all the tracks will have the following format:
03 Rivers of Babylon.mp3
So I was wondering how do we use DiscCount to implement this.
Thanks,
McoreD