How can I extract only the audio as an aiff file?

Using a Sony DSC-N2 Cybershot Camera I recorded video that was saved as “MOV01606.MPG”. The video plays back with sound in Quicktime Pro and iTunes but how can I extract only the audio as an aiff file?

Use MPEG Streamclip (free) to convert your .mpg files to QuickTime formats.
QuickTime can't extract audio from muxed file formats.

Similar Messages

  • How can I sync ONLY the top photo in the stack?

    I sync various Aperture photo albums to my IPad and iPhone. The problem is that when I have 'stacked' images (eg. one image showing in the album and two other copies 'hidden' underneath), all of the photos in the stack are copied to the ipad and iPhone. So instead of seeing just one version of an image, I see as many as are in the stack. How can I sync ONLY the top photo in the stack?
    Thanks for your help!

    I solved my own problem.
    The sync problem seemed to only occur on smart albums. There is a new check box option in Aperture 3 when making a smart album: "sync stack pick only." One click and the problem is solved!

  • How can I print ONLY the active document?

    Whenever I go to File/Print the darn PSE 9 program sends all of the working files in the bin to the printer. I've searched online for 2 hours now looking for an answer.
    I like to work with having several to many files in the 'bin' and prefer to only print the active file I'm currently working on without having to close the 'working files' before I can print. How can I print ONLY the active document or file in the project bin? Please help, I've upgraded from PSE 3 to PSE 9 and really like the updated features, but this one pain in the neck default is getting the best of me.

    Thanks for your help, that works nicely. It is good to have control of the printer again.

  • I just bought a 2gb shuffle and i have more music than it can hold in my itunes acct. How can i sync only the certain playlists on the shuffle?

    I just bought a 2 gb shuffle and I have more music in my itunes than it can hold.  How can i sync only the certain playlists on the shuffle?

    Yes. Configure your Shuffle to sync only selected playlists from under its Music tab.  This article should be able to assist you with this.
    http://support.apple.com/kb/ht1719
    B-rock

  • How can I get only the music I want onto my iPhone using iTunes Match

    how can I get only the music I want onto my iPhone using iTunes Match?  At present it is putting a random selection on; it has none of the same control as iTunes on my Mac.  And although I uploaded all my album artwork to iCloud, it is not transferring it back to my iPhone

    Iphone are meant to be sync to one itunes library only.
    You can copy those songs to a cd and then put a copy to your itunes media library.

  • How can I print only the attachment without the email content

    How can I print only the attachment without the email content. Every time I send to print, It prints the email itself with the attachment- can I cancel that?

    Hello Riklama,
    When you first open the attachment (e.g. on your phone) than you can mail only that attachment. Works fine with my husbands blackberry.
    Elsy

  • How can I keep only the emails I want.  Once I delete them I dont want them popping up again.  .

    How can I keep only the emails I want.  Once I delete them I don't want them popping up.  How can I loer the "50 recent" minimum?  Thanks

    For IMAP mail only
    Delete message permanently
    Settings>Mail......>tap the little arrow on right of mail account>Archive Messages>OFF
    You can't set it to less than 50 Recent Messages.

  • How can i erase only the music i don't like from my ipod ?

    how can i erase only the music i don't like from my ipod ?

    Go to iTunes and erase all the songs you don't want from your library or check the "Manually manage music and videos" box, erase all the songs from your iPod and only put the songs you want or check the "Sync only checked songs" box and check every single song in your library (Crtl+Click on a check box (if on PC)) and uncheck the ones you don't want.

  • How can I  see only the music that is downloaded onto my ipad instead of entire Homesharing library?

    How can I  see only the music that is downloaded onto my ipad instead of entire Homesharing library?

    Turning off Home Sharing would seem the most logical step.

  • How can I select only the music I want on my iPhone without putting all of it on?

    How can I select only the music I want on my iPhone without putting alll of it on my phone?

    http://support.apple.com/kb/PH12313

  • How can I find out the audio sampling rate of BetacamSP tape?

    Hi guys
    I'm trying to digitize BetacamSP tape. But I'm afraid if I might choose wrong setting...
    This tape is from very long time ago so we don't know which audio sampling rate we recorded with..
    How can I find out the audio sampling rate of this BetacamSP tape?
    Thanks:)

    The sampling rate is set by the Sony DVMCDA2 you are using, when the conversion is made from the analog input to the digital (DV) output. You should be outputting standard DV which is 16bit 48khz audio.
    Assuming you are in the US, your Easy Setup for FCP should be DV-NTSC, and then open the Log and Capture Pane and set the Capture Settings Device Control to Non-Controlable Device and you should be good to go.
    You will have to roll the deck manually and start and end your capture manually.
    You can download a user manual for the DVMCDA2 by clicking here.
    MtD

  • When sending e-mails, how can I show only the name and not include the e-mail address?

    When sending e-mails, how can I show only the name of the recipient and not include their full e-mail address?

    Hi beverlyfromnull,
    Have you added the recipients to your address book?

  • 16Gb of music...i have 2 GB space...when I sync...how can I get only the music I want...aka playlists I want...

    16Gb of music...i have 2 GB space...when I sync...how can I get only the music I want...aka playlists I want...

    You must configure to sync only the specific items you want on your iPod by enabling the necessary settings from under the iPod's Summary and Music tabs.  Perhaps this article can provide more information and assistance.
    iTunes: Syncing media content to iOS devices and iPod
    B-rock

  • How can I delete only one part of my xml file?

    Hello,
    I stored more than 100 users in only one xmltype column. For instance
    Create table agro(users XMLTYPE);
    ... and I inserted all users inside
    INSERT INTO agro values(XMLTYPE
    ('<?xml version="1.0" encoding="ISO-8859-1"?>
    <authentication><users><user>
    <name>cocoon</name>
    <password>cocoon</password>
    <role>admin</role>
    <title>Mr.</title>
    <firstname>Walter</firstname>
    <lastname>Cocoon</lastname>
    <company />
    <street />
    <zipcode />
    <city />
    <country>DE</country>
    <phone />
    <fax />
    <email />
    <bankid />
    <bankname />
    <accountid />
    </user>
    ... another user, etc.
    </users></authentication>'));
    Now I tried to delete only one part of this file. For example all persons with the name"cocoon".
    I used for this target the following statement:
    DELETE FROM agro agro
    WHERE agro.users.extract('authentication/users/user/text()').getStringVal()= 'cocoon';
    When I execute this statement, Oracle DB delete all users and not only with the name "Cocoon".
    How can I delete only one part of my xml file?
    Kind Regards
    M R

    This the expected behavoir. You uploaded a document containing multiple users and then asked XML DB to delete any documnet that contained a user with the name in question. The problem here is that you are creating a mega document that contains an aggregation of user documents but then trying to work with individual user documents. This is a bad idea.
    In general XML does not understand the concept of a collection of documents. It can only operate on one document at a time. Hence the tendancy to aggregate individual documents into a single larger document. Once you have an XML database, you can perform operations on collections of document, as easily as you can perform operations on individual documents, so the need to aggregate the individual documents together disappears.
    If you store each user document as a seperate document then your delete will work as expected.

  • How can i extract data from oracle table  to flat file or excel spread shee

    Hello,
    DB Version is 10.1.0.3.0
    How can i extract data from oracle table to flat file or excel spread sheet by using sub programs?
    Regards,
    D

    Here what I did
    SET NEWPAGE 0
    SET SPACE 0
    SET LINESIZE 80
    SET PAGESIZE 0
    SET ECHO OFF
    SET FEEDBACK OFF
    SET VERIFY OFF
    SET HEADING OFF
    SET MARKUP HTML OFF SPOOL OFF
    Sql> SPOOL bing
    select * from -------;
    SPOOL OFF;
    I do not see file.
    I also tried
    Sql> SPOOL /tmp/bing
    select * from -------;
    SPOOL OFF;
    But still not seeing the fie,

Maybe you are looking for

  • I am unable to install Virtual Machines on my Mid-2013 MacBook Air

    Dear Apple Support Community, I have recently moved away from a Mid-2010 MacBook Pro to a new Mid-2013 MacBook Air. As much as it pains me, I have a need to install a virtual machine running Windows 7 in order to utilize an application called vSphere

  • My Nano shuts down Itunes!

    Hello! I have a few ipods, but have been using my Iphone primarily with Itunes. I'm trying to plug in my 2G Nano and as soon as I do, Itunes shuts down! The connection is fine and it charges my nano, but the nano icon appears for one second on my des

  • Internal Order Report - Cost Elements by Order

    Dear All, When I run the report S_ALR_87012997 - List: Cost Elements by Order, the system shows the report like Cost Element: 500000 -  Actual: 8900    Plan : 833.33 Abs. Var: 8066.67  Var (%): 968 Order: 100219 (stat. order): Actual: 8900  Plan: 833

  • Sending a message from a webpage to an app(lication) on the user PC

    I want to be able to send a stream of data from a user computer to a web-service.  That should not be too hard - I would not use asp.net for this, but I would use an application written in dot-net that resides on a user computer.   However, the trick

  • Set up new BSP project

    Hello experts. Want to you suggest me best solution of my task. Requirements of an app (mobile) are following : 1. when user opens app on device - He sees some data from SAP on UI, but He does not need to login (some hardcoded user need to be used he