Announcement

Collapse
No announcement yet.

Batch CMD -Fulldisk ISO to Main Movie ISO

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

    Batch CMD -Fulldisk ISO to Main Movie ISO

    Hello don't know if this would be the best place to post this. I have been reading up on the batch cmd features in DVDfad and truthfully it is way above my head. I have been able to get some of the iso to mobile batch cmds running but making them myself is a no go.

    I was wondering if anyone could make me a batch cmd that would allow me to convert all my "Full Disk" DVD9 iso's to "Main Movie" DVD9 iso's with certain feature's excluded such as "no sub pictures" and only the "English audio AC-3/5.1
    " files?

    Hopefully I'm making sense any help would be appreciated.

    #2
    set DVDSOURCE=D:\Test\DVD\
    set DESTDIR=D:\ISO
    set DVDFAB="C:\Program Files (x86)\DVDFab 8 QT\DVDFab.exe"
    set DESTTYPE=iso
    set MODE="DVDMAINMOVIE"
    rem Following must be one line. No carriage returns.
    for /R %DVDSOURCE% %%X in (*.iso) do (
    if not exist "%DESTDIR%\%%~nX.%DESTTYPE%" (
    %DVDFAB% /MODE "%MODE%" /SRC "%%X" /DEST "%DESTDIR%\%%~nX.%DESTTYPE%" /OUTDISC "DVD9" /SILENT /CLOSE
    ) else (
    echo "Exists %DESTDIR%\%%~nX.%DESTTYPE%"
    )
    )

    And you could set subtitle and audio tracks in Common Settings.

    Hope this help you!

    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


      #3
      Cool thanks I'll give her try when I home.



      I just looked over settings didn't realize that the streaming settings would do that LOL thought it was for something else thanks again for the education and help.
      Last edited by killerapplesauce; 12-19-2011, 07:44 PM.

      Comment


        #4
        You Sir are awesome!

        Have her up and running without a hitch thx again for the help.

        Comment


          #5
          Originally posted by Wilson.Wang View Post
          set DVDSOURCE=D:\Test\DVD\
          set DESTDIR=D:\ISO
          set DVDFAB="C:\Program Files (x86)\DVDFab 8 QT\DVDFab.exe"
          set DESTTYPE=iso
          set MODE="DVDMAINMOVIE"
          rem Following must be one line. No carriage returns.
          for /R %DVDSOURCE% %%X in (*.iso) do (
          if not exist "%DESTDIR%\%%~nX.%DESTTYPE%" (
          %DVDFAB% /MODE "%MODE%" /SRC "%%X" /DEST "%DESTDIR%\%%~nX.%DESTTYPE%" /OUTDISC "DVD9" /SILENT /CLOSE
          ) else (
          echo "Exists %DESTDIR%\%%~nX.%DESTTYPE%"
          )
          )

          And you could set subtitle and audio tracks in Common Settings.

          Hope this help you!

          Wilson
          Hallo Wilson.Wang,

          I cannot test it, but for the people who are running Windows XP
          And don’t know much, I think they have to chance the next line:

          set DVDFAB="C:\Program Files (x86)\DVDFab 8 QT\DVDFab.exe"
          to
          set DVDFAB="C:\Program Files\DVDFab 8 QT\DVDFab.exe"
          to let it work for them.

          I am sorry if I am wrong.

          Greetings
          Timothy Arens
          ----------------------------------------------------------------------------------------------------------
          Searching for yourself is a lifetime journey.
          Life is what happens in between.
          ----------------------------------------------------------------------------------------------------------

          Comment


            #6
            set DVDSOURCE=D:\Test\DVD\
            This is source folder.
            set DESTDIR=D:\ISO
            This is output folder.
            set DVDFAB="C:\Program Files (x86)\DVDFab 8 QT\DVDFab.exe"
            This is DVDFab installation folder.

            Chang them just according your settings.

            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

            Working...
            X