User User name Password  
   
Sunday 27.7.2025 / 00:26
Search AfterDawn Forums:        In English   Suomeksi   På svenska
afterdawn.com > forums > archived forums > cd-r > bin files
Show topics
 
Forums
Forums
Bin files
  Jump to:
 
Posted Message
Zeroeffet
Suspended due to non-functional email address
_
28. July 2004 @ 15:20 _ Link to this message    Send private message to this user   
Anyone know where to Burn bin files got any programs that will ?
Zeroeffet
Suspended due to non-functional email address
_
28. July 2004 @ 15:25 _ Link to this message    Send private message to this user   
i downloaded Nero but its says that i have to buy it
aldaco12
AfterDawn Addict
_
29. July 2004 @ 01:08 _ Link to this message    Send private message to this user   
First, Goldenhawk's (http://www.goldenhawk.com) CDRWin unregistered is limited to 1X (that is, 2X) speed but you can use it.
The problem is that you miss its associated .CUE file, that tells CDRWin whet is the name of the .BIN file to burn and, more important, which kind a .BIN image it is: Audio tracks (2352 per CD sector)? Video? (2336 per CD sector)?. Data track (2048 per CD sector)? Mixed mode (e.g. Data + Audio)? RAW (2352 per CD sector any type over mentioned - to make a 1:1 copy of a CD without recalculating the ECC and the EDC)?
If you can't find it, you can guess (if you knw which type of BIN it is: a PC game or an Audio CD or a VCD image?) and try to write one but it could create a 'coaster' (it's a ASCII file, use Notepad, just rename the Notepad's output file file.TXT --> file.CUE).
Examples (extracted from CDRWin's help file):
EXAMPLE #1 - Audio disc from a single WAV file with no “pause areas” between tracks.

FILE “C:\MYAUDIO.WAV” WAVE
TRACK 01 AUDIO
INDEX 01 00:00:00
TRACK 02 AUDIO
INDEX 01 05:50:65
TRACK 03 AUDIO
INDEX 01 09:47:50
TRACK 04 AUDIO
INDEX 01 15:12:53
TRACK 05 AUDIO
INDEX 01 25:02:40
TRACK 06 AUDIO
INDEX 01 27:34:05
TRACK 07 AUDIO
INDEX 01 31:58:53
TRACK 08 AUDIO
INDEX 01 35:08:65

EXAMPLE #2 - Audio disc from multiple source files (one track per file) with no "pause areas" between tracks. Note: You can “
mix and match” different audio filetypes within the same cuesheet (WAVE, AIFF, MP3, etc).

FILE “C:\TRACK1.WAV” WAVE
TRACK 01 AUDIO
INDEX 01 00:00:00
FILE “C:\TRACK2.WAV” WAVE
TRACK 02 AUDIO
INDEX 01 00:00:00
FILE “C:\TRACK1.AIF” AIFF
TRACK 03 AUDIO

INDEX 01 00:00:00
FILE “C:\TRACK2.AIF” AIFF
TRACK 04 AUDIO
INDEX 01 00:00:00
FILE “C:\TRACK1.MP3” MP3
TRACK 05 AUDIO
INDEX 01 00:00:00
FILE “C:\TRACK2.MP3” MP3
TRACK 06 AUDIO
INDEX 01 00:00:00

The files will be recorded continuously with no gaps between them. However, if any file is not an exact multiple of the CDROM sector size (2352 bytes), then the last sector will be automatically padded with zeros. This could result in a gap between tracks with a maximum length of 1/75th second.

EXAMPLE #3 - Audio disc using multiple data files (multiple tracks per file) with no "pause areas" between tracks.

FILE “C:\TRACK1.WAV” WAVE
TRACK 01 AUDIO
INDEX 01 00:00:00
TRACK 02 AUDIO
INDEX 01 05:50:65
TRACK 03 AUDIO
INDEX 01 09:47:50
TRACK 04 AUDIO
INDEX 01 15:12:53
FILE “C:\TRACK2.WAV” WAVE
TRACK 05 AUDIO
INDEX 01 00:00:00 Note: All times are relative to beginning of current file

TRACK 06 AUDIO
INDEX 01 02:31:40
TRACK 07 AUDIO
INDEX 01 06:56:13
TRACK 08 AUDIO
INDEX 01 10:06:25

EXAMPLE #4 - Audio disc with "pause areas" between tracks.

FILE “C:\MYAUDIO1.WAV” WAVE
TRACK 01 AUDIO
INDEX 01 00:00:00
TRACK 02 AUDIO
INDEX 00 05:49:65 ; 1 second pregap
INDEX 01 05:50:65
TRACK 03 AUDIO
INDEX 00 09:45:50 ; 2 second pregap
INDEX 01 09:47:50
TRACK 04 AUDIO
INDEX 00 15:09:53 ; 3 second pregap

INDEX 01 15:12:53

The pause areas are written with data from the current file. It is not required that this data be "digital silence" (all zeros).

The first track always begins with a mandatory two second pregap. This is required by the CDROM specification and is generated automatically by the software.

EXAMPLE #5 - Using the PREGAP command.

FILE “C:\MYAUDIO1.WAV” WAVE
TRACK 01 AUDIO
PREGAP 00:01:00 ; adds an additional one second to

INDEX 01 00:00:00 ; the first track pregap.
FILE “C:\MYAUDIO2.WAV” WAVE
TRACK 02 AUDIO
PREGAP 00:02:00
INDEX 01 00:00:00
FILE “C:\MYAUDIO3.WAV” WAVE
TRACK 03 AUDIO
PREGAP 00:01:00
INDEX 00 00:00:00
INDEX 01 00:01:00

The data that is written as a result of any PREGAP command is always generated internally by CDRWIN (the data is not consumed from the current file). It is possible to mix the source of the pregaps as shown in TRACK 03... one second of pregap will be generated internally and another second will be consumed from the file. All pregaps that are generated internally contain "digital silence" (all zeros).

EXAMPLE #6 - Using the CATALOG, ISRC, and INDEX commands.

CATALOG 3898347789120
FILE “C:\MYAUDIO1.WAV” WAVE
TRACK 01 AUDIO
ISRC ABCDE1234567
INDEX 01 00:00:00
INDEX 02 02:00:00
INDEX 03 04:00:00
FILE “C:\MYAUDIO2.WAV” WAVE
TRACK 02 AUDIO
ISRC XYZZY0000000
INDEX 01 00:00:00
TRACK 03 AUDIO
ISRC 123456789012
INDEX 00 03:00:00
INDEX 01 03:02:00
INDEX 02 05:34:32
INDEX 03 08:12:49

INDEX 04 10:01:74

EXAMPLE #7 - Single track DATA disc (cannot be used for Philips compatible recorders).

FILE “C:\MYDATA.ISO” BINARY
TRACK 01 MODE1/2048
INDEX 01 00:00:00
POSTGAP 00:02:00 ; Must add postgap to track!

EXAMPLE #8 - Single track DATA disc (using a RAW image file).

FILE “C:\MYDATA.RAW” BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00
POSTGAP 00:02:00 ; Must add postgap to track!


EXAMPLE #9 - Mixed-mode Disc (one data track and three audio tracks).

FILE “C:\MYDATA.ISO” BINARY
TRACK 01 MODE1/2048
INDEX 01 00:00:00
POSTGAP 00:02:00
FILE “C:\MYAUDIO.WAV” WAVE
TRACK 02 AUDIO
PREGAP 00:02:00
INDEX 01 00:00:00
TRACK 03 AUDIO
INDEX 01 05:50:65
TRACK 04 AUDIO
INDEX 01 09:47:50

EXAMPLE #10 - Mixed-mode Disc (one data tracks and four audio tracks).

FILE “C:\MYDATA1.ISO” BINARY

TRACK 01 MODE1/2048
INDEX 01 00:00:00
FILE “C:\TRACK1.WAV” WAVE
TRACK 02 AUDIO
PREGAP 00:02:00
INDEX 01 00:00:00
FILE “C:\TRACK2.WAV” WAVE
TRACK 03 AUDIO
INDEX 01 00:00:00
FILE “C:\TRACK3.WAV” WAVE
TRACK 04 AUDIO
INDEX 01 00:00:00
FILE “C:\TRACK4.WAV” WAVE
TRACK 05 AUDIO
INDEX 01 00:00:00

_

This message has been edited since posting. Last time this message was edited on 29. July 2004 @ 01:25

Related links
Read our guide on how to burn BIN/CUE files to CD with Nero.
 
Related forum topics Posts Last post Forum room
Bin and Application files 2 21. September 2013 Windows - Software discussion
Bin and Exe file only 6 25. July 2013 Windows - Software discussion
how to join 2 bin. files into 1 working file.. 5 7. July 2013 Video - Everything else
Would like to open bin/wad files found from a game 1 16. December 2012 PS2 - General discussion
AP25 cannot locate dae.bin file 3 3. December 2012 Xbox 360 - Modding & Hacking
Need Help With Converting Bin File to Iso For McBoot 2 23. April 2012 PS2 - DVD backup discussion
Problem burning psx backup (multitrack, bin/cue) 3 23. February 2012 PS2 - CD backup discussion
The xk3y team have defeated the new dae.bin issue 56 25. January 2012 Xbox 360 - Modding & Hacking
point me in the right direction of dae.bin 3 25. December 2011 Xbox 360 - Modding & Hacking
LT+ 3.0 coming - defeats AP2.5/dae.bin completely 14 20. November 2011 Xbox 360 - Modding & Hacking

 
afterdawn.com > forums > archived forums > cd-r > bin files
 

Digital video: AfterDawn.com | AfterDawn Forums
Music: MP3Lizard.com
Gaming: Blasteroids.com | Blasteroids Forums | Compare game prices
Software: Software downloads
Blogs: User profile pages
RSS feeds: AfterDawn.com News | Software updates | AfterDawn Forums
International: AfterDawn in Finnish | AfterDawn in Swedish | AfterDawn in Norwegian | download.fi
Navigate: Search | Site map
About us: About AfterDawn Ltd | Advertise on our sites | Rules, Restrictions, Legal disclaimer & Privacy policy
Contact us: Send feedback | Contact our media sales team
 
  © 1999-2025 by AfterDawn Ltd.

  IDG TechNetwork