Need help with 4-5 camera set up for audio/video podcast

Hey guys. I'm overseeing the podcast/audiobook studio construction for my company's new entertainment venture. It will ultimately be my job to produce the podcasts and audiobooks. The catch is that they also want to film the podcasts as well. I'm trying to find the most affordable set up that makes the editing/conversion process easiest for me on FCPX.
As you'll see I'm a bit all over the place. The essentials for what I'm looking for is
1) The right Camcorder
2) The most efficient way to record, edit and sync audio
What is the most affordable camcorder to use that works really well with FCPX? I've been hearing rumors that some aren't compatable and require a tedious conversion process. The Kodak Zi8 seems perfect because it shoots in 1080p and has a mic input, but I'm not sure if it works well with FCPX. Now, I don't know if the mic input is necessary. I was thinking the easiest way to automatically sync audio is by plugging the 4 mics into the camera's mic input and record that way. That should sync everything up automatically right? I also watched a tutorial on the multicam editing option in Final Cut and that seems perfect for this project. Do I need a mic input if I use this method? It seems like the syncing is super easy with the built in camera audio and the podcast audio files together.
I also would like to be able to record directly into the computer but don't know if that's possible. The process of taking 4-5 SD cards and uploading it after each shoot that way seems super tedious. I'm not sure if there is way to do that.
Another option would be for us to buy a video switcher but all the options seem so expensive. Anybody know of good hardware that'd work? That way I could edit on the go and if we want to make this a live ustream we can do so. I was also thinking about switcher software and using MIDI. Not sure if that is possible either.

Lets ignore whether you should be doing this, but, if they are requesting that you do it, have at it.
Although, the simplicity of this is mind boggling, for them not to do it...ah well, you're donating for a non profit, they are probably the cheapest game in town, and lost the sole employee who could scratch their backside...
Choice one, I dont recommend this one - File > Print booklet, 2 up saddle stitch. Flip back and forth using the Print Settings button at the bottom to orient the page layout and set paper size. Set the printer as Adobe PDF. Keep checking the Preview in the main Print Booklet dialog, I had to set a page range of 39 pages in a 40 page book for this to work last week.
Choice two - If you have set a 44 page document with bleeds, export to pdf, toggle "Use ducument bleeds", no crops. Place those reulting pdf's in a new 11 x 17, landscape doc, with appropriate bleeds. How you defined the bleeds in the 44 page document dictates how much fiddling you will have to do at the center (fold line) of the new 11 x 17 "imposed" document. (If your 44 page was not set as facing pages, you might have defind inside bleed to zero. If it was not set as a facing pages document, it references top, bottom, left and right bleeds) (The use of pdf for this is not necessary, you could just as easily place pages from the original InDesign file as pdf's) Setting a blue line/guide line at the center would help to crop in bleeding frames.
All above seems too simple, you are only needing to impose pages 22-23 for these steps btw.
@Scott Falkner - I knew I was being to wordy.

