VideoHelp Forum




+ Reply to Thread
Results 1 to 11 of 11
  1. Member
    Join Date
    Nov 2006
    Location
    United States
    Search Comp PM
    Hello,
    Is there a way to make these 2 to work together meaning have IMGBURN launch automatically right after ripping-encoding movie with DVDFAB?


    Just like DVDSHRINK works together with IMGBURN.


    Can it?

    Even with a setup done ?


    JC.
    Burning speed plus good quality is WHAT COUNTS!
    Quote Quote  
  2. Member
    Join Date
    Feb 2004
    Location
    Australia
    Search Comp PM
    You might want to check out autoit ... create a script that calls dvdfab , end of script includes detection of dvdfab exit , and launches imgburn , and loads default folder as used by dvdfab .

    http://www.autoitscript.com/autoit3/scite/

    It's a little tricky , but once the script has been created ... you never need do it again .

    Autoit forum is a very helpfull place for answer's to scripting ... just remember to be patient ...
    Quote Quote  
  3. Member
    Join Date
    Nov 2006
    Location
    United States
    Search Comp PM
    Originally Posted by Bjs
    You might want to check out autoit ... create a script that calls dvdfab , end of script includes detection of dvdfab exit , and launches imgburn , and loads default folder as used by dvdfab .

    http://www.autoitscript.com/autoit3/scite/

    It's a little tricky , but once the script has been created ... you never need do it again .

    Autoit forum is a very helpfull place for answer's to scripting ... just remember to be patient ...
    Is there any guide on how to create it with AUTOIT?

    Thanks a lot.


    More help is appreciated it.


    Other ways to do it besides these program?

    JC.
    Burning speed plus good quality is WHAT COUNTS!
    Quote Quote  
  4. Mod Neophyte redwudz's Avatar
    Join Date
    Sep 2002
    Location
    USA
    Search Comp PM
    Unless I missed something, you are planning to use ImgBurn to burn to a dual layer DVD disc? Because DVD Fab just decrypts, no encoding or transcoding involved and it will need DL media with most any commercial DVD to fit the video file onto a disc. If you want to fit the DVD video onto a regular single layer DVD-5 disc, you will need to compress or re-encode it first.
    Quote Quote  
  5. Banned
    Join Date
    Jun 2004
    Location
    ®Inside My Avatar™© U.S.
    Search Comp PM
    No, dvdfab decrypter just rips, dvdfab also transcodes/shrink's, removes extra audio ect. just like dvd shrink 8)
    But i know dvdfab platinum will also burn back to dvdr's but i don't know for sure about dvdfab ?

    Funny, dvdfab has a photo of dvdfab platinum on the tools page 8)

    I just looked and it allows you to choose between these two options for burning,


    But i wonder if you can't set it up somehow without an external program to burn with imgburn ?
    Quote Quote  
  6. Mod Neophyte redwudz's Avatar
    Join Date
    Sep 2002
    Location
    USA
    Search Comp PM
    I apologize. I made the assumption that the OP was referring to DVDFab Decrypter, not DVDFab.
    Quote Quote  
  7. Banned
    Join Date
    Jun 2004
    Location
    ®Inside My Avatar™© U.S.
    Search Comp PM
    Originally Posted by redwudz
    I apologize. I made the assumption that the OP was referring to DVDFab Decrypter, not DVDFab.
    Yeah i guessed that
    He may have been ?
    If i had a nickel for everytime i saw someone type the wrong name about the dvdfab products
    Quote Quote  
  8. Member
    Join Date
    Nov 2006
    Location
    United States
    Search Comp PM
    Originally Posted by Noahtuck
    No, dvdfab decrypter just rips, dvdfab also transcodes/shrink's, removes extra audio ect. just like dvd shrink 8)
    But i know dvdfab platinum will also burn back to dvdr's but i don't know for sure about dvdfab ?

    Funny, dvdfab has a photo of dvdfab platinum on the tools page 8)

    I just looked and it allows you to choose between these two options for burning,


    But i wonder if you can't set it up somehow without an external program to burn with imgburn ?
    I know what you are saying but is there any option to put those 2 together to work-launch(DVDFAB - IMGBURN)?
    Like DVDSHRINK finishes then IMGBURN takes over right away.

    Let me know please....So you all know DVDFAB does do the encoding, shrinking-transcoding quicker than DVD REBUILDER, DVDSHRINK or DVD DECRYPTER, or all else.

    Reason why I would like to know if its possible to put those 2 as a team, IMGBURN is an awesome burner, faster.


    JC.
    Burning speed plus good quality is WHAT COUNTS!
    Quote Quote  
  9. Member
    Join Date
    Feb 2004
    Location
    Australia
    Search Comp PM
    I kind of took a stab at it ... so it was a flying guess but they wanted a way of managing two products with little user input .

    As for a guide using autoit ... your asking abit there as I havent used it in a while (9 months or so) ... but the script isnt that hard to create ... as for the "program exit's ... next is called" part ... it's available in the autoit forum ... just use search .

    Here is something of interest that a user requested ... knowing when one exits , another starts ... there are many example's and user's request's with responses ... it's a mater of digging for the info or playing with the script's yourself ... but to start you off :

    http://www.autoitscript.com/forum/index.php?showtopic=37635&hl=program+exit

    Mentions clonedvd in the lower part of the script ... last post ...

    If I get a little time soon (rebuilding bathroom / laundry) ... I'll have a quick run at it as I just downloaded the updated version's ... and I'll have a stab at it tonight before bed as I have both of the programs you asked about .

    Sci is the auto part ... recorder ... records your activity ... you then make adustments to the script until it's perfect .for your need's .

    I did create a script for vobedit for inserting button locations and stuff a while back ... it's in the computer section ... some where .

    Anyway ... I'll have a crack at it later and see what I can come up with ...
    Quote Quote  
  10. Member
    Join Date
    Feb 2004
    Location
    Australia
    Search Comp PM
    Here's a quick method ... simple stuff .

    Install autoit , and sci .

    Go to where the autoit's example's are , and copy anyone of them to my documents for now .

    Run sci , and open that example , now in my documents .
    Now clear everything in it , and dump this in its place .



    ;call dvdfab ... in this case its platinum

    $PID = Run('C:\Program Files\DVDFab Platinum 3\DVDFabPlatinum.exe')
    WinWaitActive("")
    Do
    Sleep(10)

    ; your code here ... who cares now ... it works

    Until Not ProcessExists($PID)

    ; next ... call imgburn

    $PID = Run('C:\Program Files\ImgBurn\ImgBurn.exe')
    WinWaitActive("")
    Do
    Sleep(10)

    ; your code here ... who cares for now ... it works

    Until Not ProcessExists($PID)




    Then go to file , save as ... give it a name YOU will remmeber easily .
    Reopen script now with new name , go to tools , compile script .

    To turn it into an exe , go to start , program files , autoit v3 , and run "compile script to .exe"

    Sellect the au3 file you created .
    Sellect output folder ... desktop for easy find .
    And wait a second or so ... your done .

    -------------------------------------------

    A simple method to controling app's in a specified order .

    I'll see if imgburn will accept some default input's later ...

    Enjoy ... the executable is about 380kb's .
    Quote Quote  
  11. Member
    Join Date
    Nov 2006
    Location
    United States
    Search Comp PM
    Originally Posted by Bjs
    Here's a quick method ... simple stuff .

    Install autoit , and sci .

    Go to where the autoit's example's are , and copy anyone of them to my documents for now .

    Run sci , and open that example , now in my documents .
    Now clear everything in it , and dump this in its place .



    ;call dvdfab ... in this case its platinum

    $PID = Run('C:\Program Files\DVDFab Platinum 3\DVDFabPlatinum.exe')
    WinWaitActive("")
    Do
    Sleep(10)

    ; your code here ... who cares now ... it works

    Until Not ProcessExists($PID)

    ; next ... call imgburn

    $PID = Run('C:\Program Files\ImgBurn\ImgBurn.exe')
    WinWaitActive("")
    Do
    Sleep(10)

    ; your code here ... who cares for now ... it works

    Until Not ProcessExists($PID)




    Then go to file , save as ... give it a name YOU will remmeber easily .
    Reopen script now with new name , go to tools , compile script .

    To turn it into an exe , go to start , program files , autoit v3 , and run "compile script to .exe"

    Sellect the au3 file you created .
    Sellect output folder ... desktop for easy find .
    And wait a second or so ... your done .

    -------------------------------------------

    A simple method to controling app's in a specified order .

    I'll see if imgburn will accept some default input's later ...

    Enjoy ... the executable is about 380kb's .
    I get it, but here is what I need: please...HIGHLIGHTED

    You said:
    Install autoit , and sci . <<<where do I get SCI?

    Go to where the autoit's example's are , and copy anyone of them to my documents for now .

    Run sci , and open that example , now in my documents .
    Now clear everything in it , and dump this in its place .<<<dump what in its place?



    ;call dvdfab ... in this case its platinum

    $PID = Run('C:\Program Files\DVDFab Platinum 3\DVDFabPlatinum.exe')
    WinWaitActive("")
    Do
    Sleep(10) <<<you mean type in all starting from $PID to SLEEP(10)?

    ; your code here ... who cares now ... it works <<<which code?

    Until Not ProcessExists($PID) <<<this will say or pop up once I enter the code?

    ; next ... call imgburn

    $PID = Run('C:\Program Files\ImgBurn\ImgBurn.exe')
    WinWaitActive("")
    Do
    Sleep(10)

    ; your code here ... who cares for now ... it works

    Until Not ProcessExists($PID) <<<I will get all this if you please explain the above points.?


    Then go to file , save as ... give it a name YOU will remmeber easily .
    Reopen script now with new name , go to tools , compile script .

    To turn it into an exe , go to start , program files , autoit v3 , and run "compile script to .exe"

    Sellect the au3 file you created .
    Sellect output folder ... desktop for easy find .
    And wait a second or so ... your done .
    Burning speed plus good quality is WHAT COUNTS!
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!