Use connect to record video??

I want to try to use connect to record video of an instructor
to include in an online coures. I can record myself as the
presenter, but I want to know if I can use it to record video of a
participant? I looked in the documentation but couldn't find any
info.
Thanks,
Annette

You can. You will need to make the participant a presenter or
give the participant enhanced participant rights to the camera
tool. They can then broadcast their video and you can record it.
Jorma

Similar Messages

  • How to use Quicktime to record video chats (Skype, Google  Hangouts)?

    Hi, all,
    I'm making a movie that includes an interview of someone who lives out of state.  Thanks to modern technology, I can interview her without either of us having to travel farther than our computers.  But, thanks to modern technology, shouldn't there also be a way for me to record this interview for my movie?
    I've figured out how to use QuickTime Player to take a screen recording that includes the audio from the computer, but there are several problems with this.
    I downloaded Soundflower, set the Sound Output to "Soundflower (2ch)" in my System Preferences, then went to QuickTIme, where I started a screen recording and set the Microphone to "Soundflower (2ch)".  With a test run using music, I was able to capture the moving playhead and the audio.  The audio was pretty good, but not quite as good as if I were just listening to the music normally.
    However, this process won't work for an interview setting.  While I was recording, I wasn't able to hear the music on my headphones.  Only afterwards was I able to hear the music.  This means that if I were interviewing someone, Quicktime would be recording her voice but I wouldn't be able to hear what she was saying until after I replayed the video.  Also, I have no idea if the person on the other end of the video chat would be able to hear me (I did leave the sound Input to "Internal microphone" with no trouble from Quicktime).
    Is there a way to have Quicktime record the video and audio and for me to hear what's going on at the same time?
    If not, what [free] software does this?
    Thanks!
    P.S.  Does Quicktime have a limit to screen recording time?

    Great info, thanks for the post!

  • ISight - Photo Booth stops recording silently when recording video.

    Hello,
    I often use iSight and Photo Booth to record videos, and I've observed this error happens all the times:
    For example I record a 5 minutes video, (I stop Photo Booth at the time 5:00), but then when I look again at the file, it's less than 5 minutes. This happens 8 out of 10 times of recording, and it stops silently at a random time, means photo booth does not return to the waiting mode until I press the stop button.
    Does anyone have this problem? Please help. Thanks in advance.

    I must agree I am having a very similar problem myself. In my case, for example, I use photobooth to record videos requiring audio and video (acoustic guitar) and I will record one video which will be fine with audio, but randomly, the next video I record will not have any audio whatsoever, just a video of me playing my guitar. I'm sure other people with this problem know how frustrating it is, especially since I just tried to record an instrumental piece about 13 minutes only to find that photobooth randomly decided not to record audio this time....is there any solution for this?

  • AVCaptureMovieFileOutput for record video

    Hello all,
    I am using AVCaptureMovieFileOutput for record video.Now i want to crop that video. For that i used AVCaptureVideoPreviewLayer & set frame. but recorded video is not crop.
    Thank you...

    Do you mean you want to use the iPod as an audio recorder?
    Currently it is not possible as there are no compatible microphones.
    There are a few in the works by other companies, but as of yet, they have no firm release date (Spring).

  • I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    A third-party app probably cannot obtain a stream from another app. To the best of my knowledge, such a capability is not provided in the software development kit, apps being "sandboxed" from each other and so allowed to communicate only in very specific and limited ways.
    I'm not completely sure what you mean by "limitations on video capture". An iPhone, to the best of my knowledge, can natively record video only through it's built-in camera, and audio while doing video recording only through the built-in microphone or mic/headphone jack. There might be a video recording app that would allow audio input from an external device connected to the dock connector, but I'm not sure.
    Regards.

  • Can I connect an external video camera to a mac book pro for viewing live video so I don't have to use the little screen on the camera?

    Can I connect an external video camera to a mac book pro for viewing live video so I don't have to use the little screen on the camera?

    Shadow30 wrote:
    Can I connect an external video camera to a mac book pro for viewing live video so I don't have to use the little screen on the camera?
    • Only if your video camera supports it.  Depending on how your camera works, you may need to add preview software to your Mac to use this feature.
    • Alternatively, your camera may also be able to record directly into your Mac while you are monitoring the Mac's display.
    • If you are using a consumer camcorder that supports HDMI monitoring, a small HDTV might be an simpler solution than your Mac.  For an example of how this is done, see http://youtu.be/GVpSkZD6qE4.
    • The retailer who sold you your video camera may have other suggestions.
    • If you need more professional results, an external preview monitor will offer more capability on compatible cameras.
    Message was edited by: EZ Jim
    Mac OSX 10.9.4

  • Can I use apogee one with iMovie when recording videos?

    I'm currently making some videos of myself playing guitar peices and want to use my apogee one as the microphone, rather than the built in input. I seem to be able to use it as the main mike for everything but recording video!
    Thanks

    I am not familiar with the Apogee One, but if it connects via USB, it will probably work with iMovie. If it connects via the audio jack input, your best bet is to use GarageBand to record it, and then sync the sound to your movie later.

  • Hi I want to broadcast recorded video using flash encoder?

    Hi I want to broadcast recorded video using flash encoder, or their is any other way for broadcating recorded media files as live tv?

    Hi,
    You can do server side play of the recorded media file. After that once any one connects to that application, that file will be played as live. Following is the code to do this:
    var streamname="stream_name.flv"; //Name of the recorded media file
    application.onAppStart=function(){
              application.onNCA();
    application.onConnect=function(clientObj){
              application.acceptConnection(clientObj);
              trace("***Connected : "+isConnected);
    application.onNCA=function(){
              trace("onCA "+streamname);
              streamObj=Stream.get("foo");  // foo will be the live stream name
                        streamObj.onStatus = onStreamStatus;
                        trace("here "+streamname.split(".")[1]);
                        switch(streamname.split(".")[1]){
                                  case "mp4":
                                  case "3gp":
                                  case "f4v":
                                            streamPlayName="mp4:"+streamname;
                                            break;
                                  case "mp3":
                                            streamPlayName="mp3:"+streamname.split(".")[0];
                                            break;
                                  case "flv":
                                            streamPlayName=streamname.split(".")[0];
                                            break;
                        trace(streamPlayName);
                        streamObj.play(streamPlayName);
    function onStreamStatus(info){
              trace("Stream "+info.code);
    application.onDisconnect=function(clientObj){
              application.shutdown();
    Anyone connecting to above app will be able to play "foo" as livestream name.

  • Recording video using external iSight and audio using wired input

    I would like to be able to record video using an external iSight camera I have from my old powerbook, but I don't want the audio to record through the internal microphone...I want it to record through a wired input coming off a mixer...is this possible?

    Welcome to iMovie Discussions.
    "..is this possible?.." ..I don't think so. By connecting an external FireWire iSight camera, iMovie expects both the vision and the sound to come in down the same FireWire cable.
    If you need to use a separate audio input, you may be able to do it by connecting a FireWire-capable camcorder (..a tape-based miniDV or HDV camcorder which uses a FireWire connection to attach to a Mac..) and then feeding your mixer's output to the camcorder's external-mic input ..at very low volume, of course, so that you don't wreck the camcorder's input.
    This entails using a camcorder which does have an external-mic (or line) input. That way, the picture from the camcorder will go straight into iMovie, as will the audio which is being fed into the camcorder ..thus both reaching iMovie via the camera's FireWire connection.

  • Recording video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http.

    As titled, what is the way to record video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http?
    What I am trying to do, is to record a user's microphone's input and save it to the server. Afterwards, I would like other users to be able to access the recorded files and mainuplating the audio data, by computeSpectrum(), to do some visualization of the audio. As I know computeSpectrum() cannot work on streaming files, so I think I need to access the recorded files using http instead of rmtp. Is that true?
    How can I redirect the http request to the files I was recorded into my applications/appName folder? Or I need to somehow moved the recorded files to the /webroot folder?
    Thanks!

    I probably have asked a stupid question.
    My recorded streams are still saved in the applications/appName/streams folder.
    And I redirect the www.mydomain.com/streams to point to the applications/appName/streams folder.
    And the rmtp recorded streams are abled to connect through http now.

  • I'm using ezcap.tv 116 ezgamer capture card to record my PS3, this is on a windows laptop, Im then moving the recorded videos in mpg format over to my MacBook Pro to use IMovie to edit them to upload to youtube but it won't let me import them.

    I'm using ezcap.tv 116 ezgamer capture card to record my PS3, this is on a windows laptop, Im then moving the recorded videos in mpg format over to my MacBook Pro to use IMovie to edit them so i can upload them to youtube but it won't let me import them, even after changeing them to MP4 format, it just comes up with the message: "No Importable Files None of the selected files or folders can be imported. Change the selection and try again."
    Ive even tried opening in itunes and copying from thier but they wont open in Itunes, no message or anything they simple just dont open. its strange because it does open in quicktime player.
    please if anyone has any ideas that can help me please let me know XD thanks.

    First problem: You're fine. The hotter it gets, the more the fans spin up. The computer is designed so that at max load, at max fan speed, it won't overheat (unless it's obstructed by something, e.g. sitting on your bed swallowed by a comforter). It's not the best thing to keep it that toasty for days at a time, but a couple hours at a time shouldn't be a problem.
    Second problem: If something in the trash won't delete, just use Secure Empty Trash and it should be fine. Since .torrent files are quite small, it should only take a couple seconds.

  • I am after using my ipad for 2-3 hours to record video, it will be while traveling so I could do with being able to set it up so it just records while I drive. Is this possible?

    Hello as stated I wondered if there is an app that I could use to record a journey that I will make, it will take aprox 3 hours I can charge my ipad up as I go so battery life is not a problem and I have quite a bit of room on my I pad. Is it possible?

    Sure why not. The camera app will record videos and there are car chargers for the iPad that you can purchase. You will need some sort of stand to place the iPad into, but those are available as well. You might need to adapt the out of the box car stands to face in the direction that you want, but there are lots of them out there.
    You should set the iPad to not go to sleep in Settings>General>Auto Lock>Never until you are done recording.
    Car chargers
    https://www.google.com/search?q=car%20charger%20for%20iPad%202
    Car Stands
    https://www.google.com/search?q=iPad%20car%20stands%20
    Sorry, I just realized that you have a charger.
    Message was edited by: Demo

  • I just put Facetime on my MacBook and Ipad. I can connect and recieve video but no sound. The other person can hear me. If I use Skype everything works fine. I can't find any where in Facetime to change settings for the audio. Any suggestions

    I just put Facetime on my MacBook and Ipad. I can connect and recieve video but no sound. The other person can hear me. If I use Skype everything works fine. I can't find any where in Facetime to change settings for the audio. Any suggestions

    Options for when an iOS device gets locked because of forgotten passcode:
    Restore (and reset passcode) on your device by connecting it to the last computer to which it was connected:
    iTunes: Backing up, updating, and restoring iOS software - http://support.apple.com/kb/HT1414
    If you cannot connect it to the computer to which the device was last connected (or the device was never connected to a computer) you will have to use recovery mode to completely reset the device, losing all data:
    iOS: Unable to update or restore - http://support.apple.com/kb/HT1808 - recovery mode (e.g., cannot connect to computer last used to sync device, iTunes still asks for a password)
    If recovery does not work there's:
    DFU mode: http://osxdaily.com/2010/12/04/ipad-dfu-mode/
    How to put iPod touch / iPhone into DFU mode - http://geekindisguise.wordpress.com/2009/07/16/how-to-put-ipod-touch-iphone-into -dfu-mode/

  • Trying to connect IPhone 4s to TV using AV TV RCA Video USB connector Does this require any special software?

    Have been unable to get IPhone 4S to show up on AV TV
    Using AV TV RCA Video USB connection. Have tried in
    HD 720i, HD 1080i and 1080p TV's.  Is there any special
    software needed on the I Phone to do this?  if so please
    advise.

    I don't think the dock can support the HDMI dongle. I know it will do Video Out via Composite cable.
    The actual dock itself has not been updated for a few years, so this may explain your problem. The packaging was changed last year to include the new remote, dock adapters, and a wall charger. The dock itself is still identical to the 2009 model.

  • Can you use midi sounds when recording videos on Photobooth?

    Can you use midi sounds when recording videos on Photobooth?
    Basically, i like to record videos of me singing and playing guitar or keyboard, but to get a good sound for the keyboard I'd like to be able to record the audio using MIDI sounds...
    Ive got Logic, I've got M-Audio Fast Track Pro, into which i have my mic, guitar, and keyboard midi plaugged into. I can use it to record the mic and guitar on photobooth as they are audio inputs, however i can't use the midi sounds on the keyboard :/ I have tried having logic open with the desired MIDI sound selected whilst recording but it doesnt work...
    Is there ANY way this is possible?
    HELP PLEASE!
    Thanks!

    I Have just the same problem, if I shout very near the microphone i can just hear something, did you manage to solve the problem?

Maybe you are looking for