Announcement

Collapse
No announcement yet.

DVD Copy Folder to ISO

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    DVD Copy Folder to ISO

    I Have many DVDs on my Hard Drives in the regular DVD folder format (AUDIO_TS and VIDEO_TS) and I would like to convert them to a ISO image. I understand I can do them one by one but can anyone help me with a batch file to do multiple folders please.

    I am Using DVDFAB Licensed 8.1.2.6, soon to upgrade to 8.1.3.2 and Windows 7. I have used other batch files supplied to create AVI and MKV files with success, but understanding them is another matther. Any help greatlr appreciated.

    #2
    Hi,
    DVDFAB.EXE /MODE "dvdwritedata" /SRC "D:\DVD\FullDisc\CARS" /DEST "d:\ISO\cars.iso" /SILENCE /CLOSE
    Please copy my quoted to a .bat file and copy it to DVDFab installation folder. Of couse, you need to do some modify for it.
    1. Open it with Notepad.
    2.
    "D:\DVD\FullDisc\CARS"
    this is your DVD source folder.
    3.
    "d:\ISO\cars.iso"
    This is your output folder and created ISO name.

    Please take two cases and have a try!
    Hope this help you!

    Wilson
    Last edited by Wilson.Wang; 11-03-2011, 08:15 AM.
    Please post your logs the default location is:
    For DVDFab 13: C:\Users\User Name\My Documents\DVDFab\DVDFab13\Log
    For StreamFab: C:\Users\User Name\My Documents\DVDFab\StreamFab\log
    Please use attachment button and attach your most recent, Internal log and post right here.
    If it's the burning issue, please also attach burn log.

    Thanks!

    Comment


      #3
      Many Thanks for you response. I will give it a go. Have been slack in getting back on to the system, but tomorrow seems a high priority. Once again I thank you

      Comment


        #4
        Thanks Wilson, I have had a chance to use the command line fine, now I am trying to loop it to run through a directory of dvd's. The following Batch file goes as far as starting dvd fab, biut not completing the source file name for the final iso image. Hope you are able to show me where I am going wrong. I sincerely appreciate you help


        Arthur
        Code:
        set DVDSOURCE=C:\Users\Arthur\Videos\New\DVD
        set DESTDIR=C:\Users\Arthur\Videos\New\ISO
        set DVDFAB="C:\Program Files (x86)\DVDFab 8 QT\DVDFab.exe"
        set DESTTYPE=iso
        set MODE="DVDWRITEDATA"
        rem Following must be one line.  No carriage returns.
        for /d %%X in ("%DVDSOURCE%\*") do (if not exist "%DESTDIR%\%DESTSUBDIR%\%%~nX.%DESTTYPE%" (%DVDFAB% /MODE %MODE% /SRC "%%X" /DEST "%DESTDIR%" /SILENT /CLOSE) else (echo "Exists %DESTFILES%\%DESTSUBDIR%\%%~nX.%DESTTYPE%"))
        Last edited by Complication; 11-26-2011, 03:48 PM. Reason: add code tags

        Comment


          #5
          roodog46,

          This should work:
          Code:
          set DVDSOURCE=C:\Users\Arthur\Videos\New\DVD
          set DESTDIR=C:\Users\Arthur\Videos\New
          set DESTSUBDIR=ISO
          set DVDFAB="C:\Program Files (x86)\DVDFab 8 QT\DVDFab.exe"
          set DESTTYPE=iso
          set MODE=DVDWRITEDATA
          rem Following must be one line. No carriage returns.
          for /d %%X in ("%DVDSOURCE%\*") do (
          if not exist "%DESTDIR%\%DESTSUBDIR%\%%~nX.%DESTTYPE%" (
          %DVDFAB% /MODE "%MODE%" /SRC "%%X" /DEST "%DESTDIR%\%DESTSUBDIR%\%%~nX.%DESTTYPE%" /SILENT /CLOSE
          ) else (
          echo "Exists %DESTDIR%\%DESTSUBDIR%\%%~nX.%DESTTYPE%"
          )
          )
          Kevin
          Last edited by Complication; 11-26-2011, 03:49 PM. Reason: add code tags

          Comment


            #6
            Hi roodog46,
            It's rigth as k1lv9h said. The bat file is so good!

            Wilson
            Please post your logs the default location is:
            For DVDFab 13: C:\Users\User Name\My Documents\DVDFab\DVDFab13\Log
            For StreamFab: C:\Users\User Name\My Documents\DVDFab\StreamFab\log
            Please use attachment button and attach your most recent, Internal log and post right here.
            If it's the burning issue, please also attach burn log.

            Thanks!

            Comment


              #7
              Many thanks for the replies and once again for my late thanks to you I apolagise. Have just returned to the country having had an enjoyable cruise, but I really do appreciate your responses.


              roodog46

              Comment

              Working...
              X