Using a Macbook for Recording

I don't wanna pump too much power into my Macbook. I blew a sound card or something on a Toshiba. Is it ok to pump a full soundboard into my macbook through the monster 1/4" to 1/8" adapter? what would the power limits be?

I have not used my mixer on a Macbook yet, but I have used it on a PC. It is a 24x4 powered mixer with XLR outputs. I use a XLR to line transformer to hook it to the computer. To clear something up said above, line level IS a strong signal, it is enough to drive speakers, thats why on mixers you have the "pad" (-20 db) button, to cut down the line-in signal so it won't hurt the board.
If your board has a level slider and a gain knob, you are going to set the gain a little lower then you normally would, if you don't have the gain control, just run the master output (or AUX, whatever is going to the computer) lower. My mixer does not have amplified outputs, if yours does, use the un-amplified outputs. Recording on a computer can be a little tough, as the problem presented here is to not blow out the sound card, but you also want a good sound. It is going to take a little time getting the board com configured correctly, but it should work really good once its done.
What you do not want is the software level control to be doing much, I suggest setting it at half way for all the software ("5" out of 10) os & recording software, use the mixer for all the volume control. Just start low, and work up till you get a good sound that is not over powering the computer hardware.

Similar Messages

  • Can I stream a movie from my Macbook to my Apple TV on one display, and still use my Macbook for other things?

    I have a Macbook Pro and an Apple TV. What I'd like to do is stream a movie from my CinemaNow Account to my television by using my Apple TV and my Macbook. I know that I can do this my using the mirroring feature, however then I can no longer use my Macbook for anything else because my TV will only display what is on the screen of my Macbook. Now with this is mind, what then is the point of having multiple displays through the use of my Apple TV, if only one display can be used at a time unless they both show the same image? Or is there a way for me to be able to stream the movie to my TV and still use my Macbook for other purposes (multi-tasking)? 

    To enable a second display over AirPlay, you first need to be connected to the same network as your Apple TV. Next, open System Preferences > Displays, and select your Apple TV from the “AirPlay Display” drop-down menu.
    Once you do this, your display may flash as the second display connection is acquired, and the Apple TV takes over as the second display. If the displays are mirrored, then you can correct this by opening the “Arrangement” tab in System Preferences > Displays, and ensuring that the “Mirror Displays” checkbox is unchecked.
    In this same “Arrangement” tab, you can move the displays around in the pane to ensure that they're positioned correctly, relative to your physical space (usually side-by-side, or top-down). The primary display here is denoted here by the Menu bar on the display. The arrangement helps with being able to drag windows from one display to the next: if your secondary display is arranged to be to the right of your primary one, for example, you can drag things to it through the right side of your primarcy screen.

  • Using CRM opportunities for recording internal project bids - pros/cons?

    We use CRM Opportunities for recording project pursuit of externally funded projects and it works well for this. We have one sales cycle with associated statuses and phases.
    I am considering using Opportunities to record bids for internal projects and funding as this also goes through an approval process. I think an alternative sales cycle with different phases and status may be needed as the transaction is currently highly tailored for external needs.
    Alternatively to use another version of Opportunities with a different field selection. I'd be interested in views or lessons from your own experience

    We use CRM Opportunities for recording project pursuit of externally funded projects and it works well for this. We have one sales cycle with associated statuses and phases.
    I am considering using Opportunities to record bids for internal projects and funding as this also goes through an approval process. I think an alternative sales cycle with different phases and status may be needed as the transaction is currently highly tailored for external needs.
    Alternatively to use another version of Opportunities with a different field selection. I'd be interested in views or lessons from your own experience

  • I have a macbook air/ipad/phone, etc.  I use my macbook for my home business and bought a TC.  My husband does not want it to be our default wifi.  Does it have to be?

    I have a macbook air/ipad/phone, etc.  I use my macbook for my home business and bought a TC to do backups.  My husband does not want it to be our default wifi/modem as he is exclusively a PC user.  Does it have to be?  I thought it did everything wirelessly??  I don't want to start disconnecting our modem/router etc as we are all set up with wireless printing and backups for that computer.  If I have to muck around with it I am thinking of not bothering??

    The TC will connect to your existing modem/router using an Ethernet cable. You will not have to use the wireless on the TC....you can even turn it off if you wish.
    Backups to the TC will occur over your existing wireless.
    Connect from a LAN <-> port on the modem/router to the WAN "O" port on the TC. Locate the TC anywhere that the Ethernet cable will reach. You can run the cable up to 300 feet with no loss.
    Things will not automatically configure themselves. You will have to do some mucking around....no more than you would if you were installing the TC anywhere else.
    Configure the TC to "create a wireless network". Once it is setup, you can ignore the TC wireless, or turn it off.

  • How do I use optical input for recording in Garageband 9?

    Hi,
    I'm trying to use the Optical Line Input on my G5 for recording in Garageband, using a MOTU 828. I have the 828 optical output connected to the optical audio input on the G5, and I have Digital In (Optical digital-in port) selected in system preferences/sound. But in Garageband preferences, optical or digital input is not among my choices. If I select system setting or built-in audio 2, I get no signal. If I select MOTU 828, it defaults to the analog master outputs on the 828.
    I am a Logic 8 user, and I'm able to select the optical input in Logic with no problem. I have my MOTU audio setup set so that the optical output is the default output, but Garageband still seems to use the analog output. I can tell by the record level, which is considerably louder for analog than for optical.
    Any suggestions?
    Thanks!

    create a new fla, add btn and add the code i suggested.  test.
    var count:int;
    var imageArray:Array=["1.jpg","2.jpg","3.jpg","4.jpg","5.jpg","6.jpg","7. jpg",
    "8.jpg","9.jpg","10.jpg","11.jpg","12.jpg","13.jpg"];
    var ldr0:Loader=new Loader();
    ldr0.contentLoaderInfo.addEventListener(Event.COMPLETE,loadCompleteF);
    var ldr1:Loader=new Loader();
    ldr1.contentLoaderInfo.addEventListener(Event.COMPLETE,loadCompleteF);
    btn.addEventListener(MouseEvent.CLICK,clickF);
    function clickF(e:MouseEvent):void{
    // initialize count
    count=0;
    // call loadF
    loadF();
    function loadF():void{
    // add one of the loaders to the top of the displaylist and load the next image
    addChild(this["ldr"+count%2])
    this["ldr"+count%2].load(new URLRequest(imageArray[count]));
    function loadCompleteF(e:Event):void{
    // increment count
    count++;
    // check if the last has loaded
    if(count<imageArray.length){
    // if not clear the content out of the next loader.
    if(this["ldr"+count%2].content){
    this["ldr"+count%2].unloadAndStop();
    // and call loadF so the next loader can load the next image in the array
    loadF();
    } else {
    // if the last has loaded.
    // last load completed

  • After using my macbook for 2 years with same printer,all of a sudden I can't print a page doc even though printer is working and I can print from I/Mail, etc.Anybody had this happen and have a possible answer?

    After using my MacBook Pro and pages for 2 years with the same printer, all of a sudden I can't print a pages doc even though the printer works and I can print from I/Mail, etc. Anyone have a possible answer?

    Often printing problems are a sign of corrupt preferences. Go to HD > Users > (your account) > Library > Preferences, delete the com.apple.iwork.pages.plist file & then restart Pages.

  • Not using my MacBook for a few minutes I get logged out, how can I avoid this?

    Whenever I have not used my MacBook (brand new) with Yosemite (all updates) installed not for a few minutes I get logged out and I need to login and to start all applications again. How can I stop this?
    My Energy Saving setting:

    Open the Security & Privacy pane of System Preferences and turn off automatic logout.
    (121990)

  • I am using my MacBook for person and work purposes.  Will I overload it and cause it to crash? And how can I finance a new one without paying all upfront?

    I am afraid that my computer won't be able to hold all of my files for work and personal use. Will it?  And if I get a new notebook strictly for work, how can I finance it without paying all upfront? 

    It would help to know which one of the 9 different models of MacBook you have. To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info (and then System Report if you’re running 10.7 Lion or 10.8 Mountain Lion). When System Profiler comes up check the Model Identifier and post it back here.
    Rather than buying a MacBook Pro to replace your MacBook you can just get a bigger hard drive. You can get a 1tb drive for around $100 and they are easy to replace in a MacBook.

  • Can use old macbook for Time Machine Backup?

    Have an old macbook running snow leopard.  Can I use it for Time Machine Back-up for my current macbook pro?

    Boot your old into Target Disk mode, then plug a FireWire cable from your old to your pro.  Presto!  Your old's internal HD will appear in your pro's Finder as a disk on your pro.  Time machine running on your pro can use it for backup.  Time machine won't disturb its contents, except to add a potentially huge folder there, which will grow to fill the disk with copies of your backups. (Backing up, then) partitioning (and then restoring from backup) your old's internal hard drive will keep your pro's Time Machine from consuming all free space.

  • I am using logic to record a podcast and using soundboard to use as a playback for music and sound effects.  I'd like to soft patch sound board into logic, and still use my interface for recording audio from the other members of the podcast.

    I am using logic to record a podcast.  I have a presonus firestudio mobile for my interface so I can record several people at the same time.  I'm also using Soundboard for a playback system for music and sound effects.  I'd like to know how to soft patch Soundboard into Logic while still using the Firestudio interface to record the other members of the podcast.  Does anyone know how to do this? and if so can you tell me how to do it?  Thanks.

    Thanks. Now, since Apple failed to provide an audio in jack for their new and improved iMacs (mine has one), all I can suggest is that you contact AppleCare, since you have 90-dqy free phone support. If need be, you might reconsider your purchase, but that's for you to decide.

  • Using a MacBook for Xcode/IntelliJ?

    Hi,
    I have a 2009 MacBook Pro. It's been a wonderful machine and I still use it plenty 6 years on. I am, however, in the market for a new laptop.
    I have a 27-inch 2012 iMac (i7) at home which is what I do anything that needs a lot of power on. So what I need is a portable, lightweight machine with long battery life that I can do things like web development and application programming on. I am a student and as such most of what I do is in either Java or C (web stuff in Node). I tried a Chromebook earlier on this year and ended up loving it for using tmux/vim to work, but loading up an IDE was not a workable possibility. I loved the fact that 15 hours of battery life coupled with a screen that was clear to see and a half decent keyboard meant I could work nearly anywhere, anytime. I need a Mac though!
    So I'm choosing between:
    - MacBook 12" 1.3GHz
    - MacBook Pro 13" 2.7GHz
    Has anyone used the 12" with an IDE and if so, what's it like?
    Thanks,
    Freddie

    So i dont know why i didnt post this, but back in 2010 i went back to school for a MS in CIS. The programming requirements were Java (desktop apps, not Java EE) and Web app development (XHTML, HTML5, PHP, and JS). i bought a 2010 MBA that had 2GB of memory and a Core 2 Duo and it was more than enough power to run all this, and i just uncommented the included Apache and PHP on Mac to run the web apps. I also took a somewhat advanced RMDBS course using MySQL that ran fine on the 2010; just recalled i used MySQL in the web app dev class too. if the 2010 MBA was fine, the new MacBook will be more than enough; definatelly more powerful then the 2010 MBA i recently sold.
    Like you said, if you find you need some real power, just use the lab machine. Writing code on the MacBook will not give you any issues.
    So battery, two answers. the other week we had an all day hack-a-thon and i ran 100% on battery for 9 hours. I rarely put it to sleep, BUT i was only taking notes, answering email's and IM pretty much non stop. I did crack open the IDE here and there, but didnt have the need to start JBoss or anything locally. was very impressed with basic use battery life, and walked out with 4% battery left.
    However, if you do have Apache, PHP, MySQL etc running it will suck the battery life. no so much just using IntelliJ. I think you'll be fine for all day use. One note of caution, the bottom will get rather warm when under a decent load. There are no moving parts in the MacBook, so no fans. Not burning hot or anything, just warm enough where you'd expect the fans to kick in, which dont exist

  • MacBook for recording music

    hey everyone, quick couple of questions 
    I'm looking at buying a 13'' Mac pro (2.6GHz i5, 8GB RAM, 128GB SSD).
    I'll mainly be using Logic Pro X, Cubase, Addictive Drums/EZDrummer and Photoshop on it. Will those specs be enough to run everything smoothly?
    another thing is, is it safe to keep a mac plugged into the charger whilst on? or will that ruin the battery? bit new to MacBooks lol
    Thanks

    Based on reports here and elsewhere, I'm not sure buying a Retina MBP is such a great investment of your money as Retina Displays make much higher demands on the systems... and provide a lower overall performance with CPU/Sub Systems intensive and timing reliant/critical applications such as Logic Pro X
    While I understand the 'draw' of Laptops.. because of their portability etc... there are drawbacks that should be taken into account too.. and compared to a similar priced iMac/Mac Mini.... you get much better power/cost ration with an iMac/Mac Mini than you will ever get with a MBP....
    Simply put you will spend roughly twice as much for a MBP compared to an iMac/Mac Mini to obtain the same performance... and while Retina does provide for a very good clear screen... the overheads that places on the systems of a MBP.. can often outweigh its real benefits when used with an App like LPX where Retina really serves no useful purpose/benefits....... especially for the extra cost.
    Example..My nearly 3 year old 3.4Ghz i7 32GB iMac which cost less by some degree as my top of the range 2013 2.5 Ghz i7 16GB MBP with Retina..  'smokes' the MBP so easily..... when using identical versions of LPX/LP9 under Mavericks.. Even my 2010 Mac Mini Server 2.0 Ghz 16GB gives the MBP a good run for it's money in comparision.. and that cost me less than $800 plus Monitor!
    Note: This is just a personal opinion and should be viewed as such....

  • Using Personal Macbook for Work?

    I recently finished a temp job with a company that had a large project at a mine site. SInce the site was temporary, they had me use my personal computer for all the office work. Is there a standardized fee for this (per hour, day, etc.)?

    You might look in the yellow pages for computer rental, and see what local company's charge.

  • TS4058 Can I use my macbook for facetime or just my phone?

    Is this discussion or help area of mac users?

    You can use FaceTime on the computer. The application should be in the Applications folder or downloaded from the App Store (need 10.6.8.)

  • Can I use my MacBook Pro for 2 things at once?

    I have a MacBook Pro with Retina display, 13". i am about to buy a TV. When using HDMI, can I let's say, play a movie on the TV and still use my MacBook for the internet? I think you understand what I mean. Thank you for your answers!

    Yes you can. OS X is quite good at multitasking.
    Clinton

Maybe you are looking for

  • How to stop printing the crystal report with an alert message

    I am having a field called "APPROVAL" in my stored procedure with which I prepared the CR. I want that if the value in the filed is 'A' then only the crystal report should print else it should prompt with an alert message.

  • IPhone 4 battery drains really fast and phone gets really hot

    I have an iPhone 4 and since November 15 my battery has been draining really fast and gets really hot when I use the phone. When I try to charge the phone with my computer it doesn't charge, but only charges with the wall hub. I have tried deleting t

  • Pages does not Open .Pages Documents

    Hello, When I attempt to open any of my .pages documents, Text Edit opens instead. I have attempted to correct this by right clicking on the document and changing 'Open With' from 'Text Edit' to 'Pages (default)' and then choosing the 'Change All' op

  • Can no longer network PhotoSmart 3210

    I have a PlotoSmart 3210 printer. It was formerly networked so that I could access it from two computers. One is running Windows 7 and the other Windows 8.1. Recently there have developed problems with the 8.1 computer. I get print errors with that c

  • Multicast server/client over wan

    Ok, first of I am kinda new in programming network stuff. Then I am gonna try to be clear in the things that I am trying to accomplish. The environement. I have a machine A that has 2 interfaces : eth0 Link encap:Ethernet HWaddr 00:0F:20:96:CE:96 ine