Bin files

Discussion in 'CD-R' started by Zeroeffet, Jul 28, 2004.

  1. Zeroeffet

    Zeroeffet Guest

    Anyone know where to Burn bin files got any programs that will ?
     
  2. Zeroeffet

    Zeroeffet Guest

    i downloaded Nero but its says that i have to buy it
     
  3. aldaco12

    aldaco12 Active member

    Joined:
    Nov 6, 2002
    Messages:
    2,544
    Likes Received:
    0
    Trophy Points:
    66
    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

    _
    _X_X_X_X_X_[small]Read forum rules!
    http://forums.afterdawn.com/thread_view.cfm/2487[/small]
     
    Last edited: Jul 29, 2004

Share This Page