title
Products            Buy            Support Forum            Professional            About            Codec Central
 

Ripping CD Filename Extensions to .aiff

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • badmagic
    • Jul 2011
    • 2

    Ripping CD Filename Extensions to .aiff

    Hi all,

    I'm ripping CD's to AIFF and would like dBpowerAMP to name the files with a .aiff extension (as opposed to .aif).

    I've tried doing it through the Naming textbox like .[extension]f and just putting .aiff on the end but it just names them *.aif.aiff

    I know it's a nothing thing but the fact that I can't figure it out is really irking me.

    Is there a way to do it?

    TIA,
    Steve
  • Spoon
    Administrator
    • Apr 2002
    • 44098

    #2
    Re: Ripping CD Filename Extensions to .aiff

    No way you can get dBpoweramp to do this.
    Spoon
    www.dbpoweramp.com

    Comment

    • badmagic
      • Jul 2011
      • 2

      #3
      Re: Ripping CD Filename Extensions to .aiff

      Hi Spoon. Since posting, I've sort of come to the same conclusion (short of using a hex editor).

      Just in case anyone else finds this thread and wants some kind of solution, I wrote a batch file that recursively changes any *.ai* file extension to *.aiff. Here it is:

      -------------------8<-----------------------

      @echo off
      for /R . %%j in (.) do (
      if exist "%%j\*.ai*" ren "%%j\*.ai*" "*.aiff"
      )

      ------------------>8------------------------

      There, done!

      Thanks for the reply Spoon
      Last edited by badmagic; July 25, 2011, 12:59 AM.

      Comment

      Working...

      ]]>