Announcement

Collapse
No announcement yet.

command line differences making it not work for 9 when it works for 8

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

    command line differences making it not work for 9 when it works for 8

    I'm using this batch script from version 8, but when I run with version 9 the result is that is scans for the disc and then seems like its going to start, but then the version 9 app just dies. no message.

    set dest=z:\movies
    set target=z:\movies
    set program=C:\Program Files (x86)\DVDFab 9\
    REM 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%)"

    REM GRAB MOVIE FROM DVD and put in library folder

    "%program%dvdfab.exe" /mode "mainmovie" /src "e:\" /dest "%dest%\%show% (%year%)\%show% (%year%).iso" /DISPLAYFORCEDSUB "Yes" /Title "auto" /removepgc "yes" /outdisc "DVD9"

    #2
    Originally posted by goonie View Post
    I'm using this batch script from version 8, but when I run with version 9 the result is that is scans for the disc and then seems like its going to start, but then the version 9 app just dies. no message.

    set dest=z:\movies
    set target=z:\movies
    set program=C:\Program Files (x86)\DVDFab 9\
    REM 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%)"

    REM GRAB MOVIE FROM DVD and put in library folder

    "%program%dvdfab.exe" /mode "mainmovie" /src "e:\" /dest "%dest%\%show% (%year%)\%show% (%year%).iso" /DISPLAYFORCEDSUB "Yes" /Title "auto" /removepgc "yes" /outdisc "DVD9"
    Hi goonie,

    The command line works perfectly without parameter /Title "auto".

    I will report this issue to our developer.

    Thank you very much for the feedback.
    User Manual for DVDFab v10 (pdf)

    DVDFab log default location:
    For Windows: C:\Users\User Name\Documents\DVDFab10\Log
    For Mac: Finder> Documents> DVDFab10> Log

    DVDFab Player 5:
    For Windows:C:\Users\User Name\Documents\DVDFab Player 5\Log

    Comment


      #3
      problem appears to be due to launching multiple instances with different batch files.

      I've noticed that when launching using a batch file and the following script it will use "DVD_Volume" as the Name. Then launching a second batch file specifying a different DVD and DVD drive it will use the same Name. That seems to be part of the problem with launching the app using two different batch scripts (each pointing to a different DVD drive and dvd. This method works with version 8, but not with 9.1.4.6

      Script one.bat---

      set dest=z:\movies
      set program=C:\Program Files (x86)\DVDFab 9\
      REM 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 "%dest%\%show% (%year%)"

      REM GRAB MOVIE FROM DVD and put in library folder

      "%program%dvdfab.exe" /mode "mainmovie" /src "d:\" /dest "%dest%\%show% (%year%)\%show% (%year%).iso" /DISPLAYFORCEDSUB "Yes" /removepgc "yes" /outdisc "DVD9" /close

      Comment

      Working...
      X