Announcement

Collapse
No announcement yet.

DVD Copy and Rip

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

    DVD Copy and Rip

    Is it possible to rip a dvd to ipad format, and after the ripping has finished start a full DVD copy, without choosing the programs on their own?

    EEM

    Thanks

    #2
    No.... Unless you get proficient with the command line prompts.
    "Beer is living proof that God loves us and wants us to be happy." - Benjamin Franklin 1706-1790

    Comment


      #3
      converting and ripping using command lines.

      Sure there is.... Just need to use some batch scripting....you can make it prompt for the movie title and year and then just run the script each time you put a new disc in the dvd drive...here's a example:

      The example below creates a custom folder for the movie destination based on the name and year. Then it rips the movie only (not the disc) to ipad mpg4 and then finishes and runs again ripping the full disc to .iso format. The output could easily be set to other types destination.

      **NOTE Even as of 8/3 I use version 8 because version 9 seems very buggy with command line processes.

      set dest=z:\movies
      set program=C:\Program Files (x86)\DVDFab 8 QT\
      Set /P year=Enter film year^>
      Set /P show=Enter film name^>


      REM CREATE LIBRARY FOLDER

      mkdir "%target%\%show% (%year%)"

      "%program%dvdfab.exe" /mode "dvdipod" /src "f:\" /dest "%dest%\%show% (%year%)\%show% (%year%).mpeg4" /DISPLAYFORCEDSUB Yes /Title auto /removemenu yes /removepgc yes /outdisc dvd9

      "%program%dvdfab.exe" /mode "full" /src "f:\" /dest "%dest%\%show% (%year%)\%show% (%year%).iso" /DISPLAYFORCEDSUB Yes /Title auto /removemenu yes /removepgc yes /outdisc dvd9 /close

      Comment


        #4
        You can in the GUI also if you set the queue for it. Take a look at the attachments.
        Attached Files
        How to post the internal log


        Things should be made as simple as possible, but no simpler.
        Albert Einstein

        Comment

        Working...
        X