Use automator to rip all videos from DVD

I have set up a workflow in automator to extract a video from an archival DVD. However, the program is only ripping ONE file when there should be 4-5 files on there. Any ideas? I am running this process on Mountain Lion.

Hi guys,
A few months ago I started using a program called DVD Ripper Platinum for PC and it has been the best software for ripping and encoding to several formats.  What sold me is that it is extremely easy (2-3 clicks) and it rips ALL commercial dvds (even Disney ones with the new protection). 
There is a mac version of the software, but I have not used it.  The only think I have observed is that is lacking some minor features that the PC version has.
Here is the link:
http://www.flash-video-soft.com/dvd-ripper-mac/
Its not free, but I can assure that if it works just like it does in the PC, its worth every penny.
I'm planning on using the PC version (since I already bought it, not buying it twice!) in a mac mountain lion running parallels 6.

Similar Messages

  • Ripping video from DVDs for FCP

    I want to create an assignment for students (I teach a very basic video editing ocurse) where students will rip some video from various commercially available DVDs to practice editing their own trailers together with scenes from the movies. In the educational environment it is legal to rip short clips of video from DVDs.
    I think I'm going to use MPEG Streamclip for doing this
    1. Does anyone have any tips for preparing ripped footage to make sure it looks good in a FCP sequence? Is there anything you should do with the footage in FCP to make it look good?
    Thanks.

    David is right. MPEG Streamclip will not rip commercial DVDs.
    It may well be legal in education to rip discs, however discussion of the process is not permitted here.
    Once you have that aspect sorted out...
    I have a tutorial for MPEG Streamclip here: http://www.secondchairvideo.com/?p=739

  • Using Automator to create a "video server"

    I'm looking to turn an Xserve into a video server for a digital signage situation. I know I can use Automator to open a video file in Quicktime and automatically play it full screen, however, is it possible to do the following with automator (or in some other easy fashion):
    1. Have it go into a designated folder and open up the video file in that folder no matter what the files name is. (So I can update the video content monthly and just copy the new file into the folder and not have to change anything in the Automator script. I could always give the file the exact same name every month, but it would be nice if I didn't have to.).
    2. Automatically run the Automator script on system boot - so we can boot up the Xserve in the morning with 1 button and once the OS is up it automatically starts playing the video file.
    3. Last, (and this is probably the hard one), any thoughts on a way I can get the server to play a file to its end, and then check and see if there is a newer file present before looping? If not, it continues looping the same file, if so, it begins looping the new file instead? I'm guessing this would be more of an Applescript thing than Automater? This would be for a "content update while playing" situation.
    I may not even mess with number 3, but the first two are a must. I'm not asking that you take time to develop working code for all the above, just letting me know that I can do it and whether I should be looking at Automater or Applescript for certain functionality would be fine and I can further research from there.
    Thank you.
    Don Hertz

    1. In the Finder actions you will need:
    - Get Specified Finder Items, and point it towards the folder that will contain the movie.
    - Get Folder Contents - to get what's inside the folder.
    - Filter Finder Items - set to filter by 'Name Extension' 'Is equal to' 'mov' and make sure all your video files have the right extension...
    - Open Finder Items - in QT Player - note that this might cause problems if there are multiple files in the folder...
    Then from the QT Player actions:
    - Play Movies.
    2. Save As... Application, then after saving, drag the app into the login items for the user account.
    3. That's going to need some AppleScript, but this thread should get you started:
    http://discussions.apple.com/thread.jspa?threadID=455825&tstart=0
    Ian

  • How can I use Automator to extract specific Data from a text file?

    I have several hundred text files that contain a bunch of information. I only need six values from each file and ideally I need them as columns in an excel file.
    How can I use Automator to extract specific Data from the text files and either create a new text file or excel file with the info? I have looked all over but can't find a solution. If anyone could please help I would be eternally grateful!!! If there is another, better solution than automator, please let me know!
    Example of File Contents:
    Link Time =
    DD/MMM/YYYY
    Random
    Text
    161 179
    bytes of CODE    memory (+                68 range fill )
    16 789
    bytes of DATA    memory (+    59 absolute )
    1 875
    bytes of XDATA   memory (+ 1 855 absolute )
    90 783
    bytes of FARCODE memory
    What I would like to have as a final file:
    EXCEL COLUMN1
    Column 2
    Column3
    Column4
    Column5
    Column6
    MM/DD/YYYY
    filename1
    161179
    16789
    1875
    90783
    MM/DD/YYYY
    filename2
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    MM/DD/YYYY
    filename3
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    Is this possible? I can't imagine having to go through each and every file one by one. Please help!!!

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • HT201068 why all videos from Chinese websites cannot be opened after the update??

    why all videos from Chinese websites cannot be opened after the Remote Desktop Client Update 3.8.2 v1.1??

    That's not a thing that can happen.  Your problem with videos is unrelated to the Remote Desktop Client Update 3.8.2 v1.1.
    There were several OS updates recently as well, which could have affected video playback though.
    What application do you use to play the videos?
    Are the videos streaming from the internet or are they downloaded first and then played?
    what format are the videos?  what file extension?

  • Import Video from DVD

    When I import a 3-minute video from DVD into my project, it shows up as a single photo of the 1st frame. When I preview it, the entire video play fine. Question: How do I display it such that I can see ALL of the frames in the video? … or is it NOT possible. Thank you.

    Also Read Bill Hunt on editing a VOB/MPG file
    http://forums.adobe.com/thread/464549?tstart=0
    Edit Vob http://premierepro.wikia.com/wiki/FAQ:How_do_I_import_VOB_files_/_edit_a_DVD%3F

  • When I first turned on iMovie all videos from iPhoto automatically were found. Now I have more videos on iphoto, how do I get iMovie to find the new ones?

    When I first turned on iMovie all videos from iPhoto automatically were found. Now I have more videos on iphoto, how do I get iMovie to find the new ones?

    jtcollins wrote:
    if iMovie is open, connect your iPhone to comp. iMovie '11 will now find your phone and look for videos as it would if camera was connected
    (Underline is my emphasis)    
    Hi jt - Alex was actually referring to video clips in iPhoto not appearing in the item "iPhoto Videos" in the Events Library in iMovie - thanks for your post though (the 2 words are very similar).
    John

  • The BEST format to use with iDVD is .DV video from QT Pro ?

    The BEST format to use with iDVD is .DV video from QT Pro ?
    Hi Jon
    If you remember my video (640x480) NTSC in iMovie Project.
    Someone told me that exporting movie to DV video QT from iMovie share option, for burning in iDVD, is the best quality possible.
    Is this true ?
    If so what are the parameters ? Again is for seeing in a widescreen TV

    Someone told me that exporting movie to DV video QT from iMovie share option, for burning in iDVD, is the best quality possible.... Is this true ?
    As usual, this is really a matter of individual opinion. I personally prefer the Apple Intermediate Codec (AIC). It is newer codec specifically designed for use as an "intermediate" editing compression format. It is slightly more efficient than DV-25 (18-20 Mbps for audio + video vs. 28.5 Mbps) and is less restrictive (i.e.,the user has more control over certain settings). On the other hand, the very nature of having a highly standardized (few user option) compression format does appeal to many users since there are fewer things the user can mess up.
    If so what are the parameters ? Again is for seeing in a widescreen TV
    Bit rate, frame rate, and encoding dimensions are part of the standard and do not have user parameters as such other than selecting the NTSC or PAL standard. With regard to the aspect ratio, you simply select which you want to use—4:3 or 16:9. However, as I've previously mentioned, it is possible to distort your output by either entering the wrong aspect or to actually "lose" the embedded flag/value in some work flows. (I.e., a 4:3 aspect movie displayed at 16:9 makes the people an objects appear short and fat while encoding a 16:9 aspect movie as 4:3 will make them look tall and skinny.) Movies should always be encoded in their original aspect ratio since any modern digital TV will allow the user to disport—i.e., force a 4:3 file to fully fill a 16:9 display screen. In fact, some will even allow you to spread the distortion evenly across your screen or to the spread it proportionally. (On my set these features are called "H-Fill" and "Justify" respectively.) If you were to use the AIC video compression format rather than DV, then you would have to manually enter the display dimensions for the "standard" and/or "definition" format you are targeting.

  • Playing video from dvd are getting slow

    playing video from dvds are getting slow

    Hi bwl,
    get for 20$ the Apple mpeg2 plugin
    and for free the tool Streamclip for converting mp1/2/4, divx, avi, vob...
    http://danslagle.com/mac/iMovie/tips_tricks/6010.shtml
    http://danslagle.com/mac/iMovie/tips_tricks/6018.shtml
    but, as catspaw mentioned: quality is MUCH better, if you record your VHS onto miniDV tape and proceed as usual....

  • I have 3 ipads with ipad 1 and 4 i can see near all videos from facebook but on the ipad 2 is asking for adobe flash player and its the same video that i watch on the other ipads ! Any help please

    I have 3 ipads with ipad 1 and 4 i can see near all videos from facebook but on the ipad 2 is asking for adobe flash player and its the same video that i watch on the other ipads ! Any help please

    Adobe has not made a version of Flash for the iPad.
    Kappy explains why. https://discussions.apple.com/message/19446567#19446567
    5 Flash Player Alternatives http://www.techshout.com/features/2011/01/flash-player-for-ipad-apps/
    Top 4 browsers supports flash player on iPad and iPhone
    http://mashtips.com/flash-player-ios/
     Cheers, Tom

  • All videos are literally cut in halves, they are separated by a green horizontal line. all videos from well known sites.

    all videos are literally cut in halves, they are separated by a green horizontal line. all videos from well known sites.

    Disable the hardware acceleration in the Flash Player.
    See [[Cannot view full screen Flash videos]]
    * http://www.youtube.com/swf_test.html (right-click the player: Settings)
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

  • Can I use imovie to download a video from youtube and then copy it to a dvd?

    I need to download a video from youtube for church on Sunday and wondered if I can do it using the imovie app? If not, does anyone know how to do this?
    Thanks!

    just drag 'n drop your jpg and your mp3 into the timeline of your Project - done.
    Depending on what version of iM you're using, you can directly upload from within iMovie, or you have to export first, then use YT's upload web interface ...
    in case you own a licence of Quicktime Pro,  open a jpg with it, open in a 2nd window your mp3, select all, copy, paste to picture - done .. no 'fullsize editor' needed.

  • Extracting Video from DVD?

    A while ago I converted all of my family VHS tapes to DVD. However, I would now like to go back and add photos and new menus to the video. What is the easiest way to extract the content from my current DVDs (containing old menus and video footage) so that I can use it in DVDSP to burn new DVDs.
    I would like to keep the video in a burnable format (like MPEG2) so I don't have to transcode it too many times and definitely want to keep the chapter markers in place. If it helps-- I edited with FCS and burned with DVDSP.
    Thanks for any help.

    I suggest to different methods. A cheap method is to download handbrake and rip the dvd using h.264 to get maximum quality. You can find handbrake by google.
    The second is a lot better. Hook a dvd player up using a converter box, like a pyro, that converts a composite or component signal to firewire. Create an easy setup for an uncontrollable device. Then log and capture it into final cut pro with that easy setup. It is simple to do, gives you a great image and opens the door to many other projects later down the road. VHS, Laser Disk, DVD conversion, etc. Could be a money maker in a lot of areas.
    David

  • Importing Video from DVD to Edit in iMovie?

    I need to import video from a DVD to edit in iMovie. What's the best way to go about this?
    Thanks,
    Ted
    MacBook   Mac OS X (10.4.6)   Also own an iBook, G3 500mhz, 10gb drive

    DVDs are in a socalled delivery format (mpeg2), which isn't meant and made for any processing as editing...
    for using the iLife apps, you have to convert'em first, in recommended order, choose one of the following tools/workarounds:
    * DVDxDV (free trial, 25$, Pro: 90$)
    * Apple mpeg2 plugin (19$) + Streamclip (free)
    * Cinematize >60$
    * Mpeg2Works >25$ + Apple plug-in
    * Toast 6/7/8 allows converting to dv/insert dvd, hit apple-k
    * connect a miniDV Camcorder with analogue input to a DVD-player and transfer disk to tape/use as converter
    none of these apps override copyprotection mechanisms as on commercial dvds...
    http://danslagle.com/mac/iMovie/tips_tricks/6010.shtml
    http://danslagle.com/mac/iMovie/tips_tricks/6018.shtml

  • Video from DVD imported into iMovie

    I have a DVD with a short movie on it (someone else burned the DVD for me) and I want to take the video from that DVD and import it into iMovie so that I can add music, titles, etc. How do I go about doing this? Thanks for your help and have a great day.

    How can I edit MPEG or convert DVD or MPEG to DV
    http://www.sjoki.uta.fi/%7Eshmhav/SVCDon_a_Macintosh.html#edit_convertMPEG
    Using MPEG or DVD footage
    http://www.danslagle.com/mac/iMovie/tips_tricks/6010.shtml
    MPEG Streamclip
    http://www.alfanet.it/squared5/mpegstreamclip.html
    MPEG-2 Playback
    http://www.apple.com/quicktime/mpeg2/
    Sue
    PS. Please do not violate any copywrite laws.

Maybe you are looking for

  • IMac no longer connects to Wi-Fi on startup or after manual sleep

    Hello folks, I need some suggestions. Here is a description of the problem (as brief as possible): My late '09 21.5" iMac spur-of-the-moment didn't connect to my wireless network on a random day (2 or so weeks ago). I thought nothing of it, until I n

  • Bit of a Newbie Question

    I have been running a Mirror Door G4 for about a year now and have done a fair bit of work with it. however reading around it seems that the model I have should have dual 1.25Ghz processors, however in the hardware overview it indicates that there is

  • Plz plz help me in my project

    Hi all plz help with this question,if i had asimpl jsp file containing the following code: <html> <body> <form method="get" action="second.jsp"> <input type="text" name="name"> <input type="text" name="age"> <input type="submit" name="submit"> </form

  • In SSL Handshake : failed extension check error

    Hi all, Could anyone help in this? Im facing a problem in SSL handshaking using JSSE, J2SDK1.4. The CertificateException message is : Invalid Netscape CertType extension for SSL client And the source of error is : failed extension check The following

  • Changing color in JTable objects

    Hi all, I'm writing an application which shows tabular view of events of some outcome. Now I want to give color to each row depending on the severity of particular parameters in the table. I've written application using swings and using components JT