Rename MP3s with year of release?
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Rename MP3s with year of release?
Does anyone know if there's any MP3 file renamer that can append the year of release of the song? It has to be something that can use a database, because none of my MP3s have any ID3 data. Thanks.
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
-
DarkDragon
- Addict

- Posts: 2347
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
Re: Rename MP3s with year of release?
You can use my id3tag tools:
ZIP
Setup (recommended because of the context menus which will be installed into the windows explorer)
Here is the manual:
http://www.bradan.eu/projects/id3tagtools/manual/
ZIP
Setup (recommended because of the context menus which will be installed into the windows explorer)
Here is the manual:
http://www.bradan.eu/projects/id3tagtools/manual/
bye,
Daniel
Daniel
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Re: Rename MP3s with year of release?
I had a read but your tool doesn't appear to do what I want. How does it rename the MP3 file with the year of release of the song? I don't want to edit ID3 tags.DarkDragon wrote:Here is the manual:
http://www.bradan.eu/projects/id3tagtools/manual/
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
-
DarkDragon
- Addict

- Posts: 2347
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
Re: Rename MP3s with year of release?
Sorting by ID3-Tags is what you want.
http://www.bradan.eu/projects/id3tagtoo ... l/#sorting
You can specify the filename template and it will rename all files so they match the template.
For example if you specify this pattern:
C:\Documents and Settings\Max\My Music\Sorted\%YEAR%_*.$
it will rename all files inside the list, e.g. those mp3s:
will end up as this
http://www.bradan.eu/projects/id3tagtoo ... l/#sorting
You can specify the filename template and it will rename all files so they match the template.
For example if you specify this pattern:
C:\Documents and Settings\Max\My Music\Sorted\%YEAR%_*.$
it will rename all files inside the list, e.g. those mp3s:
Code: Select all
FILE YEAR
------------------
blubb.mp3 2006
abc.mp3 2003Code: Select all
C:\Documents and Settings\Max\My Music\Sorted\2006_blubb.mp3
C:\Documents and Settings\Max\My Music\Sorted\2003_abc.mp3bye,
Daniel
Daniel
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Re: Rename MP3s with year of release?
I tried it, but it didn't do anything. Remember what I said in my first post:
So, I don't think your tool can help. I'll keep looking elsewhere. Thanks anyway!MachineCode wrote:none of my MP3s have any ID3 data
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
Re: Rename MP3s with year of release?
you know musicbrainz ?
http://musicbrainz.org/doc/MusicBrainz_Picard
http://musicbrainz.org/doc/MusicBrainz_Picard
사십 둘 .
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Re: Rename MP3s with year of release?
MusicBrainz looks interesting. It may work if I can parse their web pages. Thanks!
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
Re: Rename MP3s with year of release?
I was about to send you a link to a MP3 program I wrote in PB years ago, with a pretty big description and a file link, and then I saw in your original post that your files don't have ID3 data
whoops.
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Re: Rename MP3s with year of release?
MusicBrainz can't do it. Seems like there's a market for this sort of app.
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
Re: Rename MP3s with year of release?
hmm .. musicbrainz picard DOES part of the work for me
f.i.
i got a video from youtube (browsercache) and extract the music as mp3 (ffmpeg)
(some KateBushStuff)
this mp3 put in the musicbrainz picard , and there doing a a scan (Ctrl-Y) and i got the albumInfo from the
musicbrainz-databases for this mp3.
This scanning takes a kind of fingerprint of the mp3 and checks this with fingerprints in the database and
results in Info if there is info.
A 'FileSave' (CTRL-S) saves this Info as ID3-Tags in the mp3
And then you can continue with Darkdragon's Code
f.i.
i got a video from youtube (browsercache) and extract the music as mp3 (ffmpeg)
(some KateBushStuff)
this mp3 put in the musicbrainz picard , and there doing a a scan (Ctrl-Y) and i got the albumInfo from the
musicbrainz-databases for this mp3.
This scanning takes a kind of fingerprint of the mp3 and checks this with fingerprints in the database and
results in Info if there is info.
A 'FileSave' (CTRL-S) saves this Info as ID3-Tags in the mp3
And then you can continue with Darkdragon's Code
사십 둘 .
Re: Rename MP3s with year of release?
with a file renaming script in like
picard will rename the mp3 already with a leading Release-Year
Code: Select all
$if2(%albumartist%,%artist%)/%album%/ $left(%date%,4)-$num(%tracknumber%,2) %title%
사십 둘 .
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Re: Rename MP3s with year of release?
Thanks for that, bobobo. Indeed, it does do PART of the work, but it has many missing matches for me. I've got 1480 songs to fix like this, so it'll help, yes; but I just wish there were a text database of songs somewhere with ID3 data as CSV fields or something. Would make it a whole lot easier and faster. 
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
-
MachineCode
- Addict

- Posts: 1482
- Joined: Tue Feb 22, 2011 1:16 pm
Re: Rename MP3s with year of release?
I know, but it still misses many of my songs (no matches), which means I've got to do them manually. Very time-consuming. Each search with Picard takes a while too, about 10 seconds for me, so 10 x 1480 = over 4 hours to process it all.
Microsoft Visual Basic only lasted 7 short years: 1991 to 1998.
PureBasic: Born in 1998 and still going strong to this very day!
PureBasic: Born in 1998 and still going strong to this very day!
