Live video from camcorder.

I need a camcorder that shoots in 1080 HD AVCHD format. The camera needs an external mic jack that is 3.4 mm to connect a lav mic or even a wireless receiver. It has to have optical zoom and manual focus. (Can have auto also.) This camera also needs a HDMI port that allows for the camera to send a live video signal into a 2.6GHz Intel Core i7, 16 GB Retina Macbook Pro into a program such as Boinx TV. Please tell me if the Canon Vixia HF G30 or a similar camera would work for this. Would I also need a Blackmagic video capture card in this process? Thank you for the help.

iMovie can do this if the camera is compatible:
iMovie 11 - cameras supported:
http://help.apple.com/imovie/cameras/en/index.html?lang=en_US
iMovie 9 - cameras supported:
http://support.apple.com/kb/HT3290?viewlocale=en_US

Similar Messages

  • Way to use Live video (from camcorder) as a background?

    Hello.
    I was wondering if there's any way to use live video (from camcorder) as a background using Keynote.
    I am trying to add caption/subtitle on live video to projector.

    I haven't tried this myself recently (the last time I tried it, the delay was frozen to no less than 3 seconds), but a user in this thread said he got the delay down to .1 seconds by using QuickTime Broadcaster and altering the .sdp file.
    This technique uses Broadcaster to make your computer stream to itself and use the stream file in Keynote.
    http://discussions.apple.com/message.jspa?messageID=7228452#7228452

  • Streaming live video from iPad Air to an projector

    I would like to stream (IPad air) a live video to an projector visa Wi-Fi

    toks2003 wrote:
    ..I am a student trying to work on a project that requires streaming live video from an I.P. camera i have posted this topic earlier and a good friend refered me to this forum. I am not anybody's good friend, as it happens. Also, on your [first thread|http://forums.sun.com/thread.jspa?threadID=5445888], I recommended that ..
    ..If you think your thread will do better there, mention it and I'll get a moderator to move it...which would have been a better option than starting a new thread.
    It is good you took up at least dome of the recommendations, particularly code tags and indenting code, but there were also a number you seem to have missed. To save others the effort of writing what has already been said and seemed to be ignored, I recommend:
    - They look at that thread first.
    - You read it carefully again.

  • How do I transfer live video from the iPad to my Apple TV.  Seems there is a key stroke but I find no reference anywhere

    How do I transfer live video from the iPad to my Apple TV.  Seems there is a key stroke but I find no reference anywhere!

    http://support.apple.com/kb/HT4437
    Regards.

  • Is it possible to stream live video from a camera to an iPad3 via bluetooth or a cable?

    Is it possible to stream live video from a camera to an iPad3 via bluetooth or a cable?
    I want to use my iPad as a screen for a reversing camera in my van and want to know if this is possible. do i need a bluetooth camera and is there a specific one that will connect to the iPad? Or is there any form of adaptor that I can plug the camera straight into the iPad?
    Any ideas?

    no
    only "live" thing one can do is to airplay mirror the screen of a ios device or a newer mac with mtn lion

  • Can't import live video from Sony PD 170.

    Just got Final Cut Pro X. In a New Event I am able to import live video from the new MacBook Pro computer's built-in camera and pre-recorded video from my Sony PD-170 camera. However, when trying to import live video from the PD-170, the program only APPEARS to do so--the clips never show up once I close the import window. Any suggestions?

    I think iMovie is corrupted. I would like to try to uninstall iLife 11 but when I put in the disc there is no uninstall option. I tried trashing iMovie from applications and reinstalled all of iLife (I believe wasted space on my HD) but the issue remains. (Maybe because I didn't delete the receipts?) iMovie can not see any devices or use iSight for capture...

  • Can i take live video from TV tuner? how? urgent help is needed

    can i take live video from TV tuner? how?
    i have downloaded this code for a web cam how can i adjust it to take live video from TV tuner
    * WebcamPlayer.java
    * Created on November 22, 2004, 4:09 PM
    import javax.media.Player;
    import javax.media.CaptureDeviceInfo;
    import javax.media.MediaLocator;
    import javax.media.CaptureDeviceManager;
    import javax.media.Manager;
    import javax.media.format.VideoFormat;
    import java.awt.Component;
    import java.applet.*;
    import java.util.Vector;
    * @author Administrator
    public class WebcamPlayer extends Applet
    private CaptureDeviceInfo device; // Contains the device properties
    private MediaLocator ml; // Contains the location of the media comming from the webcam
    private Player player; // the player
    private Component videoScreen; // Component that is capable to show the player's visual component
    public void init()
    try
    {   //gets a list of devices how support the given videoformat
    Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.MJPG) );
    //device = CaptureDeviceManager.getDevice("vfw:Creative WebCam NX Pro (VFW):0");
    //gets the first device from the deviceList
    device = (CaptureDeviceInfo) deviceList.firstElement();
    System.out.println("Chosen device: "+device.getName());
    //String str1 = "vfw:Creative WebCam NX Pro (VFW):0";
    // de webcam indentifiseren
    //device = CaptureDeviceManager.getDevice(str1);
    //gets the location of the device, is needed for player
    ml = device.getLocator();
    // makes player and gives the streaming video location (that is locate in the MediaLocator)
    // this oparation is blocking until Manager has made a player that is realized.
    player = Manager.createRealizedPlayer(ml);
    //starts the play
    player.start();
    //Gets a component from the player that can show the actual streaming from the
    //webcam.
    videoScreen = player.getVisualComponent();
    //adds the component that displays the streaming to the applet.
    add(videoScreen);
    // Now the user can see the steam that is from the webcam in the applet
    catch(Exception e)
    System.out.println("no device");
    thanks here is my mail if any wants to mail me [email protected]

    just visit
    http://javasolution.blogspot.com/2007/04/java-tv-api-overview.html

  • Convert live Video from video recording device to a stream

    Hello,
    I want to convert the captured live video from a Windows phone device to a stream so I can Send it over sockets. Any ideas guys?
    in other words, I want to send live video data over sockets.
    Thanks in advance.

    Hello Motasim_Albadarneh,
    the sample at
    [1], the threads at
    [2],
    [3] and
    [4] should be helpful to your problem.
    [1]
    https://code.msdn.microsoft.com/windowsapps/Simple-Communication-Sample-eac73290
    [2]
    http://stackoverflow.com/questions/14187487/windows-phone-camera-feed-over-udp-is-horribly-slow
    [3]
    http://stackoverflow.com/questions/9602582/how-would-i-create-a-windows-phone-live-camera-feed
    [4]
    https://learnwithshahriar.wordpress.com/2015/01/13/guideline-on-how-to-make-a-streaming-app-in-windows-phone
    Regards,
    Bo Liu
    Developer-Hotline for MSDN Online Germany
    Disclaimer:
    Please take into consideration, that further inquiries cannot or will be answered with delay.
    For further information please contact us per telephone through the MSDN-Entwickler-Hotline:
    http://www.msdn-online.de/Hotline
    For this post by the MSDN-Entwickler-Hotline the following terms and conditions
    apply: Trademarks,
    Privacy
    as well as the separate
    terms of use for the MSDN-Entwickler-Hotline .

  • Live video from isight embedded into keynote slide

    I have been trying to figure out how to embed live video from my isight camera into keynote. I have tried creating a stream from quicktime broadcaster and import the .sbp file into keynote, but it will not except the stream file. I did not know if there was another way to do it besides the stream or if perhaps I could use another program to help input the video.
    My ultimate goal is to be able to present slides and have a live video from my isight during the slideshow on one of the slides. I guess if there is some other way to get both the slideshow presentation and video on the presentation screen without any program headings, in a clean fashion, that would be acceptable too; even if a different program was handling the video and it wasn't technically embedded.

    Cool, I can see me using this - need to properly test with http://b-l-a-c-k-o-p.com/CamCamX.html#upgrade
    this allows you to choose video sources to play - so i'm betting it will allow video cameras to be used - so it ought to be possible to do live demos/illustrate slides with 3d objects etc ... cool - suspect voice syncing still might be an issue. And KN record doesn't work properly if you have a live movie - it just shows the camera content that's live ... (if you follow me...)
    PS Almost forgot - it will do one of the things I was so desperate to achieve: It would allow you to have a window on the screen with a live feed of a signer for those who use BSL and other sign languages - that's really important. And if you needed to you could use two projectors (see other thread on multiple screens) and put the signer on a nicely designed screen all of their own. WOW!!!
    Message was edited by: Peter D Cox

  • Can you receive live video from a tv web site on a ipad

    Can you receive live video from a tv web site on your iPad

    If the website you're viewing has HTML5 streaming, or an iPad-specific app, then yes. If the website uses Flash or Java or any "plug-in" technology, then no.

  • Is it possible o stream live video from an ipad to an apple tv

    is it possible to stream live video from an ipad to an apple tv?

    http://support.apple.com/kb/HT4437
    Regards.

  • Can I stream live video from mobile to fms using flashlite?

    Can I stream live video from mobile to fms using flashlite?
    I Know flash lite 4 also not access the mobile camera.  But, I need to develop a application it captures the mobile camera and stream the vedio to fms server and display the live event to other mobile users.
    Is it possible? 
    If possible what are the technologies i can use?
    Thanks for the help in adavance
    Prasad

    i have made a few test with Flash Lite 3.0 and Flash Media Server 3  and I have to say that it is pretty easy to stream FLV Video files and  Live Video from local web camera to mobile phone. Here are a quick  instructions how to do it in Windows (I will publish Linux version  later).
    Play FLV-video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    There are a few sample FLV files in applications/vod/media folder, so you can use one of them for testing
    Create a new Flash Lite 3.0 file in Flash
    Add a new Video symbol to library
    Drag this Video symbol to Stage and give instance name to it: video
    Type following programming to timeline:
    // make a new video-object
    var video:Video;
    // make a new NetConnection-object
    var nc:NetConnection = new NetConnection();
    // check connection status from server
    nc.onStatus = function(info:Object):Void {
      status_txt.text=info.code;
      if (info.code == "NetConnection.Connect.Success") {
        startStreaming();
    // start streaming video to phone
    function startStreaming() {
      ns = new NetStream(nc);
      ns.setBufferTime(5);
      video.attachVideo(ns);
      // play sample.flv from server
      ns.play("sample",0);
    // show info to user
    status_txt.text = "Connecting server...";
    // connect FMS 3 video on demand service (default port 1935)
    nc.connect("rtmp://your.server.ip.here:1935/vod");
    Go to Publish Settings...
    Set Local playback security: Access network only
    Publish your SWF-file
    Send your SWF-file to your phone
    Test and you should see FLV-video playing in your phone
    Play live video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    Install Flash Media Encoder 2 (Windows only)
    Start Flash Media Encoder 2
    You should see your live camera in Input screen
    Press Start-button to start sending live video to Flash Media Server 3
    Create a new Flash Lite 3.0 file in Flash
    Add Video symbol and programming as you did earlier
    Modify your programming:
    // in startStreaming()-function
    // Flash Media Encoder 2 publish stream name is "livestream"
    ns.play("livestream",-1,-1,true);
    // start connection to Flash Media Server 3
    // Flash Media Encoder 2 publishes Flash Media Server's default
    // live publishing point, so connect it
    nc.connect("rtmp://your.server.ip.here:1935/live");
    Publish, test and enjoy
    box office movies

  • How to send live video from iphone to ipad

    I have an iphone g1 and gs3
    Is it possible to take live video from the iphone and send it to an ipad II   ??
    Thanks

    I don't know which iPhones support FaceTime butbif either of yours do, you could use that.

  • Is the a mod to be able to import live video from a DSLR?

    I know DSLR's aren't meant to be used for recording live straight to pc, but I was wondering if anyone knew of some 3rd party software either for the camera or a mod for PrPro that would allow you to stream the footage and record it.  I'm trying to record our church services and all I have is a Canon t3i.  I've found software that let me record straight to pc but the framerate is inconsistent.  I'm running CS6 on a windows 7 machine.

    First issue is, you're not going to transfer "live" HD video via USB 2.0 connection. You can transfer files after the recording, but not usually during.
    Second, there are capture cards such as BlackMagic Intensity or Matrox MXO2 Mini that will accept an HDMI input and capture high-quality live video to the PC. However, many DSLR cameras, even though they have an HDMI output, will put out a non-standard signal. Meaning it is cropped, or perhaps has some viewfinder info overlays in the picture which can not be turned off in the menu, making the HDMI output unsuitable for recording. This has been a huge problem for DSLR film makers that want to use external recording devices like the Atomos Ninja 2. Some of the newer DSLRs can now output a proper, recordable signal, after much complaing from customers.
    Bottom line, money is always a factor, but a DSLR is the last camera I would ever try to use for long-form events. There has to be something you can borrow or buy cheap second-hand, meaning a camcorder. But even then, you need some kind of capture card to get the live video into the computer, unless using a DV or HDV camera and then you can use 1394 (Firewire) into computer. DSLRs are just not practical for a lot of video tasks, sorry.
    Jeff Pulera

  • Can't Open Videos From Camcorder on Macbook Pro

    I recently moved several videos from my camcorder to my desktop.  The file extension is .MOD and I can't figure out how to open them on my laptop.  I had no problem opening and viewing them on my HP desktop but am having no success on my Mac.  I am fairly new to Macs so this could be a very basic fix that I'm not aware of.  Any directions/suggestions woudl be appreciated. 

    Hi Katherine,
    You'll need to save it to a different format to use it on a Mac. If you can still open them on the HP, that would probably be the easiest. Save them as a Mac compatible format such as .mpg. If that doesn't work, here is a converter you can try: http://www.squared5.com/

Maybe you are looking for

  • How do you make pages default document reader

    Hi I have just started using pages and i cant seem to work out how to make it the default application to open up the many documents i have. Every time i open a document it opens in textedit, i know that you can choose in properties with which program

  • Add SQL reporting services to get Azure sql db data

    Dear all, I have read recently that SQL server reporting services as been remmoved from Azure services. I have a SQL server database on azure which collect different type of data which are collected from a web admin portal by my users. I have a stron

  • XML form field should be read only.

    Hi All, Can we have a field in a XML form which is read only and the number in field should be incremented every time a new form is created. Is this possible.If yes can someone please guide me how. Thanks, Nikhil Pai

  • Hi all I am having some dificulty with a submit button for emailing a PDF

    I am using Adobe Livecycle Designer ES 8.2 to create an order form with a submit by email button at the end. The button works fine and emails the form to sales@*.ie. My problem is the form is editable by the receipt which I dont want. Is there a way

  • Adding Art To Objects

    I have some art that I would like to add to a 3D object (that I don't have). I'm looking for what looks like a 3 ring binder that I can map PSD image to and how do I do that in CS5.