How to capture parts of a DVD-Video ?

Is it something I do from premiere ? how ?
Thanks !

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
Tools to Convert to DV-AVI http://forums.adobe.com/thread/415317?tstart=0
Convert http://premierepro.wikia.com/wiki/FAQ:How_do_I_convert_my_files%3F
Convert your files to DV-AVI Type II with 48KHz 16-bit Audio
I have NOT used the products below, I only forward due to other mentions
$99 http://www.corel.com/servlet/Satellite/us/en/Product/1175714228541#tabview=tab0
$99 http://www.womble.com/products/mvw.html
$90 http://www.magix.com/us/movie-edit-pro/ plus $5 Ship
$80 http://www.nchsoftware.com/prism/index.html
$75 http://www.videoredo.com/en/index.htm
$70 http://www.nchsoftware.com/prism/index.html Converter
$40 http://www.daniusoft.com/dvd-ripper.html#135
$40 http://www.deskshare.com/dmc.aspx Digital Media Converter
$20 http://www.topsoftwareol.com/product/Video/Video_Converter_Standard.html
$00 http://www.dvddecrypter.org.uk/ or http://www.mrbass.org/dvdrip/
$00 http://www.squared5.com/ MPEG Streamclip Converter
$00 http://www.erightsoft.com/SUPER.html Multi-Converter <-- supposed to be very good
$00 http://www.virtualdub.org/ Mpeg to AVI Converter

