Jump to content
(Open Beta) HyperSpin 2 is now available for everyone ×

(Request) bin & cue renamer


Recommended Posts

Posted

Is there any apps for renaming bin and cue files?

Problem being on Android mostly all the files have to be unzipped in one folder. So you have to rename all the Track01 files etc and the. The cue file entries.

I have not come across program that does this yet

Posted

Just being honest... it will probably be easier to find a better set of files.  The tracks should absolutely match the name of the cue file with track 1,2,3 and so forth at the end of the file name.  I had to rename my ps2 collection a while back and luckily I was able to leave all the bin files as is and just had to rename the cue file to match media / my database.  I can't even imagine if I had to rename the bins and get the cue file data to match the new bin names.

Posted

I find getting the files one of the hardest and time consuming things to do.

Also if you have 2 or more games with bin files named track01 then they have to be changed because they all go in same folder! Although I don't remember to many problems sorting my PS1 files but I only have about 20 games like I did when I had a PS1

  • 5 months later...
Posted
On 1/9/2016 at 8:46 PM, thatman84 said:

Is there any apps for renaming bin and cue files?

Problem being on Android mostly all the files have to be unzipped in one folder. So you have to rename all the Track01 files etc and the. The cue file entries.

I have not come across program that does this yet

Did you find something to solve your problem? I'm trying to rename my PS1 Games and HyperSpinb Cue Renamer doesn't seems to work. It asks me for every Track* file of each game. 

 

Posted
31 minutes ago, ci2own said:

Did you find something to solve your problem? I'm trying to rename my PS1 Games and HyperSpinb Cue Renamer doesn't seems to work. It asks me for every Track* file of each game. 

 

Tio,

why don't you try to create the .cue files with a batch? that's what I did and it worked amazing because I didn't have any .cue file in my rom set for my PSX roms

check this batch:

@echo off
cls
set extension_origen=bin
set extension_final=cue

FOR /F "tokens=1,2 delims='.'" %%l IN ('dir /b *.%extension_origen%') DO (
	@echo FILE "%%l.%extension_origen%" BINARY > %%l.%extension_final%
	@echo  TRACK 01 MODE2/2352 >> %%l.%extension_final%
	@echo    INDEX 01 00:00:00 >> %%l.%extension_final%
	)

.... and change the extension "bin" to the one you have, if it is different.

Of course, save your current cue files and try the batch.

as a note, if you don't have special characters like ~ !!!, etc, then it should work great.

This batch was given to me from another forum, so it is not my creation.

Posted
2 minutes ago, badboo said:

Tio,

why don't you try to create the .cue files with a batch? that's what I did and it worked amazing because I didn't have any .cue file in my rom set for my PSX roms

check this batch:


@echo off
cls
set extension_origen=bin
set extension_final=cue

FOR /F "tokens=1,2 delims='.'" %%l IN ('dir /b *.%extension_origen%') DO (
	@echo FILE "%%l.%extension_origen%" BINARY > %%l.%extension_final%
	@echo  TRACK 01 MODE2/2352 >> %%l.%extension_final%
	@echo    INDEX 01 00:00:00 >> %%l.%extension_final%
	)

.... and change the extension "bin" to the one you have, if it is different.

Of course, save your current cue files and try the batch.

as a note, if you don't have special characters like ~ !!!, etc, then it should work great.

This batch was given to me from another forum, so it is not my creation.

Thanks for your fast response. The problem is i have each .cue in his folder. And if i delete them and after that i need it again i would have to add manually to each folder. So don't want to take that risk.

Posted

@ci2own

what do you need exactly?

i have crude program a guy made for me

assuming you have run your games through Don's renamer it will spit out a (gamename).cue & Track##.bin files in a folder

 

The program will add the game name to the track files and rename the internals of the cue sheet to match. So every cue file and bin file for all games will have a unique name and the cue files will be correct.

 

it is crude though but works a treat.

Posted
22 minutes ago, thatman84 said:

@ci2own

what do you need exactly?

i have crude program a guy made for me

assuming you have run your games through Don's renamer it will spit out a (gamename).cue & Track##.bin files in a folder

 

The program will add the game name to the track files and rename the internals of the cue sheet to match. So every cue file and bin file for all games will have a unique name and the cue files will be correct.

 

it is crude though but works a treat.

 I solved it with a script. All is explained here:

 

Thank you very much!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...