Is there a way to CAPTURE audio/video off the net then run it m.m. prsntn

I'm fairly new to the mac genre. In windows we had apps like Camtasia to
capture audio/video off the net. I was hoping something like that would
be avail for the mac and then once capture it how would I edit it and
include it in a presentation software; for example, keynote?
Is there added hardware req'd (?Capture board)? what would be a good software mac
compatible?

I'd like to capture audio and video for example sometimes just need to capture the
audio if some instruction is coming say over a quicktime or media player for my work.
Then sometimes I need to capture the audio and video when they ware actually showing me
charts and explaining them things like that.
is snap Z the way to go then for quality and fair pricing to get good results.
Do we have any resident applications already on the ilife variety that could be utilized for
something like this or is the only way to go through a 3rd party vendor?

Similar Messages

  • Is there any way to transfer a video off of Facebook into my own video/camera roll?.......I got new service but didn't get to back up my phone so I lost a few videos, but they're uploaded to my Facebook and I wanted to get them back to my phone

    Is there any way to transfer a video off of Facebook into my own video/camera roll?.......I got new service but didn't get to back up my phone so I lost a few videos, but they're uploaded to my Facebook and I wanted to get them back to my phone

    No, but you can save a photo on FaceBook.
    Try downloading/saving the video from FaceBook on your computer. If successful, after doing so you can transfer the video to your iPhone along with any photos on your computer or alone. They transfer won't be in the Camera Roll, it will be in your iPhone's Photo Library.

  • I live in Australia and I am trying to buy an album by SNSD but it is not available on the Australian iTunes. All of their other albums are. Why is this and is there a way I can buy it off the American store?

    I live in Australia and I am trying to buy an album by SNSD, a Kpop group. It is not available on the Australian iTunes. All of their other albums are.
    Why is this and is there a way I can buy it off the American store? (The album is called The Boys)

    Well how much does the album cost? Because I have an issue with this except I live in America and I wish to purchase something from the Australian store... perhaps I can gift you your album and you could gift me my album.

  • I have an Iphone 4, I have music files that appear on my phone that I want to delete, when I link it to my computer the songs on the phone will not appear in Itunes so I can delete them, Is there any way to delete these song off the phone without going th

    I have an Iphone 4, I have music files that appear on my phone that I want to delete, when I link it to my computer the songs on the phone will not appear in Itunes so I can delete them, Is there any way to delete these song off the phone without going through Itunes?

    Nope, it either needs to be plugged in or turned on with the power button.
    A replacement iPhone 4 is $149, but at least the whole phone is replaced.

  • Is there any way of storing audio- / video-elements in the browser cache in Safari in iOS?

    Hi there,
    I'm desperatly trying to find a solution for a web application that has to run on an iOS-Safari (e.g. on iPad, iPad2 and iPhone 4):
    It's a web-application I wrote some time ago which lets the user search for and listen to short music samples (MP3s, all from ~100 kB to ~1.5 MB). The audio player is Flash-based, so it doesn't work on iOS-devices at the moment and I'll have to implement an alternative either in HTML 5 or with a "direct" QuickTime-object.
    Both my HTML 5- and QuickTime-alternatives for iOS-devices work fine so far, but there's one major problem I can't find a solution to:
    Unlike Flash and most HTML 5-capable browsers on Windows Safari on my iPad 2 won't store the audiofiles in the browsercache after loading and playing them - neither with HTML 5 audio-tags nor with a QuickTime-Object. Every time I load an audio file for playback from the server (with JavaScript-Commands, so without changing or reloading the whole page) it's downloaded again completely.
    If a user listens to sample A and then to sample B, Safari forgot about having played sample A and downloads the whole MP3 again if I like to listen to it again. On a mobile device with a potentially narrow bandwith this behaviour is out of the question.
    Is there a way of storing downloaded audiofiles opened by HTML 5 or QuickTime in Safari's cache so it remembers already having downloaded them  -  like it caches usual "web-files" like HTML, CSS or JPEG-images, or like Flash stores such objects in its local cache?
    The Application Cache with a manifest-file is not an option - this only seems to work if the browser is offline, for example if the iOS-device is in "Airplane"-Mode.

    Yes, I watched it. It contains interesting stuff I have to admit I didn't know yet, but unfortunately I still can't find a solution to my problem:
    My first attempt was trying to use the Application Cache with a manifest file - although this is not really the intended purpose for my application... I don't have a static set of files that I want to have cached or "available offline"  -  I just want to cache MP3s which the user has played yet.
    It should be possible to use a "dynamic manifest": One that is parsed by the Apache PHP module and listing the files played so far from a PHP session - something like this:
    <?php
    session_start();
    header("Content-Type: text/cache-manifest, charset=UTF-8");
    echo "CACHE MANIFEST\n";
    foreach($_SESSION['playedSongs'] as $song)
        echo $song."\n";
    ?>
    So whenever a song is loaded / played, I could access the PHP session with AJAX, insert the filename of the played file and manually update the manifest by calling window.applicationCache.update().
    There are two problems with this:
    First of all: It doesn't work. And I didn't even get to the point of trying to use a dynamic manifest:
    <!DOCTYPE html>   
    <html manifest="cache.manifest">
        <head>
            <title>Test</title>
            <script type="text/javascript">
            function playStuff(id)
                if(id == 1)
                    window.document.getElementById("audio").innerHTML = '<audio controls preload="automatic" autobuffer><source src="song01.mp3" type="audio/mp3" /></audio>';
                else if(id == 2)
                    window.document.getElementById("audio").innerHTML = '<audio controls preload="automatic" autobuffer><source src="song02.mp3" type="audio/mp3" /></audio>';
            </script>
        </head>
        <body>
            <div id="audio"></div><br />
            <br />
            <input type="button" value="playStuff(1)" onclick="playStuff(1)" />
            <input type="button" value="playStuff(2)" onclick="playStuff(2)" />
        </body>
    </html>
    The cache.manifest looks like this:
    CACHE MANIFEST
    song01.mp3
    song02.mp3
    and is properly returned from Apache as "text/cache-manifest" by adding
    AddType text/cache-manifest manifest
    to the .htaccess of this directory.
    The Apache-logs clearly show that the Safari (respectively "AppleCoreMedia") doesn't care about the application cache when it comes to audio-files:
    Safari itself seems to acknowledge the manifest and indeed preload the files:
    192.168.0.40 - - [23/Jul/2011:12:45:46 +0200] "GET /websql/index2.html HTTP/1.1" 200 2619 "-" "Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5"
    192.168.0.40 - - [23/Jul/2011:12:45:46 +0200] "GET /websql/cache.manifest HTTP/1.1" 200 79 "-" "Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5"
    192.168.0.40 - - [23/Jul/2011:12:45:46 +0200] "GET /websql/cache.manifest?%3E HTTP/1.1" 200 79 "-" "Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5"
    192.168.0.40 - - [23/Jul/2011:12:45:46 +0200] "GET /websql/song02.mp3 HTTP/1.1" 200 120525 "-" "Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5"
    192.168.0.40 - - [23/Jul/2011:12:45:46 +0200] "GET /websql/song01.mp3 HTTP/1.1" 200 120525 "-" "Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5"
    Up to this point I did nothing but opening my test-application in Safari.
    Playing song01.mp3:
    192.168.0.40 - - [23/Jul/2011:12:47:25 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 2 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:47:25 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:47:25 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:47:25 +0200] "GET /websql/song01.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:47:25 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:47:29 +0200] "GET /websql/song01.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:47:29 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    Playing song2.mp3:
    192.168.0.40 - - [23/Jul/2011:12:48:04 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 2 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:04 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:04 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:04 +0200] "GET /websql/song02.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:04 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:05 +0200] "GET /websql/song02.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:05 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    Playing song1.mp3 again:
    192.168.0.40 - - [23/Jul/2011:12:48:38 +0200] "GET /websql/song01.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:38 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:38 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:38 +0200] "GET /websql/song01.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:38 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:40 +0200] "GET /websql/song01.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:48:40 +0200] "GET /websql/song01.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    Playing song2.mp3 again:
    192.168.0.40 - - [23/Jul/2011:12:49:12 +0200] "GET /websql/song02.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:49:12 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:49:12 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:49:12 +0200] "GET /websql/song02.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:49:12 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:49:13 +0200] "GET /websql/song02.mp3 HTTP/1.1" 304 - "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    192.168.0.40 - - [23/Jul/2011:12:49:13 +0200] "GET /websql/song02.mp3 HTTP/1.1" 206 120525 "-" "AppleCoreMedia/1.0.0.8J2 (iPad; U; CPU OS 4_3_3 like Mac OS X; de_de)"
    Every file is downloaded again completely when playing it. So "AppleCoreMedia" (whatever this may be exactly, the QuickTime-plugin that is triggered by the HTML 5 audio-element I suppose?) either doesn't have access to the Application Cache or simply just doesn't realize the files in it. So if I switch my iPad to "Airplane Mode" now, the Safari is unable to access / load / play the files.
    I also tried using a QuickTime-object instead of an HTML 5 audio-tag (as far as I know HTML 5 audio and video in Safari always use QuickTime?) and controlling it with something like:
    document.movie1.SetURL('song02.mp3');
    Nothing changes, it's just like using HTML 5 audio and everything gets downloaded again when loading/playing it.
    And even if this would work there'd still be a problem:
    To properly implement that I would have to load the MP3-file in the Application Cache before playing it. When doing this it seems impossible to show a "real" progress: The ProgressEvent that is fired from the Application Cache after updating it doesn't seem to provide any information about data loaded so far and the complete size of a file. It's just "File 1 from 2" and so on, and not a "real" progress where I could determine something like: "100 kB of 1.2 MB loaded" as I can with the audio-element.
    All the other storage-approaches like Web SQL / Web Database or Local Storage are no help either:
    I don't see any way of getting the MP3 data into Local Storage or Web Database or getting it out again to play it. The HTML 5 Canvas-element has a toDataURL()-function to produce a Base64-encoded representation and use it for storage  -  the Audio-element doesn't seem to have anything like this.
    My last really "dirty" approach was trying to load "manually" Base64-encoded-MP3s with a combination of AJAX and PHP: A PHP-script outputs a Base64-representation of a MP3-file and is loaded by AJAX, so I could store the Base64-representation e.g. as Local Storage or in Web Database:
    <?php
    $infile = 'song01.mp3';
    $contents = file_get_contents($infile);
    $base64 = base64_encode($contents);
    $audio = 'data:audio/mp3;base64,'.$base64.'';
    echo $audio;
    ?>
    I tried using the resulting AJAX responseText as the source-argument in an audio-source-tag. Suprise: It doesn't work in Safari on my iPad 2, the player just fails to load the "file", although this works fine in Chrome on Windows. Possibly a size limitation for Base64-URIs on Safari / iOS.
    And again: Even if this was working in iOS/Safari I don't know of a way to determine a real progress from an AJAX-query...
    The last thing I could think of is not replacing the audio- or source-tags when loading a song but leaving them in the DOM-structure, check if it's already there when a song is loaded and just add a new audio-tag if a song hasn't been loaded yet.
    This solution would be my last resort: I'd have to rewrite nearly the whole application to completely operate on JavaScript / AJAX to stay on one site in the browser - else the "cached" audio data would be lost again when changing to another site in Safari.
    Furthermore I think there'll be a small cache limit somewhere when doing this?
    Any ideas?

  • Is there any way to cut audio while keeping the video it is tied to?

    ok, I have a video from a dvd i burned on FCE but the sound is messed up. I am going to be making a AMV with it anyway so I don't really need the audio. Is there any way of cutting the audio without disturbing the video it was imported with. I must stress that they were not imported separately.

    Place the footage in the timeline. Click the lock key on the vidoe time line. This will place a screen looking thing over the video. Select the audio in the time line and press delete. That will delete the audio but keep the video. Then unclick the lock key and all should be well. Always remeber the "undo" option if you mess up. I use it all the time.
    Message was edited by: vidoedude

  • Is there a way to force audio out through the Thunderbolt port?

    I am trying to connect a 15" MacBook Pro to an InFocus 3916 using a Mini DisplayPort to HDMI adapter.
    I know that the computer, adapters, and cables I am using support audio over HDMI.
         I have tested 4 separate adapters, 2 cables, and 2 computers, all of them work when hooked up to a Samsung HD TV.
    I know the Projector supports audio over HDMI, because I plugged a Apple TV into the projector using the same cable, and it worked fine.
    When I am using the Samsung HD TV: System Preferences->Sound->Output shows "Samsung" in the choices of outputs.
    When I try using any of the three Infocus Projectors, it only shows the internal audio.
    I have tried resetting the PRAM, and SMC. I have tried plugging in an audio cable to my computer to force a refresh of the Sound Preference Pane... I have tried turning on and off the projector.
    At this point I am trying to find a way to force Mac OS X to recognize the Projector as an audio output... Or at least to force the computer to think there is something there, so that it will push sound out the thunderbolt port.
    MBP Hardware Configuration:
    15" MacBook Pro, Late 2011
    2.2 GHz Intel Core i7
    AMD Radeon HD 6750M 512 MB
    OS X Lion 10.7.2
    Latest updates except Apple Remote Desktop 3.5.1

    mjs1138 wrote:
    endasil, Thanks for the reply. I'm currenlty running the program from within the NetBeans IDE. It is the output displayed by in NetBeans "output" that I'm looking at.
    --- MikeI don't use Netbeans, but I would guess that it too pipes Standard Out and Standard Error to the same console. You didn't address my comment. Are you printing to System.err as well? This happens implicitly if you use Exception.printStackTrace(), for example.

  • Is there a way to have my videos have the mp4 extension so I can view them on my tv

    I just got a new iPod touch and took several videos. I can view the videos on the touch but I want to see them on my Samsung tv. The Samsung app apparently only recognizes videos with the mp4 extension and it appears that the touch creates its videos with the mov extension. Is there a way to change the default ext for the videos on the touch to mp4s? If not then do I have to find an app that will convert the mov to mp4, attach the touch to my pc, convert the image and copy it back to the touch? Seems lot a lot of work.
    Thanks for your help.
    Marco

    The app that I am using came on the Samsung tv. It is called mediaplayer. I have updated the firmware on the tv but it did not change the app or update it. The same thing happens. It recognizes the photos but not the videos. My friend also has a Samsung tv (differnet model) and I connected the touch to his and the same thing. He has a Motorolla Droid and when he connects it to his tv via a USB cable it does recognize his videos so I imagine that his Droid records videos with the mp4 extension.
    So I am back to my original question. Is there a way to make the mp4 extension as the default when recording videos on the touch?

  • Is there any way to play 1080p videos on the iPad with Retina Display without watching in full screen?

    When I watch 1080p videos from iTunes on my iPad, they are stretched to fit the whole screen (with black borders) even though there aren't enough pixels in the video. This means that the videos are not crisp as one would expect on a retina display, but slightly blurry, as they are not pixel perfect. Is there any way to make the video smaller? Or does anybody know any 3rd-party apps which can do this?

    There isn't as far as I can find - I've had a play around and can't find any way.

  • Is there any way to capture a list of the steps in editing a particular photo in a text file?

    I have just edited some photos for a friend who was short on time, and now she would like a list of the steps I took in editing.  Is there any way of listing those steps in a text file I could send her?

    Not so far as I know, into a text file. The History is not included in the metadata you can write out to XMP, so it cannot be extracted from there.  The History is embedded in a Catalog only.
    But it would be possible to Export as Catalog one sample image - or, a group of the images concerned. Your friend could open this very small catalog, and view the full History of what has been done to the selection of images it contains.
    Note: the History panel is only available in the Develop module, and you can only get into Develop when the image is not "offline". So your friend would need to get the right picture file(s) referenced into this small Catalog you supply. That can be done by re-browsing the location of the containing folder - so, it is not necessary for the images to be physically  living at the same path in both computers..
    More simply, by writing the final metadata out to the file, and sending the file along with its metadata, at least the finished adjustments can be looked at directly. You only need the Catalog with the History in order to see the sequence - and any changes of mind or explorations that have happened along the way.
    The sequence in which you set nondestructive adjustments does not technically matter; the Catalog method would mainly be of interest, to see an example of your working approach. The nice part about that, is that your friend could click through the History states and see how the image changes on screen - while also watching the sliders, tone curve etc moving around with each new step.

  • Is there a way to shuffle music videos on the Touch?

    The Touch is my first video iPod, and I was shocked to see I can't shuffle my videos. I just bought a slew of music videos, and I would like to be able to organize them into playlists and shuffle those, just like my songs. Right now I can only play one video at a time, then I have to manually go back and select another video.
    Am I missing something? Or will this functionality be added in a future software update? Playing videos just isn't very convenient or enjoyable at all with the current lack of shuffle capability. Anyone else feel the same, or am I all alone on this?

    Have done the feedback thing, and hopefully others have as well. Any idea if this functionality of being able to organize playlists of your music videos and play them as such is going to be be possible in any upcoming software upgrade?
    I have actually gone ahead and got the universal dock and component cables, so I can view my music videos on my big screen TV and sound through my stereo and speakers. Sure would be nice to be able to allow a playlist of videos to continually play nonstop without having to go to the Touch after the conclsusion of each single video and select the next one to play.

  • Audio/Video from the net

    There is a wonderful 2 minute violin piece that I can play on my computer (w/RealPlayer) complete with the video of the artist (Leila Josefowicz) playing. Can I get the audio (and possibly the video) to my IPod?

    Dumb Question

  • Is there any way to see at which frequency the Xeons are running at ?

    See topic.
    I'm looking for a small app or even a widget that shows the current CPU / core clock speed, like e.g. CoolBook for the MacBook (Pro).
    Is there anything like that for the Mac Pro ?

    Open the Terminal application in your Utilities folder and at the prompt enter or paste the following then press RETURN:
    sysctl hw.cpufrequency

  • Videos off the Net

    I recently got a new iPod Video. I would like to take little clips that I find on the net and are saved on my computer and put them on it. I am able to get the files onto my desktop, but when I go to import them into my Library, it says that the file isnt properly exported. How do you actually export a file? I have this problem with ripped DVD files as well.
    Thanks!

    Welcome to Apple Discussions!
    Play the videos on your computer. What program do they play in?
    btabz

  • Is there a way to retrieve delted videos from the Iphone4?

    I recently took a short 4 min video on my iPhone4 and some how (not sure how) I deleted it.  If there is a way to retrieve videos can you please let me know. Thanks

    No I unfortunately erased it before even having the chance to back it up to my pc. I had a feeling that would be the response I would get.  Thank you for responding I appreciate it:0)

Maybe you are looking for