Similar Messages

  • How do I download a home DVD video disk (-R) to iMovie where I can then edit?  I can download from a camera, but not from the disk.

    How do I download a home DVD video disk (-R) to iMovie where I can then edit?  I can download from a camera, but not from the disk.

    iPhoto pulls off new videos from my iPhone 5 just fine.  Does iPhoto automatically come up when you connect your iPhone?  If it does, you should see your iPhone under "Devices" in iPhoto and then can select the videos to transfer (select, then Import Selected), though that should happen automatically.

  • Re: how to capture a frame from a video file and save it as a jpeg

    package com.snn.multimedia;
    * @(#)FrameAccess.java     1.5 01/03/13
    * Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
    import java.util.Date;
    import java.util.Arrays;
    import java.util.Iterator;
    import javax.imageio.ImageIO;
    import javax.imageio.stream.ImageOutputStream;
    import javax.imageio.ImageWriter;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.awt.image.DataBufferByte;
    import javax.media.*;
    import javax.media.control.FramePositioningControl;
    import javax.media.control.TrackControl;
    import javax.media.Format;
    import javax.media.format.*;
    import javax.media.util.BufferToImage;
    import javax.media.util.ImageToBuffer;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import com.sun.image.codec.jpeg.*;
    * Sample program to access individual video frames by using a
    * "pass-thru" codec. The codec is inserted into the data flow
    * path. As data pass through this codec, a callback is invoked
    * for each frame of video data.
    public class FrameAccess extends java.awt.Frame implements ControllerListener
    Processor p;
    Object waitSync = new Object();
    boolean stateTransitionOK = true;
    * Given a media locator, create a processor and use that processor
    * as a player to playback the media.
    * During the processor's Configured state, two "pass-thru" codecs,
    * PreAccessCodec and PostAccessCodec, are set on the video track.
    * These codecs are used to get access to individual video frames
    * of the media.
    * Much of the code is just standard code to present media in JMF.
    public boolean open(MediaLocator ml)
    try
    p = Manager.createProcessor(ml);
    catch (Exception e)
    System.err.println("Failed to create a processor from the given url: "
    + e);
    return false;
    p.addControllerListener(this);
    // Put the Processor into configured state.
    p.configure();
    if (!waitForState(p.Configured))
    System.err.println("Failed to configure the processor.");
    return false;
    // So I can use it as a player.
    p.setContentDescriptor(null);
    // Obtain the track controls.
    TrackControl tc[] = p.getTrackControls();
    if (tc == null)
    System.err.println("Failed to obtain track controls from the processor.");
    return false;
    // Search for the track control for the video track.
    TrackControl videoTrack = null;
    for (int i = 0; i < tc.length; i++)
    if (tc.getFormat() instanceof VideoFormat)
    videoTrack = tc[i];
    break;
    if (videoTrack == null)
    System.err.println("The input media does not contain a video track.");
    return false;
    VideoFormat currentFormat = (VideoFormat)videoTrack.getFormat();
    System.err.println("Video format: " + videoTrack.getFormat() );
    videoTrack.setFormat(new VideoFormat("RGB", currentFormat.getSize(), currentFormat.getMaxDataLength(), currentFormat.getDataType(), currentFormat.getFrameRate()));
    // Instantiate and set the frame access codec to the data flow path.
    try
    // Try to retrieve a FramePositioningControl from the player.
    FramePositioningControl fpc = (FramePositioningControl) p.getControl("javax.media.control.FramePositioningControl");
    if (fpc == null)
    System.err.println("The player does not support FramePositioningControl.");
    System.err.println("There's no reason to go on for the purpose of this demo.");
    return false;
    Time duration = p.getStopTime();
    long totalFrames = 0;
    if (duration != Duration.DURATION_UNKNOWN)
    System.err.println("Movie duration: " + duration.getSeconds());
    totalFrames = fpc.mapTimeToFrame(duration);
    if (totalFrames != FramePositioningControl.FRAME_UNKNOWN)
    System.err.println("Total # of video frames in the movies: "
    + totalFrames);
    } else
    System.err.println("The FramePositiongControl does not support mapTimeToFrame.");
    } else
    System.err.println("Movie duration: unknown");
    long[] frames;
    if (totalFrames > 0L)
    double intervalDouble = Math.floor(totalFrames / 5.0);
    long interval = new Double(intervalDouble).longValue();
    frames = new long[5];
    frames[0] = 1;
    frames[1] = frames[0] + interval;
    frames[2] = frames[1] + interval;
    frames[3] = frames[2] + interval;
    frames[4] = frames[3] + interval;
    } else
    frames = new long[1];
    frames[0] = 1;
    // Codec codec[] = { new PreAccessCodec(), new PostAccessCodec()};
    Codec codec[] = { new OverlayCodec(frames)};
    videoTrack.setCodecChain(codec);
    catch (UnsupportedPlugInException e)
    System.err.println("The process does not support effects.");
    // Realize the processor.
    p.prefetch();
    if (!waitForState(p.Prefetched))
    System.err.println("Failed to realize the processor.");
    return false;
    // Display the visual & control component if there's one.
    setLayout(new BorderLayout());
    Component cc;
    Component vc;
    if ((vc = p.getVisualComponent()) != null)
    add("Center", vc);
    if ((cc = p.getControlPanelComponent()) != null)
    add("South", cc);
    // Start the processor.
    p.start();
    setVisible(true);
    return true;
    public void addNotify()
    super.addNotify();
    pack();
    * Block until the processor has transitioned to the given state.
    * Return false if the transition failed.
    boolean waitForState(int state)
    synchronized (waitSync)
    try
    while (p.getState() != state && stateTransitionOK)
    waitSync.wait();
    catch (Exception e)
    return stateTransitionOK;
    * Controller Listener.
    public void controllerUpdate(ControllerEvent evt)
    if (evt instanceof ConfigureCompleteEvent
    || evt instanceof RealizeCompleteEvent
    || evt instanceof PrefetchCompleteEvent)
    synchronized (waitSync)
    stateTransitionOK = true;
    waitSync.notifyAll();
    } else
    if (evt instanceof ResourceUnavailableEvent)
    synchronized (waitSync)
    stateTransitionOK = false;
    waitSync.notifyAll();
    } else
    if (evt instanceof EndOfMediaEvent)
    p.close();
    System.exit(0);
    * Main program
    public static void main(String[] args)
    if (args.length == 0)
    prUsage();
    System.exit(0);
    String url = args[0];
    if (url.indexOf(":") < 0)
    prUsage();
    System.exit(0);
    MediaLocator ml;
    if ((ml = new MediaLocator(url)) == null)
    System.err.println("Cannot build media locator from: " + url);
    System.exit(0);
    FrameAccess fa = new FrameAccess();
    if (!fa.open(ml))
    System.exit(0);
    static void prUsage()
    System.err.println("Usage: java FrameAccess <url>");
    * Inner class.
    * A pass-through codec to access to individual frames.
    public class PreAccessCodec implements Codec
    * Callback to access individual video frames.
    void accessFrame(Buffer frame)
    // For demo, we'll just print out the frame #, time &
    // data length.
    long t = (long) (frame.getTimeStamp() / 10000000f);
    System.err.println("Pre: frame #: " + frame.getSequenceNumber()
    + ", time: " + ((float) t) / 100f + ", len: "
    + frame.getLength());
    * The code for a pass through codec.
    // We'll advertize as supporting all video formats.
    protected Format supportedIns[] = new Format[] {
    new VideoFormat(null)
    // We'll advertize as supporting all video formats.
    protected Format supportedOuts[] = new Format[] {
    new VideoFormat(null)
    Format input = null, output = null;
    public String getName()
    return "Pre-Access Codec";
    // No op.
    public void open()
    // No op.
    public void close()
    // No op.
    public void reset()
    public Format[] getSupportedInputFormats()
    return supportedIns;
    public Format[] getSupportedOutputFormats(Format in)
    if (in == null)
    return supportedOuts;
    } else
    // If an input format is given, we use that input format
    // as the output since we are not modifying the bit stream
    // at all.
    Format outs[] = new Format[1];
    outs[0] = in;
    return outs;
    public Format setInputFormat(Format format)
    input = format;
    return input;
    public Format setOutputFormat(Format format)
    output = format;
    return output;
    public int process(Buffer in, Buffer out)
    // This is the "Callback" to access individual frames.
    accessFrame(in);
    // Swap the data between the input & output.
    Object data = in.getData();
    in.setData(out.getData());
    out.setData(data);
    // Copy the input attributes to the output
    out.setFormat(in.getFormat());
    out.setLength(in.getLength());
    out.setOffset(in.getOffset());
    return BUFFER_PROCESSED_OK;
    public Object[] getControls()
    return new Object[0];
    public Object getControl(String type)
    return null;
    public class OverlayCodec extends PreAccessCodec
    long[] myFrames;
    BufferedImage work;
    byte[] workData;
    int width;
    int height;
    int dataLen;
    RGBFormat supportedRGB = new RGBFormat(null, // size
    Format.NOT_SPECIFIED, // maxDataLength
    Format.byteArray, // dataType
    Format.NOT_SPECIFIED, // frameRate
    24, // bitsPerPixel
    3, 2, 1, // red/green/blue masks
    3, // pixelStride
    Format.NOT_SPECIFIED, // lineStride
    Format.FALSE, // flipped
    Format.NOT_SPECIFIED); // endian
    public OverlayCodec(long[] frames)
    // force specific input format
    supportedIns = new Format[] {
    supportedRGB};
    myFrames = new long[frames.length];
    System.arraycopy(frames, 0, myFrames, 0, frames.length);
    public String getName()
    return "Capture Codec";
    public Format setInputFormat(Format format)
    if ((format != null) && (format instanceof RGBFormat)
    && format.matches(supportedRGB))
    // set up working image if valid type
    // (it should be since we insisted!)
    Dimension size = ((RGBFormat) format).getSize();
    width = size.width;
    height = size.height;
    dataLen = width * height * 3;
    if ((dataLen > 0)
    && ((work == null) || (work.getWidth() != width)
    || (work.getHeight() != height)))
    // working image - same 3-byte format as buffer
    work = new BufferedImage(width, height,
    BufferedImage.TYPE_3BYTE_BGR);
    // reference to pixel data
    workData = ((DataBufferByte) work.getRaster().getDataBuffer()).getData();
    return format;
    * Callback to access individual video frames.
    void accessFrame(Buffer in)
    try
    if (Arrays.binarySearch(myFrames, in.getSequenceNumber()) >= 0)
    BufferToImage stopBuffer = new BufferToImage((VideoFormat) in.getFormat());
    Image stopImage = stopBuffer.createImage(in);
    BufferedImage outImage = new BufferedImage(140, 96,
    BufferedImage.TYPE_INT_RGB);
    Graphics og = outImage.getGraphics();
    og.drawImage(stopImage, 0, 0, 140, 96, null);
    FileOutputStream fout = new FileOutputStream("image"
    + in.getSequenceNumber() + ".jpg");
    writeImage(outImage, fout);
    catch (Exception e)
    e.printStackTrace();
    public int process(Buffer in, Buffer out)
    try
    accessFrame(in);
    BufferToImage stopBuffer = new BufferToImage((VideoFormat) in.getFormat());
    Image stopImage = stopBuffer.createImage(in);
    ImageToBuffer outImagebuffer = new ImageToBuffer();
    out = outImagebuffer.createBuffer(stopImage, p.getRate());
    // Swap the data between the input & output.
    in.copy(out, true);
    catch (Exception e)
    e.printStackTrace();
    return BUFFER_PROCESSED_OK;
    void writeImage(BufferedImage outImage, OutputStream os) throws Exception
    Iterator writers = ImageIO.getImageWritersByFormatName("jpg");
    ImageWriter writer = (ImageWriter) writers.next();
    ImageOutputStream ios = ImageIO.createImageOutputStream(os);
    writer.setOutput(ios);
    writer.write(outImage);
    ios.close();

    Hi,
    I have a jpeg movie file 60 mins long and a text file tell me five time-lines for breaking the movie. For example, break the movie at 10:21, 16:05�
    The final output should be five small jpeg movie files. Each file contains a 90 sec (30 sec before the break time and 60 sec after the break time).
    Do you know any java library (jar) contain the library that can help me on programming this? Any existing source code? Any SDK for a movie editor can do that?
    Please help.
    Thanks
    Kenny

  • How do you make a loop DVD video?

    I'm unable to find out a way to make my DVD into a loop or repeater video?
    Any help would be great!
    Thanks,

    Check this out.
    http://www.adobeforums.com/webx/.3bc12b29
    or just hit repeat on DVD player.

  • How to capture the excise duty on free material purchasing?

    Scenario is like this if we purchase a lot of material then vendor gives free on some qty. then we make a purchase order for free material with tax code zero. Vendor supply that free material with excise duty. Now we do GRN & take part1 entry. How to capture part II entry. This is capital item.

    If you are following J1IEX route , then Tick MRP indicator & enter Excise duty values & take Part2.
    It is assumed that all other master data like chapter heading etc are set.
    Hope this will help.
    Regards,
    AK

  • Capturing a photo from a video

    I am running Adobe Photoshop Element V6.0 on Windows XP.
    I have read the Photoshop help on how to capture a photo from a video, but have not successfully done it.
    I click on File > Import > Frame from video. When the video is playing, I click on the "Grab Frame" button; the "Frames Captured" button shows that I did capture the frame.
    This is where I'm stuck. What is supposed to happen next or what do I do next? The "help" just just shows a big blue arrow pointing down to the bottom of the screen.

    > the video blinks as if it really is capturing the frame
    I've never seen a blink.
    I would start by deleting the prefs: Quit the editor, then restart while holding down ctrl+alt+shift. Keep holding the keys till you see a window asking if you want to delete the settings file. You do.

  • How to Put DVD/Video on iPod, PSP, Computer, Zune,...

    Many Mac users have iPod, PSP and other portable devices, but they can only enjoy songs and videos from iTunes or buy them from internet, because there is seldom nice Mac DVD and Video covnerter for iPod, PSP and other devices. Today I will introduce you an excellent DVD/Video converter for Mac: Aiseesoft DVD Converter for Mac It allows you to put your own DVDs and you own videos on your iPod, PSP, Mac Computer and other players on Mac.
    This article aims to show you how to put your DVDs and videos on your iPod, PSP, Computer, Zune, Xbox and other players for Mac users.
    Part 1. Convert DVD for Mac with AiseesoftDVD Ripper for Mac
    Step 1. Load DVD
    Insert DVD into your DVD-ROM, run DVD Ripper for Mac, click “Load DVD”, find the DVD folder of the movie you want to add from your DVD-ROM, and Click “Open”.
    Step 2. Set output format.
    This best DVD ripper for Mac provides you output formats as many as you want. Just choose one from the drop down list “profile” according to your portable player.
    If you are very professional with your player, you can also set your output parameter values such as Resolution, Frame Rate, Bitrate and Sample Rate and so on.
    Tips:
    1. Trim:
    If you want to rip only a part of the DVD movie, please click “Trim” button and drag the “Start trim slider” to set the start time and “End trim slider” to set the end time. (a). You can also do that by clicking the “Start trim button” and “End trim button”(b). The third way you do that is set the exact Start/End time at the right of the pop-up window and click “OK”.
    2. Crop:
    If you want to remove the black edges or you want to rip a certain area of your video, please click the “Crop” button. You can do this either by drag the frame around the movie (a) or set the crop value: “Top, Left, Bottom, Right”.(b). Another way to do that is choose mode from “Crop Mode”(c).DVD Ripper for Mac also allows you to choose the output aspect ratio above the crop panel, “Keep Original, full screen, 16:9 and 4:3” are available.
    3. Effect:
    If you want to adjust the effect of your movie, please click the “Effect” button and a pop-up effect window will appear. It allows you to edit your movie’s effect including “Brightness, Contrast, Hue, Saturation and Volume”.
    Click “Start” to begin your conversion.
    Part 2. Convert videos for Mac with AiseesoftVideo Converter for Mac
    Step 1. Choose “Video Converter for Mac” on the main interface.
    Step 2. Add video
    Click “Add File” to load your video that you want to put.
    Step 3. Choose output profile and settings.
    You can choose your output format from the drop down list and you can set the exact values of your output videos, such as Resolution, Frame Rate and so on.
    You can do the video editing as the same way of convert DVDs.
    After getting your satisfying video, then click “Start” button to start your conversion.
    If you are a window user, Aiseesoft DVD Converter Suite is your best choice.
    It is the perfect combination of Aiseesoft DVD Ripper, Aiseesoft Total Video Converter and Aiseesoft iPod to Computer Transfer. With this powerful DVD Converter Suite, you can easily convert DVD and video to all the popular formats: MP4, H.264, AVI, MP3, WMV, WMA, FLV, MKV, MPEG-1, MPEG-2, 3GP, 3GPP, VOB, DivX, Mov, RM, RMVB, M4A, AAC, WAV, etc
    And transfer your iPod songs and videos to your computer easily.

    You should post your question in either the iTunes or iPod discussions

  • How to Optimize Quality of DVD Video using Premier 6.5

    I am looking for some advice how to get the best video quality on the MPEG-2 DVDs I create. I capture my MiniDV video into Adobe Premiere 6.5 in AVI format using a D-Link (at least 2 years old) 1394 fireware card. I set my default projects settings to Microsoft DV Compressor, Frame Size 720 x 480, 16x9 aspect, 29.97 fps, depth millions, quality 100%. Once my editing is done, I export using Adobe Premier 6.5 MPEG encoding (I have the latest 1.3 update). I typically pick the DVD 16x9 High Bit Rate setting. My DVDs look OK. The Canon ZR30 MC MiniDV Camcorder I have been using recently died; it was about 5 years old. I just replaced it with a 3CCD MiniDV camcorder from Panasonic (PV-GS320) that should help in terms of the source video quality. I am not ready for HD. Too expensive to upgrade my PC and disk subsystem in particular and my preference will be an HD camcorder with no spinning hard drive or moving tapes. We are very close to this. I imagine many folks are in my boat in this in-between stage where we get to watch HD on our LCD TVs but must work in the stone ages with our DVD video editing software and equipment. I would appreciate any suggestions how to get better performance either by upgrading to newer software from Adobe (provided this will really help), buying a better capture card, changing my settings in Premier. Any suggestions would be much appreciated.

    >typically pick the DVD 16x9 High Bit Rate setting
    I will qualify this by saying that I (used to) use Premiere 6.02 and the MPEG output added by a Pinnacle Dv500 card's software, so I don't have any direct experience with Premiere 6.5 and the MainConcept coding engine
    But, I am
    switching over to Premiere Pro
    which also uses MainConcept, so I have some experience with settings
    For a video up to one hour, your current settings are probably the best you can do
    For over one hour, you should look at 2-pass VBR settings
    In Pro, there is a place to adjust the 3 individual components, and I used a MINimum bitrate of 3 and MAXimum bitrate of 7 (see below) and would then play with the TARGET bitrate to have the highest setting where the software would say there was enough space (on a DVD) to export the project
    That "play with" consisted of adjusting the target bitrate a tenth at a time (6.5 6.4 6.3 etc) until the status message would change from insufficient space to READY... at which point I knew I had the best quality the software could give
    If you want to try a different product, visit Vendor site CCE Basic
    MPEG coding program
    Download site for
    CCE Basic Demo or Purchase
    And, some general information about burning DVD's
    To
    Burn Error Proof DVDs (Well, close to error proof!)
    Use the SLOWEST possible burn option your burner will allow in Encore, since it is much better to take a bit more time burning the disc than it is to burn "fast" and have a disc that won't play
    Set the VIDEO portion of the transcoding options to a Maximum of 7,000 so your burned disc will have a better chance at playing in desktop players (which support burned discs, if at all, only as an "after thought" of the DVD specification)
    Use AC3 or PCM audio transcode settings for best player compatibility (some discussion of MPEG audio not being supported by all players, especially for NTSC discs)
    Buy and use Taiyo Yuden (or Verbatim?) brand blank discs
    Read this
    ENTIRE message
    Concerning Replication
    And this one
    About Authoring and Playing a DVD
    Discussion of
    Peak Bitrate
    Here is one
    Bit Budget Calculator

  • How to Make iPhone Ringtone From DVD Music/Music/Video?

    People want to show their individuality anytime and anywhere with their inimitable hairstyle, clothing, and other things. Your phone's ringtone is also really important to show your difference from others. So how to make your own unique ringtone for your incoming calls, clock alarms, clock timer becomes a really important thing.
    Today I will show you how to make your own iPhone ringtones from your DVD/video/music. Someone will say that you can buy them on itunes. Yes, everybody can buy it. It is not unique and special. Let's make our own iPhone ringtone together.
    Things you need:
    1. DVD/video/audio files that contains the music you want
    2.http://www.aiseesoft.com/iphone-ringtone-maker.htmliPhone Ringtone Maker
    3. Computer(Windows/Mac)
    http://farm3.static.flickr.com/2786/4153313698_c1e11d1941.jpg
    Step 1: Load File/DVD
    Load your video/audio files or DVD to this iPhone Ringtone Maker
    Step 2: Choose music
    You need to choose which part you want to convert as your iPhone ringtone or you want to make the whole files as your iPhone ringtone. Just drag the bar to set the begin point and end point
    Step 3: Pre-listening
    You can pre-listening the ringtone, if you do not like it you can adjust the length of your ringtone.
    Step 4: Make Ringtone
    After you have done all the tings above, you can click “Generate” button to start the conversion.
    Soon you will get your own ringtone.
    Tips:
    1. if you want to put your ringtone directly to your iPhone, please check the box before “import to iPhone”.
    2. if you want to manage your ringtone, you can click “manage ringtone” button to do it easily.
    For Mac users, you can use
    http://www.aiseesoft.com/iphone-ringtone-maker-for-mac.htmliPhone Ringtone Maker for Mac to do this easily with the same operation as windows one.
    http://farm3.static.flickr.com/2531/4153313838_7da8c360f3.jpg
    To help you to make your iPhone and iPod more enjoyable here I also recommend you this
    http://www.aiseesoft.com/dvd-to-ipod-converter.htmlDVD to iPod Converter,
    http://www.aiseesoft.com/dvd-to-iphone-converter.htmlDVD to iPhone Converter and http://www.aiseesoft.com/ipod-transfer.htmliPod Transfer

    Removed post. Banned user due to spamming.

  • Capture segment of DVD video

    I have a DVD and I want to capture a portion of the video on it so I can convert it for my iPod. What is the best approach for doing this? MPEG Streamclip? Is there anyway to tell the program to only capture the video from certain points in the DVD video timeline?
    THank you,
    TM

    Comeon. It's not that complicated. Just do a little exploring in Mpegstreamclip and you'll figure it out. Hey, if I could figure it out.... well maybe that's not true. Now, I'm going to get a bunch of email's telling me how terrible and cruel I am. Well I can live with that.

  • How can I import DVD video?

    How can I import (a part of) a DVD disc content into my Premiere Pro CS3 project?

    First you must DEMUX DVD.Result is separate Audio and Video files.Import in Premiere.
    Free Demuxers
    http://www.squared5.com/
    http://neuron2.net/dgmpgdec/dgmpgdec.html
    also look this,
    http://arbor.ee.ntu.edu.tw/~jackeikuo/dvd2avi/

  • How can I convert DVD- video into Apple's format so that it can be played and streamed from my Mac?

    How can I convert DVD- video into Apple's format so that I can play the content on my Mac and also stream it to my Apple TV? A few years ago, I transferred all of my home videos onto DVD but now would really like to put these onto my Mac and stream them through Apple TV to watch on the "big screen". Any advice would be most welcome!! Thanks

    MPEG Streamclip.
    Apple do not have their "own" format. You need to convert your DVDs to H.264 though.

  • How do I transfer legally Owned DVD's to my iPod Video?

    I got a new iPod Video for christmas and I want to know how to take my own personal DVD's and transfer them to my iPod. I've read lots of threads about this subject but I haven't been successful in transfering anything. I downloaded Videora and DVDFab Decrypter but I don't know how to use them. I also found a lot of feedback saying that it would be illegal to transfer DVD's to the iPod and all I can say to that is, that's absolutely ridiculous. I bought the DVD's legally and should be able to transfer them. I paid for them and I don't plan on selling them to anyone else so explain to me what's illegal about it. I think that preventing us from transfering DVD's is just another way for Apple to make money. Eventually they'll come out with a Movie library in iTunes that you'll have to pay for, they already have music videos and tv shows. The other thing that really ****** me off is that in no way do they make clear that you're not allowed to transfer DVD's to your iPod. I think that a lot of people assumed along with me that you can transfer any movies you wanted to the iPod without a problem and the fact that you can't is a serious question in my mind as to whether or not Apple has committed fals advertising. Apple products are already priced much higher than they should be and I feel that this is just another way for them to make money. Sorry I needed to rant. Can anyone help me transfer my DVD's to my iPod? Or direct me towards some other 3rd party programs that might work easier?
    Compaq Presario R3000 Notebook   Windows XP  

    "Why would anyone want to stare at that little screen for 2+ hours... I dont think apple false advertised at ALL...
    Watching a movie would just kill your battery and waste a lot of space on your iPod which was first intended for music..
    Pretty common sense if you ask me."
    whowhat I think that a lot of people want to watch movies on the new iPod otherwise the software that transfer DVD's to iPod's wouldn't exist. And I'm sorry but what is the point of making an iPod video if you can't watch movies on it? so that you can watch a music video for 3 minutes? or your choice of 5 tv shows or however many there are? I don't think so. I just feel that if I pay $400 for a new iPod and I spend $20 on a movie, I shouldn't have to pay an extra $30 just so I can get the software that puts DVD's onto my iPod. Obviously if I'm at home I'm not going to sit and stare at the iPod but the whole point of an iPod is that you can have all your music and all your videos on the go when you're on a plane or a train or a long car ride. I just think it's bull **** the way apple does business making everything overpriced and all I'm saying is that when I bought the new iPod I expected that I would be able to put my own movies onto the iPod. And even though when you buy a DVD you're buying the right to view it, not the rights to it, all I would be doing is viewing it on my iPod, how is that wrong?
    Compaq Presario R3000   Windows XP  
    Compaq Presario R3000   Windows XP  

  • How to capture or  save video files or trailers in to apple tv thru intern

    hi
    i Hvw purchased apple tv .in that iam unable to see trailers only and iam unable o save the video file in the apple t.v every time has to connect the internet to see the video file is there any setttings to do plz tell me friends .iam waiting to ur reply how to capture or save video files or trailers in to apple tv thru internet

    when there is 40 gb h.d.d is it not possible to capture the videos or songs all the time i have to connfigure the dhcp settings or resetting to factory defaults
    then only iam able to play the trailers your answer is little clear to me my dear frnd plz dont mind can u help me some extra points to hti sappale tv

  • DVD Video Capture Software

    Hello,
    I have a newbie video question. We have a customer that needs to have an old video edited slightly for upload to the web. I own Premiere Pro CS4, but need to get the video from the original DVD, which contains and Audio_TS and Video_TS folder with associated files contained therein.
    In the past, I've had to borrow a piece of hardware that ran from a traditional DVD player to my computer to capture the DVD video, which then would be able to import it into Premiere for editing.
    Does anyone know if there is a software that would allow me to avoid the hardware interface between the DVD player to my computer? It would be so much easier to be able to put the DVD in my Mac, and somehow capture the video, so I could then be able to edit in Premiere.
    This may not be impossible I don't know, but we don't do much video, and hate to borrow the hardware again or sub it out.
    Thanks for any help.
    Corey

    Just a quick follow up to those who read this thread. On my Intel iMac, I ended up using the free MPEG Streamclip for Mac (http://www.squared5.com) to convert the VOB files on the original DVD, and then converted them to quicktime format for editing.
    The file renaming mentioned above didn't work for me. I ended up with multiple errors.
    The MPEG Streamclip software demultiplexed as Angelo suggested above. While it worked perfectly for me and was free, I did have to purchase the QuickTime 6 MPEG-2 Playback Component for Mac OS X (http://store.apple.com/us/product/D2187Z/A?mco=MTIxODk3Mw) for $19.99.
    Before purchasing this component from Apple, Streamclip seemed to import the VOB files off the DVD, but nothing was visible and did not work properly. As a point of note, I'm running QuickTime v. 7.5.5.
    Once the QT MPEG-2 component was purchased, downloaded and installed from Apple, Streamclip captured the entire DVD, audio and video, demultiplexed and exported in the format I chose. (QuickTime)
    It was then easy to import the QuickTime file into Premeire and the editing began. No hardware bridge was needed to capture the DVD, and it seemed reasonably intuitive.
    Though keep in mind, you will likely need to cough up the $20 dollars to Apple for the MPEG-2 component. Before purchasing that component, I couldn't get Streamclip to capture any of my DVDs'.
    Hope the follow up helps someone...

Maybe you are looking for