Similar Messages

  • I need help with shooting in my flash game for University

    Hi there
    Ive tried to make my tank in my game shoot, all the code that is there works but when i push space to shoot which is my shooting key it does not shoot I really need help with this and I would appriciate anyone that could help
    listed below should be the correct code
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    listed below is my entire code
    import flash.display.MovieClip;
        //declare varibles to create mines
    //how much time before allowed to shoot again
    var cTime:int = 0;
    //the time it has to reach in order to be allowed to shoot (in frames)
    var cLimit:int = 12;
    //whether or not the user is allowed to shoot
    var shootAllow:Boolean = true;
    var minesInGame:uint;
    var mineMaker:Timer;
    var cursor:MovieClip;
    var index:int=0;
    var tankMine_mc:MovieClip;
    var antiTankmine_mc:MovieClip;
    var maxHP:int = 100;
    var currentHP:int = maxHP;
    var percentHP:Number = currentHP / maxHP;
    function initialiseMine():void
        minesInGame = 15;
        //create a timer fires every second
        mineMaker = new Timer(6000, minesInGame);
        //tell timer to listen for Timer event
        mineMaker.addEventListener(TimerEvent.TIMER, createMine);
        //start the timer
        mineMaker.start();
    function createMine(event:TimerEvent):void
    //var tankMine_mc:MovieClip;
    //create a new instance of tankMine
    tankMine_mc = new Mine();
    //set the x and y axis
    tankMine_mc.y = 513;
    tankMine_mc.x = 1080;
    // adds mines to stage
    addChild(tankMine_mc);
    tankMine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal(evt:Event):void{
        evt.target.x -= Math.random()*5;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseMine();
        //declare varibles to create mines
    var atmInGame:uint;
    var atmMaker:Timer;
    function initialiseAtm():void
        atmInGame = 15;
        //create a timer fires every second
        atmMaker = new Timer(8000, minesInGame);
        //tell timer to listen for Timer event
        atmMaker.addEventListener(TimerEvent.TIMER, createAtm);
        //start the timer
        atmMaker.start();
    function createAtm(event:TimerEvent):void
    //var antiTankmine_mc
    //create a new instance of tankMine
    antiTankmine_mc = new Atm();
    //set the x and y axis
    antiTankmine_mc.y = 473;
    antiTankmine_mc.x = 1080;
    // adds mines to stage
    addChild(antiTankmine_mc);
    antiTankmine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal_2(evt:Event):void{
        evt.target.x -= Math.random()*10;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseAtm();
    function moveForward():void{
        bg_mc.x -=10;
    function moveBackward():void{
        bg_mc.x +=10;
    var tank_mc:Tank;
    // create a new Tank and put it into the variable
    // tank_mc
    tank_mc= new Tank;
    // set the location ( x and y) of tank_mc
    tank_mc.x=0;
    tank_mc.y=375;
    // show the tank_mc on the stage.
    addChild(tank_mc);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onMovementKeys);
    //creates the movement
    function onMovementKeys(evt:KeyboardEvent):void
        //makes the tank move by 10 pixels right
        if (evt.keyCode==Keyboard.D)
        tank_mc.x+=5;
    //makes the tank move by 10 pixels left
    if (evt.keyCode==Keyboard.A)
    tank_mc.x-=5
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    if (tank_mc.hitTestObject(antiTankmine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(antiTankmine_mc);
    if (tank_mc.hitTestObject(tankMine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(tankMine_mc);
        //var maxHP:int = 100;
    //var currentHP:int = maxHP;
    //var percentHP:Number = currentHP / maxHP;
        //Incrementing the cTime
    //checking if cTime has reached the limit yet
    if(cTime < cLimit){
        cTime ++;
    } else {
        //if it has, then allow the user to shoot
        shootAllow = true;
        //and reset cTime
        cTime = 0;
    function updateHealthBar():void
        percentHP = currentHP / maxHP;
        healthBar.barColor.scaleX = percentHP;
        if(currentHP <= 0)
            currentHP = 0;
            trace("Game Over");
        updateHealthBar();

    USe the trace function to analyze what happens and what fails to happen in the code you showed.  trace the conditional values to see if they are set up to allow a shot when you press the key

  • Need help with a customized interactive web application for  apparel

    Help!!!!
    Hi I am a web designer at beginners stage with web
    devlopment. I am seeking guidance on how to develop a customized
    interactive web application so that the end user can change color
    and patterns of apparel on vector images such as teamsports
    uniforms and tshirts. Once the design is customized to their liking
    they can save it with all of the spec information in a file to
    there desktop or to a database to send to the manufacturer.
    Also looking for a possible way to use a CMS so I can upload
    templates of the garment easily for the end user to customize
    online. Can this be done and if so how? This is an example the kind
    of application I am looking for:
    http://www.dynamicteamsports.com/elite/placeorder.jsp
    I am in desperate need of some brilliant developer to help
    with this.
    Thanks in advance for anyone who is willing to assist or give
    me guidance,
    Danka
    "Reap what you sew"

    some parts of that are doable using non-advanced skills, but
    will be difficult and unwieldly if there are more than a few
    colors/patterns.
    saving the image to the server is a bit more advanced and
    you're going to need some server-side scripting like php, perl, asp
    etc. in addition to some flash programming ability.

  • Need help with buying graphics card and ram for MSI 865PE NEO 2-V

    Hi,
    I want to buy 1GB of ram for motherboard MSI 865PE NEO 2-V I need help with finding correct parts.
    I also want to buy 512Mb or 1GB graphics card.
    as i said before i need help with finding correct ones so they match motherboard, I would appreciate if any one would post link to cheap and fitting parts.
    I found graphics card allready, i just need to know if it will fit.
    the card is
    NVIDIA GeForce 7600 GS (512 MB) AGP Graphics Card
    Thanks for help.

    here you can see test reports for your mobo:
    http://www.msi.com/product/mb/865PE-Neo2-V.html#?div=TestReport

  • I need help with re installing my apple account for itunes.

    Had problems with my itune account, so I uninstalled and now need help with re-installing the program with the songs I have already purchased.

    Your iTunes account is something at the iTunes Store online.  It is not possible to uninstall it.  Do you mean the iTunes application?  Even if you delete the application and restore it, it should not have deleted your iTunes library (essentially the contents of the iTunes folder in Music) on your computer unless you did a separate steep and specifically deleted that too.  You need to tell us what it was you deleted.

  • Need help with Different approaches to setting variables in a Flash movie in Adobe Flash CS3 Professional Version

    Hi,
    I'm using Adobe Flash CS3 Professional version of Flash
    software,
    I need help and guidance on
    Different approaches to setting variables in a Flash movie,
    what I should do in the fla file, and in the html file.
    Thanks, Gil

    Hi petro_jemes,
    Just a little claritification, you need to add the value to the variable "[string]$ou", and also change the language in the variable "$emailbody" in the function "Get-ADUserPasswordExpirationDate".
    I hope this helps.

  • Need Help With Motion Track/Camera Tracking

    I've been trying for several days to motion track 2 seconds worth of footage but I cannot get it. I've tried the AE motion track, 3D Camera Tracker, Mocha Pro, Camera Tracker from the Foundry, Boujou (could be user error with that though, cause I had never used it before), but I cannot get this shot figured out. Test - YouTube here is a link to the footage, I'm trying to track from frame 183-235 (where the guy is kneeling down in front of the box holding dynamite and everything is black and red)
    Any help would be great, all I want to do is have an image attached to one of the boards in the background so it doesn't move.
    Thanks!

    Wow you have boujou? Thats awesome $10k, anyway looks like mocha should be fine for this as I don't see a ton of camera movement in that shot where you want to track. Do you know how to use mocha? If not there are tuts while working on that scene. Here's a few http://cgi.tutsplus.com/articles/advanced-motion-tracking-with-mocha-ae--ae-15231 and for various tracker apps including the built in one http://cgi.tutsplus.com/articles/26-tracking-and-matchmoving-tutorials--ae-7394

  • Need help with finding "my" camera..

    I'm having difficulty finding a camera with specific features that are important for me. I would greatly appreciate any help in finding the brand and model that fits the bill. I've googled and googled, without any luck. Help!  I'm looking for a digital camera with:
    1. GPS
    2. "small" size (gotta fit in my purse, no camera bags for me!)
    3. viewfinder
    4. takes AA batteries
    TIA

    As a GPS and AA enthusiast, I too have been waiting for a similar combination.
    nuff said about GPS models like the NIkon AW100, P510, S9300 similar models using propreitary batteries.
    DSLR with AA powered grips don't fit your portability factor
    have you considered an AA powered data logger?  I use the discontinued Sony GPS-CS1.  Not only does it provide a data file to sync with my camera clock, but it also draws a breadcrumb on where I go so I can look it up on a map afterwards.

  • Need help.  Both iTunes and Setting's for photo usage show about 2000 more photos then appear on the Camera Roll with no additional libraries.  This takes up many gb of phantom photo storage.  I just upgraded software, I've reset the phone.  Need help!

    iTunes - Photos  36.71 GB and 7265 Photos
    Settings/General/About 7086 Photos and 202 Viedos
    Settings/General/Usage 35.8 gb for Photos & Camera
    Photo app (one it comes with) shows ONLY 5522 on the Camera Roll this matches what it shows when I access photos with PC
    How do I get rid of the phantom photos using up my gb's.  I want access to the addtionaly storage!  Please Help
    note- not tech savy so an easy fix or detailed step by step is appreciated

    iTunes - Photos  36.71 GB and 7265 Photos
    Settings/General/About 7086 Photos and 202 Viedos
    Settings/General/Usage 35.8 gb for Photos & Camera
    Photo app (one it comes with) shows ONLY 5522 on the Camera Roll this matches what it shows when I access photos with PC
    How do I get rid of the phantom photos using up my gb's.  I want access to the addtionaly storage!  Please Help
    note- not tech savy so an easy fix or detailed step by step is appreciated

  • Need help with ASA config to set up proxy on DMZ

    Hello guys,
    I have a problem, I´m trying to configure an ASA as shown in the attached scenario.
    I need that all inside users to go to the proxy server on DMZ and from there they will go out to the internet.
    Right now i have:
    INSIDE INTERFACE
    Access-list inside permit ip 10.1.1.0 255.255.255.0 host 11.1.1.6
    DMZ INTERFACE
    Access-list dmz permit ip host 11.1.1.6 any
    OUTSIDE INTERFACE
    Access-list outside permit ip any host <proxy server public ip>
    REGARDING NAT I HAVE THE FOLLOWING:
    Static (dmz,outside) <proxy server public> 11.1.1.6 netmask 255.255.255.255
    My question would be if it would work with this configuration? Do i need to apply Nat on my inside hosts?  Would all my inside hosts when reached the ASA will be send to the proxy and then through the proxy it will send them back to the ASA and then to the internet??
    Thanks,
    Tony

    Hello Jennifer,
    Thanks for your response. So basically i will need to add a static to allow trafic from inside to dmz without being natted. I don't know what proxy server it will be, the server would be managed by another party, but in my inside hosts i will need to set all the parameters to point to the proxy, once this done trafic will go out through the proxy server to the dmz interface of the ASA and then to the outside world, is that correct?
    Do you think this configuration would work???
    Outside = security 0
    Inside = security 100
    DMZ = security 50
    static (dmz,outside) 11.1.1.6 netmask 255.255.255.255
    static (inside,dmz) 10.1.1.0 10.1.1.0 netmask 255.255.255.0
    access-list inside permit tcp 10.1.1.0 255.255.255.0 any
    access-list dmz permit ip host 11.1.1.6 any
    access-group inside in interface inside
    access-group dmz in interface dmz
    Basically with this configuration my web request will go to the proxy on the DMZ and then from there it will go out to the internet??
    Thanks

  • Need help with Droid Charge camera shuting off phone

    We have two droid charge phones that we got in April on Amazon.  We are trying to troubleshoot with Samsung and getting not much help.  Phone dies quickly at times, but not other times.  It consistently shuts off when taking pictures, though, on both phones.  It is clear to us that the phone has a problem because we have two.  I've seen two work-arounds.  One is getting a bigger battery that requires a new larger phone back.  The other is to put the phone in Airplane Mode.  Apparently, this problem is due to a "power load" issue.  So, the phones are inherently defective. 
    We like the phones and at brief times we have been fooled into thinking they are working fine... because once in a while the camera works fine. We haven't had any replacement phones because it seems that so many have this issue and therefore, figured what is the point.  We would like to know if other Droid Charge cameras don't have this issue because we expect to be able to use the camera.  We have 3 little boys and we already have lost pictures from the last day of school because we counted on this phone.  Sounds like a small problem until you look at it that way. 
    Really wish Amazon, Verizon or Samsung could get us a good solution to a seemingly nice phone.

        Nolpost and smsmoot, I’m sorry to hear of the issues you are having with the phone shutting off when using the camera. This is no fun! I use my camera often and would hate for it to reboot my phone every time I use it. I can only imagine how frustrating that must be. But don’t worry guys because I’m here to help!
    How long have you guys had this issue? Does it happen every time you use the camera? Did you notice this started after the software update? If so, have you performed a hard reset http://bit.ly/w21WpW since the update?
    If you have already performed a hard reset and are still experiencing this issue, please send me a DM with your name and mobile number so I can access your account and further assist you.
    I look forward to hear from you guys.
    John B
    Follow us on Twitter @VZWSupport

  • Need help with my MX98715 NIC setting

    Hi,
    I had trouble with my MX98715 NIC. My question is, how can I change the transceiver capablities of my MX98715-based Ethernet Adapter from adv_autoneg_cap to adv_10hdx_cap&#65311;
    I tried to change everything including system file or use the ndd command, but it takes no effects.
    I changed the /etc/system file by adding:
    set hme:hme_adv_autoneg_cap=0
    set hme:hme_adv_10hdx_cap=1
    set mxfe0:mxfe0_adv_autoneg_cap=0
    set mxfe0:mxfe0_adv_10hdx_cap=1
    Then I reboot my system, but the Solaris 10 still auto negotiates it with the 100Mbps full duplex.
    What's wrong with it?

    I had solve this problem by use the driver from Masayuki Murayama.
    I think the tu-2.2.0 is the suitable driver for MX98715 and etc.

  • Need help with hard-wiring speaker set-up

    Heres what I am trying to do:
    I have a pair of nice old-fashioned speakers. Old-fashioned meaning that there are two wires coming out of each, stereo sound. The ends of the wires are just metal strands, well, you know, they have been cut off. They originally had plugs at the end that could plug into normal sterio outputs. I cut them off because I wanted to use them for an old radio. But now I need speakers for my imach g5 and these will work if only I can connect the wires some how. So should I but plugs to go on the end? I need to pair the wires together, I am guessing? Any help would be much appreciated. This is quite urgent.
    I have made a little diagram of what I mean.
    [IMG]http://img250.imageshack.us/img250/795/speakersetup6wb.jpg[/IMG]

    You will need to put the plug ends back on the wires. I'm fairly sure that any attempt to solder the wires in "permanantly" would be dangerous to the computer. I am absolutely positive that any such attempt to wire them in, would void whatever warranty you may or may not have left.

  • Need help with voiceover multiband compressor setting

    Hi there,
    I produce a national talk radio and TV program, and we often do voiceover for various commercials, spots, underwriting, etc. I've been running them through the "broadcast" preset in the multiband compressor, but have been told by a couple of people that it's too bassy and isn't sounding good on their end. While it sounds ok on my end, since this has been mentioned by several people, I'd like to change it.
    Is there a better multiband compressor preset either already in audition or that someone could tell me how to create that would sound better for what i'm trying to do?Again, from the ones that are already in the multiband compressor, broadcast is the closest to what i want, but isn't quite it...
    Best,
    David

    If the compressed sound itself is okay, then probably the easiest thing to do is to EQ the result, rather than play about with the compression. What you really need to do though is to get yourself a monitoring system that sounds the same as the one the clients are using!
    Generally when people produce bass-heavy sound, it's because they are monitoring on something woefully small, with no real bass response. So you produce sound that sounds okay on your computer monitors, or whatever and inevitably the file sounds bass-heavy on a more neutral system.
    None of us here could tell you what would be better settings, or what EQ to use, simply because we haven't heard any of the offending sound. If you post a sample, we could at least listen to it on a neutral system (I have 3!) and tell you what we think might improve it.

  • Need help with Nokia E5 Camera

    Hi all,
    i just bought my nokia e5 last week.
    i realized that i cannot turn off the sound when i snap pictures with the camera.
    i've gone to the settings, it only allows for changed between camera tone 1 to tone 4. No way to turn off the sound at all.
    Turned the phone to silent mode, but the camera sound remains.
    Does anyone know how i can get rid of that sound? (as it is quite irritating)
    Thanks

    You could try to disable the "warning tones" in your current profile. On some models that will silence the camera, but it can also silence java based games or apps.
    In many countries Nokia is forced to make it so that the camera sound cannot be disabled to comply with privacy laws. So if nothing works to silence it, that is the reason.

Maybe you are looking for

  • Does anyone know how to win a fight with layout manager?

    I am using the form designer in netBeans to design my page, which has a jPanel on the left and a number of controls on the right. My problem is that when I eventually get it to look half right at design time, it looks different at run time. The fonts

  • Onekey Rescue System Failed-300​0 system G430.

    Hi there, My G430/Vista can operate Onekey Rescue System..(i had done this before and it's fine) but after format the hard drive. my G430 cant run the system/program with suppose to show window logo on startup. evertime i restart my laptop it's still

  • Problem when Reading Multiple values from Arduino to Vb

    Hi Mates, I am getting 4 values from Arduino using Serial.Println statement 4 times. How do I need to receive these values to 4 different variables in VB without using any buttons. We have to serial data received as per my knowledge. I've written the

  • How do I add microsoft 7 to my ipad, how do I add microsoft 7 to my ipad

    I intend using my ipad at school completing papers and other homework. How do I add microsoft 7

  • Font problem

    Hi, i am using reports 6i on windows. the generated pdf files have corrupted fonts so i have tried changing the font property in the report builder. but whether i change the font to Times New roman, times new roman turkish or arial & save, the select