Record Skype Webcam?

This may not be the right place to put this question, however, I have a client that does quite a bit of conferencing etc via Skype, using the webcam built into a 17" Macbook Pro.
They would like to be able to record the incoming Skype webcam and audio, so I can then bring it into FCP and pretty it up a bit. I can do the local stuff later, with a higher quality set up.
Is there a program that will record the incoming Skype webcam and audio directly onto the MBP hard drive?
Thank you.

A quick google brings up SkypeCap and Call Recorder ... both look like the sort of thing you're after.
Plus you can of course also use any number of screen recording software to capture the video ... the lastest Snow Leopard's Quicktime X application can do this. Its "free" if you have OS X 10.6 although its perhaps not as fully featured as some of the third party alternatives like ScreeFlow, iShowU and Snapz Pro
You can also use scan convertor hardware such as the Matrox MXO to capture it directly to regular video recording hardware.

Similar Messages

  • How to record Skype video calls on Mac?

    Hello guys , i want to know how can i record skype video calls on Mac? 

    Hi Carpi, i used this program to record all my skype video calls , https://www.youtube.com/watch?v=4iHfWZ9C74g
    Also you can visit webcam-recorder.com

  • Can I record Skype video feed using iSight camera?

    I have tried to use the iMovie application to record video sessions via Skype but I am not sure if this is possible. The Help instruction tsay to click the mode switch to set iMovie to built-in camera mode but i do not see this function. Does this mean I do not have the correct version of iMovie or that my computer is not compatible for this function?

    drw1976 wrote:
    I have tried to use the iMovie application to record video sessions via Skype but I am not sure if this is possible. The Help instruction tsay to click the mode switch to set iMovie to built-in camera mode but i do not see this function. Does this mean I do not have the correct version of iMovie or that my computer is not compatible for this function?
    You cannot use your built-in iSight for video in two applications (Skype and iMovie) at the same time.
    I do not see any built-in ability to record video calls in Skype's video features page:
      http://tinyurl.com/239gqgf
    The easiest way for you to record Skype video is to add http://ecamm.com/mac/callrecorder/
    You will find many other possibilities if you search the web for "+how to record Skype video call?+" (without the quotation marks.) You may find many other perfectly acceptable alternatives, but I have always had good results with ecamm products and can recommend them in good conscience.
    If you are determined to use iMovie, I can suggest two ways to record a Skype video call using iMovie:
    (1) Run Skype on one Mac
      • Run iMovie on a second Mac pointing at the first Mac's display.
    (2) Connect an external webcam to your Mac. (With more than one camera, iMovie will show both.)
      • Launch iMovie and select the external cam as the video recording source.
      • Point the external cam at your Mac's display. 
      • Launch Skype and verify that your built-in iSight is the cam that Skype will use.
      • Start your Skype call and set the window size, brightness, and location.
      • Adjust the iMovie cam to show the part of your display you want to record and start recording.
    Call Recorder seems a much better ways to record your Skype videos than either of these.
    *For Snow Leopard users wanting to record Skype video*: you can record your entire display regardless of what app is running by using the QuickTimeX (version 10.x) that is bundled with Mac OS X 10.6.x. (10.5.8's QuickTime does not offer this screen recording feature.) QTX records only the full screen, so a product like Call Recorder may still be of interest to SL users who want to record less than full screen calls.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • Record from webcam to f4v on FMS

    I'm trying to build / modify an application to record from webcam and microphone, in a web browser and save it to an FMS 5.4.2 server to stream via web and iOS
    recording as a flv file works fine and it plays back just fine in firefox / any browser
    I can steam f4v files over http as filename.f4v.m3u8 and that works fine with the samples that come with FMS from my record folder (/opt/adobe/fms/applications/record/streams/)
    My flash web application can record to the FMS server, the file it records has the .f4v file extension, has content (i see the file size), and has time in quicktime (4 or 5 seconds - just a test) but it doesn't play - the screen is black and never starts.
    I know i'm right on the edge of figuring this out, I just don't know what I'm missing or whats wrong (i'm a php programmer, not action script)
    any ideas ?
    here is the code i'm working with:
    package com
        import fl.controls.ProgressBar;
        import fl.controls.ProgressBarMode;
        import flash.display.MovieClip;
        import flash.events.Event;
        import com.NetConnector
        import flash.events.MouseEvent;
        import flash.events.TimerEvent;
        import flash.media.Camera;
        import flash.media.Microphone;
        import flash.media.Video;
        import flash.net.navigateToURL;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.net.URLLoader;
        import flash.net.URLLoaderDataFormat;
        import flash.net.URLRequest;
        import flash.net.URLRequestMethod;
        import flash.net.URLVariables;
        import flash.text.TextField;
        import flash.utils.setTimeout;
        import flash.utils.Timer;
        import flash.media.H264Level;
        import flash.media.H264Profile;
        import flash.media.H264VideoStreamSettings;
        import flash.media.VideoCodec;
         * @author Alexander (flash2you) < >
        public class Recorder extends MovieClip
            private var dataHolder:DataHolder = DataHolder.getInstance()
            public var layer:MovieClip
            public var activityLevel_pb:ProgressBar
            public var aguja:MovieClip
            public var aguja2:MovieClip
            public var publishButton:MovieClip
            public var timer_txt:TextField
            public var recordStatus:MovieClip
            public var recordBtn:MovieClip
            private var netStream:NetStream
            private var microphone:Microphone = Microphone.getMicrophone()
            private var camera:Camera = Camera.getCamera()
            public var  video:Video
            private var timer:Timer = new Timer(100)
            private var clockTimer:Timer = new Timer(1000)
            public var published:Boolean = false
            private var isRecording:Boolean = false
            private var minutero = 0;
            private var crono = 0;
            private var records = 0;
            public var settings_mc:MovieClip
            public static var recorder:Recorder
            public var settings_icon:MovieClip
            private var limitTimer:Timer
            public function Recorder()
                Recorder.recorder = this;
                timer.addEventListener(TimerEvent.TIMER, on$timer)
                clockTimer.addEventListener(TimerEvent.TIMER, on$clockTimer)
                //visible = false
                recordBtn.buttonMode = true
                recordBtn.addEventListener(MouseEvent.CLICK , recordBtn$click)
                recordBtn.addEventListener(MouseEvent.MOUSE_OVER, recordBtn$over)
                recordBtn.addEventListener(MouseEvent.MOUSE_OUT, recordBtn$out)
                addEventListener(Event.ADDED_TO_STAGE, onAddedToStage)
                limitTimer = new Timer(dataHolder.timelimit * 1000);
                limitTimer.addEventListener(TimerEvent.TIMER, onLimitTimerHandler)
            private function onLimitTimerHandler(e:TimerEvent):void
                 stopPublish()
             *  when we comes to second frame
            private function onAddedToStage(e:Event):void
                removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
                init()
             *   function for set up camera from settings module
            public function setCamera(_camera:Camera) {
                camera = _camera
                addCameraSettings()
                video.width = 1280;
                video.height = 720;
                video.attachCamera(camera)
                if (netStream){
                    netStream.attachCamera(camera)
            public function setMicrophone(mic:Microphone) {
                microphone = mic;
                if (netStream){
                    netStream.attachAudio(microphone)
                addMicSettings()
            private function addMicSettings() {
                microphone.setUseEchoSuppression(true);
                microphone.setSilenceLevel(1)
            private function addCameraSettings():void
                camera.setMode(1280, 720, 25);
                   camera.setLoopback(true);
                   camera.setQuality(0, 100);
            public function init() {
                startConnect()
             *  main function for connection
            private function startConnect() {
                visible = true
                timer_txt.htmlText = "<b>00:00</b>";
                initCamera()
                initMicropone()
                var nc:NetConnection = new NetConnection()
                nc.connect(null)
                netStream = new NetStream(nc)
                netStream.attachAudio(microphone)
                video.attachCamera(camera)
                layer.visible = false
                publishButton.gotoAndStop(1);
                activityLevel_pb.mode = ProgressBarMode.MANUAL;
                recordStatus.gotoAndStop("noRecord")
                timer.start()
                connection.addEventListener(NetConnector.CONNECTED, connectionComplete)
                connection.startConnection()
            public function get connection():NetConnector {
                return dataHolder.connection
            private function on$timer(e:TimerEvent) {
                activityLevel_pb.setProgress(microphone.activityLevel, 100)
             *  when connection to your stream server done
            private function connectionComplete(e:Event = null) {
                netStream = new NetStream(connection)
                netStream.attachAudio(microphone)
                netStream.attachCamera(camera)
             *   add 0 if less then 10secs
            private function addLeading(nbr) {
                if (nbr<10) {
                    return ("0"+Math.floor(nbr));
                } else {
                    return (Math.floor(nbr).toString());
             *   update visible clock, rotate arrows
            private function updateTimer() {
                timer_txt.htmlText = "<b>"+addLeading(crono/60)+":"+addLeading(crono%60)+"</b>";
                aguja.rotation = aguja.rotation+6;
                if (addLeading(crono/60)>minutero) {
                    aguja2.rotation = aguja2.rotation+6;
                    ++minutero;
                // end if
                ++crono;
            private function on$clockTimer(e:TimerEvent):void
                updateTimer()
            private function startClockTimer() {
                clockTimer.start()
             *  update graphics and start recording
            private function recordBtn$click(e:MouseEvent):void
                if (!isRecording) {
                    startRecording()
                    recordStatus.gotoAndStop("record")
                    recordBtn.visible = false
            private function recordBtn$over(e:MouseEvent):void
                if (!isRecording) {
                    this.gotoAndPlay(65);
            private function recordBtn$out(e:MouseEvent):void
                if (!isRecording) {
                    this.gotoAndPlay(61);
            private function startRecording() {
                if (connection.connected){
                    netStream.publish("mp4:" + dataHolder.filename + ".f4v", "record");
                isRecording = true
                startClockTimer()
                publishButton.gotoAndPlay(2)
                publishButton.buttonMode = true
                publishButton.addEventListener(MouseEvent.CLICK, publishButton$click);
                limitTimer.start()
             *  redirect to finishURL that was passed via flashvars
            private function publishButton$click(e:MouseEvent):void
                stopPublish()
                var request:URLRequest = new URLRequest(dataHolder.finishURL)
                navigateToURL(request, "_self")
            private function stopPublish():void
                netStream.close();
                connection.close();
                limitTimer.stop();
                clockTimer.stop();
                isRecording = false
                recordStatus.gotoAndStop("recordEnd")
                updateTimer();
             *  init microphone
            private function initMicropone():void
                microphone = Microphone.getMicrophone()
                addMicSettings()
             *  init camera
            private function initCamera():void
                camera = Camera.getCamera()
                addCameraSettings()

    Hi,
    Thanks for the details
    First, the quality of the feed we get to the flash player and FMS is highly limited by the capabilities of the webcam that the users have beyond which we cannot improve the quality.
    Next, flash player can encode good quality and hence you should probably find more stuff related to how best you can ingest video from a webcam on to the flash player.
    - Does recording from server side with asc script will increase the quality ?
    No, FMS does not do any type of transcoding/re-encoding stuff. All it does is to 'transmit' and in your case, to flush bits to the disk. So, unless FMS recieves 'Quality', it cannot do much.
    - what configurations files on the server can i adjust to increase the recording quality ?
    From above, it flows that, there are no configurations on the server that can make your quality grow. The configurations are more to do with delivery. It can be tweaked to improve streaming, reduce latency, quick start and more.
    - is there a way to cache locally the stream if the bandwith is not high enough, and when the user stops recording, upload it to the server (it doesn't have to be live or broadcast).
    I don't think flash player can do this.
    Thank you !

  • Help recording a webcam

    Hi,
    I am planning on creating an application that will need
    webcam activity recorded and then uploaded to a database, I know
    that flash media server will be needed, but how do I go about
    recording a webcam in flash and linking it with flash media server?
    Any help would be much appreciated
    thanks
    Gavin

    Thanks!,
    have found this code in the documentation, but having a
    slight problem
    The following example shows how to publish and record a
    video, and then play it back.
    /* This script publishes and records video.
    The recorded file will be named "allAboutMe.flv". */
    var my_nc:NetConnection = new NetConnection();
    my_nc.connect("rtmp://localhost/allAboutMe/mySpeech");
    var publish_ns:NetStream = new NetStream(my_nc);
    publish_ns.publish("allAboutMe", "record");
    publish_ns.attachVideo(Camera.get());
    /* This script plays the recorded file.
    Note that no publishing stream is required to play a recorded
    file. */
    var my_nc:NetConnection = new NetConnection();
    my_nc.connect("rtmp://localhost/allAboutMe/mySpeech");
    var subscribe_ns:NetStream = new NetStream(my_nc);
    subscribe_ns.play("allAboutMe");
    my_video.attachVideo(subscribe_ns);// my_video is a Video
    object on the Stage.
    For this line
    my_nc.connect("rtmp://localhost/allAboutMe/mySpeech");
    I am having trouble with the location, what do I need to put
    in here?, When I entered admin details for fms2 I didn't enter a
    server address?, what needs to go in there? and is that meaning
    this code won't work at the moment?
    thanks
    Gavin

  • Recording Skype using Soundflower and usb audio interface as aggregate

    I want to record Skype calls.
    I installed Soundflower and Audacity records Skype far side audio fine when Soundflower is selected as the input. However, I want to record far side audio PLUS my microphone that runs through my Focusrite Forte usb audio interface (Audacity records my mic just fine with Forte selected as the input).
    So I created an aggregate input device in OS 10.9 consisting of the Forte and Soundflower inputs. When I test out the aggregate audio input in the Mac audio settings, I see soundbars from both devices. However, when I choose the aggregate device as the input in Audacity, only the Forte device is recorded (not Skype).
    Any ideas as to why only one of the two devices in the aggregate input is being recorded by Audacity?
    Did I set up the aggregate incorrectly?
    Many thanks!

    The people over in the GarageBand forums are amazing at diagnosing and fixing these sorts of things. I recommend that you give it a try posting the question over there:
    http://discussions.apple.com/forum.jspa?forumID=1308
    Good luck!

  • Importing a recorded Skype call into Premiere Pro & audio goes out of sync. PLEASE help!

    Every time I try and import a clip it gets out of sync, but if I open the file in quicktime its perfect???

    (Not sure why this response was originally rejected by the moderators, but am trying again.)
    A solution that worked for us:
    [EDIT] I do NOT work for any of the companies included in this solution, nor do I receive any kind of renumeration from them. I am recording the software and steps we used to overcome the problem of the original poster.[END EDIT]
    The Skype Call Recorder (Ecamm) has 4 built-in converter/splitter apps (you have to look in the "Movie Files" folder to find them). We used the apps to split the recorded Skype video calls into 2 separate "conversations" and then used a free online converter (http://www.online-convert.com/) to convert the conversations into MP4s. Once the MP4s were imported into Adobe Premiere the audio lined up perfectly with the video.
    Hope this helps somebody.
    (Note to moderators: a message containing the "why" a reply was rejected would be helpful when members are trying to edit.)

  • Record Skype Interview Put interviewee on separate track

    I want to make an interview podcast using Skype. I have garageband and an M Audio Fast track usb interface. Does anyone know if it is possible to put the interviewer and the interviewee on separate tracks using what I have? Thanks.

    The best way to record skype interviews is off the computer.
    http://www.podcast411.com/mixer.pdf
    Here is the set up I have been using for the past 8+ years for podCast411.  If you pan your self left and the other person right - you can record each on your own side of the track and can break out in post. 
    This will give you the best sounding skype recordings and also the most reliable recordings.
    You do NOT want to record in garageband - if you are doing an interview - garageband is very flakey and you will have crashes with garageband and you WILL loose interviews.  Do not use Garageband to record your interviews.
    Regards,
    Rob W
    podCast411

  • Skype webcam buffering - unable to see video

    My Skype webcam just started buffering; the skype screen shows a grey screen with the loading circle, but will not load video. My webcam is also doing this, and the person who I was calling said it was happening to them too. I tried to run Microsoft Fix It, but it said Windows 8 wasn't supported. The audio was a bit sketchy as it would run normal audio, and then it would lower significantly before going back up to normal audio again; this happened randomly. This is the first time this has happened to me, and this computer is new; an ASUS ROG G751JT, which I got last december. The video cards seem fine, though I'm not sure if they need to be updated. Like I said before, this is the first time this has happened to me. I'm not sure what I should do, please help. Thanks!

    Please,  run the DirectX diagnostics tool. Go to Windows Start  and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post. Be aware that you will have to zip this file before attaching it here.

  • Panasonic TC-L55ET5 Skype Webcam

    Bought the Panasonic TC-L55ET5 on Black Friday.  Would like to use the Skype feature but don't want to pay the $100 for the webcams that are advertised.  Are there any cheaper alternatives for a Skype webcam that is compatible with Viera Connect on this set?  Thanks in advance for any help.

    what is the model number of your receiver?
    I DO NOT work for Best Buy, Geek Squad and any way affiliated with them. I am a self-employed repairman. I specialize in TV's and desktop computers. I do not take sides. If BB is wrong I will say so. If you are a moron with a false sense of entitlement, then I will tell you.

  • Record a webcam session?

    What program can I use to record a webcam session? (recording someone else's webcam while we are connected)

    I would also like to see video capture in AFCS. It would be preferable to record on my server because of the expense on the adobe side and the difficulties of doing any manipulation.
    For the greatest depth of function I would like to see the recording of whole containers or screen. For example if I has a canvas with 4 cameras and whiteboard. The recorder would record all that takes place within, be it one stream or five. Other items could be contained with the canvas such as a clock and a list of users present.
    The recorder could be expanded to capture the whole screen if needed.
    There are huge possibilities for such a function. Recording sales pitches for training purposes, recording the minutes of meetings or brainstorming sessions etc.
    Thanks, Keith

  • Having Trouble Recording Skype Interview on Separate Tracks

    I'm using the Presonus Firestudio Project Mixer and Adobe Audition to try and record Skype interviews on separate tracks.  I am positive I have all cables hooked up properly on the mixer.
    Everything works fine except track two, which should only be picking up the other line of the Skype call, is still slightly picking up my voice.  So track one is just me.  Track two is podcast guest plus still me faintly.  I have track one dedicated to mic one, which is me.  And track two is dedicated to mic 3, which loops through the back on the mixer to the main outs.
    How can I completely eliminate myself on track two so that it only picks up the guest?

    I have two XLR Male to 1/4 inch TRS Male coming out of Mics three and four of the Presonus and routing back around back into the main outs of the Presonus.  This is supposed to make the loop so the Skype call can record separately. 
    I'm connecting Audition to the Presonus simply by selecting Mic three for the guests track and Mic one for mine.  It's picking up both fine, it's just picking me up on both tracks.  The Skype signal is coming into Audition via the Presonus mixer.
    All Audition, Skype and Mac audio settings are set entirely to Presonus.

  • Recording Skype Calls on Windows 8?

    Hey guys, I just updated to Skype 7.0 on my Windows 8 Pro PC. I just wanted to know how I can record Skype conversations for free. Is there a "built-in" feature to Windows 8 Pro I can use?
    Thanks!

    There is unfortunately not any built in feature/program to windows 8 that I am aware of.
    I tend to use a program called Camtasia but there is one which I have not tried called Adobe Captivate 8 http://thankyou.adobe.com/en/au/products/CP/v4/1106_captivate.html?sdid=KHSMT&skwcid=AL!3085!3!45057...
    Unfortunately most programs like these are costly and most come with a free trial

  • Recording skype sessions

    Is it possible to record a skype session?

    Hi, NeighborHOPE, and welcome to the Community,
    Now that the Skype Apps directory (the post from 2013, above, is outdated now) has been retired, you will need to research Skype-compatible third-party add-on software that will meet your needs.  You might start your search with something like, "record Skype audio calls" or "record Skype video calls." 
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • No Video on Skype webcam Yosemite

    I am using Skype 7.2.412 there is no video just a black screen (although ledi ndicates that it is on).
    Tried also with Skype_7.1.665 same problem ( did try to reinstall, reinstall + reset computer) nothing seems to work.
    MacBookPro11,2 
    OS: Yosemite 10.10.1
    Note: The same webcam works on Facetime and other programs that uses a webcam. And no, I am not using any of those programs when trying to use skype.

    Try removing the app and adding it back. If that doesn't work
    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

Maybe you are looking for