VideoHelp.com Forum
+ Reply to Thread
Results 1 to 24 of 24
Thread
  1. Member
    Join Date: Oct 2003
    Location: Canada
    Ok, I have an that I would like to be able to listen to it in the car. But, it's just one big file.

    What program can I use to add "tracks / chapter points," so that I can fast forward to a particular part that I wish to listen to. I'm sure there is a program that can do this. I tried some searches but couldnt find anything.

    Thanks in advance for any advice and/or suggestions.

    LG
    Quote Quote  

  2. Always Watching guns1inger's Avatar
    Join Date: Apr 2004
    Location: Miskatonic U
    If this is for a CD, you need to split the tracks into seperate files, then burn. Sound Forge can do this automatically, and I'm sure some others can as well.
    Read my blogs here and here. Change England's Libel Laws - Sign Here
    Quote Quote  

  3. Member Cornucopia's Avatar
    Join Date: Oct 2001
    Location: E-Cnt. IL, USA (AGAIN!)
    If it's for CD, you DON'T need to split it into separate files.

    Let's say you've already got a CD with 1 LOONNNGGG track.

    Rip it to WAV (e.g. MyTrack.wav)

    Make Cue Sheet (e.g. MyCD.cue)

    Looks like this:
    Code:
    FILE “C:\MyTrack.wav” WAVE
      TRACK 01 AUDIO
        INDEX 01 00:00:00
    All you do is add additional Track #'s and Index 01's (and the time you want it).
    ***Note, make the times exact multiples of 1/75 sec so you won't get any tick sounds from padding of the sectors/frames.

    Now your Cue Sheet should look like this:
    Code:
    FILE “C:\MyTrack.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
    Reburn, and you're done!

    Scott
    Quote Quote  

  4. VH Veteran jimmalenko's Avatar
    Join Date: Aug 2003
    Location: Down under
    I'd rather make separate tracks. Audacity or goldwave should be able to help.
    If in doubt, Google it.
    Quote Quote  

  5. Member Sifaga's Avatar
    Join Date: Aug 2003
    Location: Melbourne, Australia
    I would fire up nero

    add the large audio file

    right click on it and go properties

    goto Indexes, Limits, Split

    add in where you want the audio split , then OK

    nero will split the file

    then change the pause between songs to zero
    Quote Quote  

  6. Member mats.hogberg's Avatar
    Join Date: Jul 2002
    Location: Sweden (PAL)
    Originally Posted by Sifaga
    I would fire up nero then change the pause between songs to zero
    Using that method, I always get a slight pause at the track joins, that I don'r get using the cue sheet method.

    /Mats
    Quote Quote  

  7. Member Sifaga's Avatar
    Join Date: Aug 2003
    Location: Melbourne, Australia
    Yes there is a slight pause,

    I think i will be checking out this cue method,

    Thanks Mats
    Quote Quote  

  8. Member Cornucopia's Avatar
    Join Date: Oct 2001
    Location: E-Cnt. IL, USA (AGAIN!)
    jimmalenko-

    separate tracks may or may not have pauses/gaps, that would still have to be set in the authoring/burning app. doing the cue sheet thing bypasses needing to SaveAs different sub-files. All you have to do is whip out a text editor and calculator and 3 minutes later (or less if you do it alot) you're ready to burn. What you'll end up with will be X # of tracks that all butt up back-to-back with each other with no pauses, gaps or ticks between. Accessible by track# and smooth when played all at once. I'm surprised someone hasn't created an app that automates this. Hmm... maybe someone has, I'll have to go looking now, for kicks.

    Scott
    Quote Quote  

  9. VH Veteran jimmalenko's Avatar
    Join Date: Aug 2003
    Location: Down under
    Originally Posted by Cornucopia
    separate tracks may or may not have pauses/gaps, that would still have to be set in the authoring/burning app. doing the cue sheet thing bypasses needing to SaveAs different sub-files. All you have to do is whip out a text editor and calculator and 3 minutes later (or less if you do it alot) you're ready to burn. What you'll end up with will be X # of tracks that all butt up back-to-back with each other with no pauses, gaps or ticks between. Accessible by track# and smooth when played all at once. I'm surprised someone hasn't created an app that automates this. Hmm... maybe someone has, I'll have to go looking now, for kicks.
    Thanks for the explanation, Scott. However for what I use the files for (convert to MP3 and use an MP3 Player), I prefer to split to separate tracks. Much of a muchness I know, but I'm happy with the way I do it now
    If in doubt, Google it.
    Quote Quote  

  10. cdwave. I've used it for years. It does nothing but split files. It is small and idiot proof. Freeware too....
    Quote Quote  

  11. Member mats.hogberg's Avatar
    Join Date: Jul 2002
    Location: Sweden (PAL)
    To (re)create those live albums, I use shntool (http://www.etree.org/shnutils/ or http://shnutils.freeshell.org). It creates a cue sheet from a set of wavs (cue *.wav) that it then can join (join *.wav) and then you're ready to burn with your fav burning app. (cdrdao write joined.cue)
    Nice & simple.

    /Mats
    Quote Quote  

  12. Member anubis13's Avatar
    Join Date: Mar 2003
    Location: ohio
    Try the Sonic Foundry CD Architect.
    it will let you put track commands anywhere in the file. great for turning concert DVDs into albums for your car.
    I'm not sure if sony picked it up but you could probably find a demo out there somewhere.
    drink up....the world's about to end
    Quote Quote  

  13. Member hech54's Avatar
    Join Date: Jul 2001
    Location: Yank in Europe
    CDWave here too.
    However some CD players cannot play home burned DAO(disc at once) Audio CD's.
    TAO(Track at once) discs usually have a slight pause between songs but are more compatible....especially with auto CD players.
    Just experiment a bit. If you are worried....copy the original .wav file so you can have a go at it again if you or your car's player don't like the results.
    I can do either with Roxio....after splitting it with CDWave.
    Quote Quote  

  14. If it's for CD, you DON'T need to split it into separate files.

    Let's say you've already got a CD with 1 LOONNNGGG track.

    Rip it to WAV (e.g. MyTrack.wav)

    Make Cue Sheet (e.g. MyCD.cue)

    Looks like this: Code:
    FILE “C:\MyTrack.wav” WAVE
    TRACK 01 AUDIO
    INDEX 01 00:00:00


    All you do is add additional Track #'s and Index 01's (and the time you want it).
    ***Note, make the times exact multiples of 1/75 sec so you won't get any tick sounds from padding of the sectors/frames.

    Now your Cue Sheet should look like this: Code:
    FILE “C:\MyTrack.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


    Reburn, and you're done!
    Hi cornucopia,
    How do you do this .cue file?
    How do you know what is the next track's time?
    Thank you.
    Quote Quote  

  15. Member mats.hogberg's Avatar
    Join Date: Jul 2002
    Location: Sweden (PAL)
    Originally Posted by judgmentday
    How do you know what is the next track's time?
    Thank you.
    Play it in any player (WinAmp) that's got a timer - make a note of where you want a chapter point.

    /Mats
    Quote Quote  

  16. Play it in any player (WinAmp) that's got a timer - make a note of where you want a chapter point.
    Thank you. I have now the chatper points or times, but how do I actually create this .cue sheet? Thank you.
    Quote Quote  

  17. Member Cornucopia's Avatar
    Join Date: Oct 2001
    Location: E-Cnt. IL, USA (AGAIN!)
    Cue sheets are just text files (as witnessed by the example posted).
    Open and edit with any text editor, or if you want a specialty editor that has parsing & validation for cue sheet standards built-in, get CDRCue.

    Scott
    Quote Quote  

  18. Cue sheets are just text files (as witnessed by the example posted).
    Open and edit with any text editor, or if you want a specialty editor that has parsing & validation for cue sheet standards built-in, get CDRCue.
    I created the text file but when I wanted to import it within EAC, this program would not see it or recognize it. I'll try CDRCue. Thanks Scott.
    Quote Quote  

  19. Member dphirschler's Avatar
    Join Date: Aug 2001
    Location: Kennesaw, GA - USA
    You can also add CD text (which will be visible on compatible players) in the Cue Sheet.

    Code:
    PERFORMER "Bon Jovi"
    TITLE "Nov.21.2004 - Atlantaic City, NJ"
    FILE "C:\CD_work\disc2.wav" WAVE
      TRACK 01 AUDIO
        TITLE "Wanted Dead or Alive"
        INDEX 01 00:00:00
      TRACK 02 AUDIO
        TITLE "Only In My Dreams"
        INDEX 01 05:59:54
      TRACK 03 AUDIO
        TITLE "I Get a Rush"
        INDEX 01 12:25:03
      TRACK 04 AUDIO
        TITLE "I'll Sleep When I'm Dead"
        INDEX 01 15:29:26
      TRACK 05 AUDIO
        TITLE "Bad Medicine"
        INDEX 01 20:30:49
      TRACK 06 AUDIO
        TITLE "Shout"
        INDEX 01 27:32:39
      TRACK 07 AUDIO
        TITLE "These Arms Are Open All Night"
        INDEX 01 40:32:45
      TRACK 08 AUDIO
        TITLE "Garageland"
        INDEX 01 46:42:54
      TRACK 09 AUDIO
        TITLE "Livin' on a Prayer"
        INDEX 01 50:51:35
    EAC (Exact Audio Copy) can also burn CDs from the cue sheet.


    Darryl
    Quote Quote  

  20. dphirschler,
    How do you input this cue sheet to EAC so one can work out of this cue sheet? Thanks.
    Quote Quote  

  21. Member Cornucopia's Avatar
    Join Date: Oct 2001
    Location: E-Cnt. IL, USA (AGAIN!)
    Open EAC, click on "Write CD" button or ALT+W. Opens CD layout tool.
    Load Cuesheet from within there.

    Scott
    Quote Quote  

  22. Open EAC, click on "Write CD" button or ALT+W. Opens CD layout tool.
    Load Cuesheet from within there.
    The problem is that the text file is not reachable thru the load cuesheet window. It seems that it has to have a .cue extension for EAC to see it.
    Quote Quote  

  23. I figured out.
    The text file has to be converted to a .cue file by changing its extension.
    So, actually EAC does NOT accept text files.
    Quote Quote  

  24. Member mats.hogberg's Avatar
    Join Date: Jul 2002
    Location: Sweden (PAL)
    A text file is a text file, no matter what its extension is. But you're correct - for this purpose, the text file has to have a .cue extension.

    /Mats
    Quote Quote  




Similar Threads

  1. Replies: 0
    Last Post: 9th Jul 2011, 01:52
  2. "Seamless" vob joining results in multiple audio tracks
    By grannyGeek in forum Authoring (DVD)
    Replies: 2
    Last Post: 3rd Mar 2009, 03:29
  3. Replies: 5
    Last Post: 8th Oct 2007, 08:59
  4. Staxrip: "Constant Quality" vs. "Exact File Size"
    By FallenAngelII in forum Video Conversion
    Replies: 1
    Last Post: 9th Aug 2007, 17:40
  5. Need To Create "Chapters" in Audio DVD
    By urdivine in forum Authoring (DVD)
    Replies: 6
    Last Post: 24th May 2007, 23:06
Search   Contact us   About   Advertise   Forum   RSS Feeds   Statistics   Tools