Screen Recorder with system audio and mic?

I need a screen recorder that:
1. Is free
2. Can Record System Audio and mic at same time
3. Does not need another app or extension
I know the trick with soundflower and quicktime, but I want something that will do the hard stuff for me.
Thanks

Jshwon wrote:
You don't need any third party apps. Simply follow these instructions: http://tinyurl.com/nhw4tu. The functionality is built in.
You mean "you do not need to pay". The instructions you link to involve a third party application called SoundFlower.
(Disclaimer: I have not used it myself, and I do not know if it is harmless.)

Similar Messages

  • Recording Quicktime Screen Capture WITH system audio

    Picked up Snow Leopard earlier today. All installed, nice upgrade.
    I've got a question regarding the new QuickTime. With the new QuickTime feature that allows you to capture screen movements and save as a .mov file, is it possible to also capture system audio?
    I currently see 3 audio input options: 1.) built in mic, 2.) Soundflower (2ch), and 3.) Soundflower (16ch).
    I've tried both of the "Soundflower" options (I don't know what these are) and they don't seem to be doing anything. One alternative, I suppose, is to play the audio through speakers and let the mic pick it back up .... but there's got to be a better option than that.
    Any suggestions?

    Jshwon wrote:
    You don't need any third party apps. Simply follow these instructions: http://tinyurl.com/nhw4tu. The functionality is built in.
    You mean "you do not need to pay". The instructions you link to involve a third party application called SoundFlower.
    (Disclaimer: I have not used it myself, and I do not know if it is harmless.)

  • Captivate 7 is not capturing system audio, and the software has a broken link

    The Problem:
    Captivate 7 is not capturing system audio. When I start a screen recording, the line with "System Audio" and its checkbox are eternally grayed out. Next to the grayed out words is a link that says, "Why is this disabled?"
    The lnik goes to:  http://www.adobe.com/go/cpaudio
    Which is not a valid link, so Adobe's site redirects me to blogs.adoble.com/captivate which is ZERO help. Both browsing and the search bar bring no answers.
    The Device:
    Apple Macbook Air, Mid 2013, running OSX 10.9.2.
    What I've done already:
    Obvsiously I have set Captivate 7's preferences to capture system audio, and have set System Settings -> Security and Privacy -> Privacy -> Accessibility to allow Captivate to control my computer.
    I have also tried clicking the Mic icon, Selecting Source with the System Audio icon and that doesn't record system audio either. It acts like it is recording system audio, but when I stop recording I get a popup that says, "Cannot record system audio. Ensure that you are playing audio on your computer [Okay]"

    It's a wierd one.
    One thing to try, and this fixes a lot of things, trash your preferences.
    http://www.digitalrebellion.com/prefman/
    DM

  • Screen Recording with ffmpeg/recording mic and speaker output

    I've been doing much research on this, and to be honest A/V editing is not my strong suit. I use a script I wrote two days ago to initiate both screen recording with ffmpeg and compiling the resulting mkv file with ffmpeg as well. The entire script can be seen here:
    #!/bin/bash
    #Create function to exit program
    function quite {
    if [ $ANSWER3 = "y" ]; then
    exit
    else
    exit
    fi
    #Create function to start ffmpeg record
    function record {
    if [ $ANSWER = "y" ]; then
    ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1366x768 -i :0.0 -acodec aac -vcodec libx264 -preset ultrafast -strict -2 -crf 0 -threads 0 $ORIGINALNAME
    else
    if [ $ANSWER = "n" ]; then
    echo "Would you like to convert an existing input file? (y/n)"
    read ANSWER4
    if [ $ANSWER4 = "y" ]; then
    ffmpeg -i $ORIGINALNAME -vcodec libx264 -acodec aac -ab 128k -crf 22 -strict -2 -threads 0 $OUTPUTFILE
    echo "The program will now exit"
    read
    exit
    else
    exit
    fi
    else
    exit
    fi
    fi
    #Function to convert the recorded video
    function convert {
    if [ $ANSWER2 = "y" ]; then
    ffmpeg -i $ORIGINALNAME -vcodec libx264 -acodec aac -ab 128k -crf 22 -strict -2 -threads 0 $OUTPUTFILE
    else
    exit
    fi
    #Change to Screen Record directory in My Videos
    cd ~/My\ Videos/Screen\ Record/
    #Clear screen, and ask for input on what to name the origional file and the converted file
    clear
    echo "Please, enter the name of your file followed by .mkv"
    read ORIGINALNAME
    echo "You're files name is $ORIGINALNAME!"
    echo "Please, enter name of the output file followed by .mp4"
    read OUTPUTFILE
    echo "You're final file is $OUTPUTFILE!"
    clear
    #Prompt for continuing with recording
    echo "Would you like to continue with screen recording?[y/n]"
    read ANSWER
    clear
    #Run the record function
    record
    #Prompt for converting the created video
    echo "Would you like to convert the file now?"
    read ANSWER2
    clear
    #Run convert function
    convert
    #Prompt to close command
    echo "Operation finished, all done."
    echo "The program will now exit."
    read ANSWER3
    For simplicities sake, and because I don't think there's a real problem with my script but something else, here's the two ffmpeg scripts from the above script:
    recorder
    ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1366x768 -i :0.0 -acodec aac -vcodec libx264 -preset ultrafast -strict -2 -crf 0 -threads 0 $ORIGINALNAME
    compiler
    ffmpeg -i $ORIGINALNAME -vcodec libx264 -acodec aac -ab 128k -crf 22 -strict -2 -threads 0 $OUTPUTFILE
    Anyway, I have pavucontrol used to set the recording input after I've started recording. I want to be able to record the sound of my voice on my usb headset (which works fine) and be able to hear the sound of music or a youtube video I'm also playing during the recording. I've seen the loopback mixer from Alsamixer gui and the input, output, and record tabs in pulseaudio mixer. To be honest, after researching all this stuff in ffmpeg (which is a ocmplicated program) and whatever amix, dmix,  and some other programs I'm not sure what are, I have no idea where to go anymore. I'd continue researching, but I'm only getting more confused the further I go. I'm extremely willing to learn and will follow any instructions you give to help me out. I don't just want to do this one task, like how I learned enough to write a script file, I want to be able to tweak ffmpeg to suit my needs for any purpose it can be used for. This is my first step to being able to do that. Thanks ahead of time for your help.

    OK, I've manages to learn enough about jack to not break my system and can work with that, Pulseaudio, and alsa is always installed. Is there a way I can create a virtual device that takes in the input from both the system sound and the headset mic that I can set as the audio input for ffmpeg? I've been looking online and I've got a headache at this point from trying. I have learned to use ffmpeg on a new level, but I still can't do what I want to do. (which is record sound from the headset mic and the system sound at the same time while using ffmpeg. I could make two audio files from each channel and record the screen with x11grab. then combine all that using another utility, but then I have to run three separate programs at the same time (which will eat up my cpu) and still run whatever I'm recording from my screen. Something that will do all this for me would be much appreciated.

  • When I'm playing games on my Mac, I want to my viewers (from YouTube) to hear whats going on in the game, as far as I know, I can only record my voice audio, and the screen. Is there anyway I can record game audio too?

    When I'm playing games on my Mac, I want to my viewers (from YouTube) to hear whats going on in the game, as far as I know, I can only record my voice audio, and the screen. Is there anyway I can record game audio too?

    When I'm playing games on my Mac, I want to my viewers (from YouTube) to hear whats going on in the game, as far as I know, I can only record my voice audio, and the screen. Is there anyway I can record game audio too?
    You have two basic options. One is to use a commercial screen recording app with access to system audio built into the app and the other is to add a system extension like SoundFlower that allows the QT X screen recorder to access/record the system audio. I use the former so I am not that familiar with SoundFlower but there should be several posts to this forum covering this topic.

  • Why does say"To play the selected item, you must install a later version of the Adobe Flash Player. To download the Adobe Flash Player, go to the Adobe website." when I have the latest Version of it and it's just Black screen with no audio and Video?

    Why does say"To play the selected item, you must install a later version of the Adobe Flash Player. To download the Adobe Flash Player, go to the Adobe website." when I have the latest Version of it and it's just Black screen with no audio and Video? (Powerpoint Presentation 2013)

    You asked your question on the wrong forum. Try one for the Flash Player

  • How to use audio and mic with multipoint server with out it crashing on you

    how to use audio and mic with multipoint server with out it crashing on you when i use them to make calls thru my station (zero client) at the same time it crashes on me and i need to restart the multipoint is there a setting i may have mist that enable's
    them to work at the same time and if posible can i use a non USB device 

    Look for "Single Sign-on Using Kerberos in Java" in google or on Sun's web site. Maybe this paper will help you.
    Claude

  • Tecra S2: strange dots on screen appearing with no reason and at random

    Hello,
    I have a Toshiba Tecra S2 laptop for almost a year now.
    I formatted it 2 months ago and when i did this. i had stranges dots on my screen, appearing with no reason and at random. I dont have a clue where it came from and i decided to format my computer again.
    I've installed the latest chipset driver from the intel website and then i've installed the latest driver from the toshiba site.
    I've noticed the problem is back. so that didn't solve anything. What can I do about this?
    PS, not only the dots, but i cant play games also.

    HI Jelle,
    When you say that you formatted your notebook, did you completely re-install the operating system from the recovery discs ? If you did then the display should work correctly.
    If you installed the operating system from Microsoft discs then you will need to download the correct Toshiba drivers for your Tecra from the Toshiba web site download page.
    regards,

  • How can I add the date at the top of the screen along with the day and time display?

    Hello,
    How can I add the date at the top of the screen along with the day and time display?
    Thanks so much!

    Open System Preferences>Date & Time:
    Ciao.

  • Headset (wired) 3,5 mm audio and mic jacks; window...

    I have heard from a supposedly reliable source (a radio shack salesman) that skype for windows 8 has problems using a wired headset (3.5mm jacks for audio and mic).  I am using 64bit windows 8; a hp envy 700-074 (beats audio) computer with plenty of ram.  Can someone comment on this.  I hate to purchase a headset and not have it work and go thru the hassle of having to return it.

    I really have no idea what problems he was referring to.  Did he go into specifics?  Some people hear more audio artifacts in Windows 8.   As far as I can tell Radio shack people are salespeople first, technical second but maybe you got lucky.  
    A wired headset should work as good as  your onboard if not in actuality better.  So I don't know how it would sound worse unless you purchase some cheap detachable headset that sounds like you're talking into a paper/plastic cup.  Many HPs use the IDT chipset which has never impressed me.  The microphone/speaker selections can be very odd when compared to other chipset drivers.  As long as you have the right selection and the latest audio drivers, you shouldn't run into any major issues.  If you do run into audio issues, you can always get a 3.5mm to USB adapter for your headset or buy a USB headset to sidestep sound card related issues.

  • My dv7 -4165dx came with beats audio and my speakers sound horrible

    my dv7 -4165dx came with beats audio and my speakers sound horrible,can i fix it

    Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP ENVY 15-j011dx Notebook and issues with the Beats Audio. Here is a link to the HP Support Assistant. Just download and run the application and it will help with the software and drivers on your system that might need updating.
    Here is a link on troubleshooting the sound.  It has a number of great troubleshooting steps including using the built-in Windows troubleshooter.
    1. Right click the Speaker icon in the bottom right corner by your time.
    2. Click Playback Devices.
    3. Click Speakers.
    4. Click properties.
    5. Click the advanced tab on the Properties window.
    6. Change the Default Format drop-down to the highest quality.
    7. Apply the properties.
    8. Click OK to close the properties window.
    Hope this helps with the sound.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • How do I import AVI video with stereo audio (and keep it that way)?

    Today I just discovered that all the AVI video with stereo audio I've ever imported into a Premiere Pro CS6 project has been mysteriously converted to mono. And I can't find any import setting anywhere that enable me to change this.
    Here's the deal...
    I've have an AVI file with stereo audio (the file is actually a stereo sound test that I downloaded to prove that I wasn't imagining things). On my hard drive, I right-click and view the properties:
    Video
    Length: 00:00:36
    Frame width: 320
    Frame height: 240
    Frame rate: 25 frames/second
    Audio
    Bit rate: 128kbps
    Channels: 2 (stereo)
    Audio sample rate: 44 kHz
    I click on it to play and listen with headphones--everything is playing in the correct part of the stereo spectrum. Then, I import it to Premiere, click the file name in the left content menu, and check the properties, suddenly they read:
    Type: AVI Movie
    File Size: 1.1 MB
    Image Size: 320 x 240
    Frame Rate: 25.00
    Source Audio Format: 11025 Hz - 16 bit - Mono
    Project Audio Format: 11025 Hz - 32 bit floating point - Mono
    Total Duration: 00:00:36:15
    Pixel Aspect Ratio: 1.0
    Sure enough, I drag it into the sequence, listen to it, and it's indeed playing mono. Outside of Premiere, the original source file still reads and plays correctly with stereo sound.
    When I import stereo WAVs and MP3s, it keeps the original stereo channels without me having to do anything special. I even just imported the same exact file as a MOV with stereo audio, and it showed up in Premiere as:
    Source Audio Format: 44100 Hz - 16 bit - Stereo
    Project Audio Format: 44100 Hz - 32 bit floating point - Stereo
    What is going on here with AVIs? Am I doing something wrong? Are there settings I'm missing somewhere?
    (And before anyone suggests I only use MOV in the future... that's not exactly the answer I'm looking for.)

    Thank you for that info.
    For video, the codec is MPEG-4 Video (XVID) and for audio it says MPEG Audio Layer 1/2/3 (mpga).
    There are two issues with that file:
    The first is the Xvid CODEC (not meant for editing), and then the MPEG Audio/MPGA. I would convert that file, to something that is more editable.
    Good luck,
    Hunt

  • I have a MacBookPro5,5 how do i connect it to my hdtv WITH BOTH AUDIO AND VIDEO? and where can i buy this cable(s)?

    i have a MacBookPro5,5 how do i connect it to my hdtv WITH BOTH AUDIO AND VIDEO? and where can i buy this cable(s)?

    thank you roger. i have attempted to connect my mbp now 3 times (all different ways with different cables purchased) but unfortunately no success. i understand that with me having an older mbp it can be a challenge. i have found this page http://www.wikihow.com/Connect-a-Macbook-to-a-TV but with my unsuccessful history, i have become skeptical. i will try your suggestion and let you know. thank you again.

  • Screen stuck on gray, used shift key and my screen appears with MacBook Pro and not the recovery option. Please help

    Screen stuck on gray, used shift key and my screen appears with MacBook Pro and not the recovery option. Please help!

    Hi ..
    Shift key boots into Safe Mode, not Recovery.
    This only works on a Mac running v10.7 Lion or later.
    Startup your Mac while holding down the Command + R keys. From there you should be able to access the built in utilities to repair the startup disk and restore OS X using OS X Recovery
    If you can't boot into Recovery Mode, help here >   Mac OS X: Gray screen appears during startup

  • Boot camp 5 is not support for audio and mice in windows 8.1

    i upgrade to windows 8.1, but, no audio and mice is not working properly. i used boot camp 5. any one can help.

    Windows 8.1 x64 RTM is running without any problems on MacBook Pro 13" i7 16GB Memory as I upgraded last week.
    If you are using the Beta version of Windows 8.1 I suggest you wait until it is available to the General Public on October 17.
    If you have the RTM (I am a Microsoft Partner) then just install and then run the Windows Support Software for Bootcamp 5 and the proper drivers will be installed.

Maybe you are looking for

  • Creation of material document number.

    Hi All, In the MIGO transaction, for a Goods receipt order, the transaction is calling MB_CREATE_GOODS_MOVEMENT and MB_POST_GOODS_MOVEMENT to create a material document and returns material document number. I have created a new program that is using

  • No CC Programs show in the list of defaults for file associations

    I have CC 2014 Photoshop, Bridge and Lightroom. None of these programs show as available for associating files such as .jpg. Even if I navigate to Photoshop.exe and select it, it does not associate. up to a few days ago if I clicked on a .jpg it woul

  • Filter based on another analysis need to run as a seperate query obiee 11g

    Hi, I have a main report which has a filter condition that depends on the another request(Created through Filter based on another analysis).The Filter based on another analysis report query comes as a embedded query along with the main query (making

  • Mémoire insuffisante pour enregistrer le fichier. lors de l'exportation d'un fichier .psd sur illustrator cs4

    Bonjour, J'ai le pack Adobe CS4, lorsque je fais une exportation dans illustrator en .psd résolution 150 ppp. Message d'erreur: Mémoire insuffisante pour enregistrer le fichier. Config PC: - Windows 7 64 Bits - Processeur: Intel core 2 Duo 3.16Ghz -

  • Solaris Privs

    I have a question about the following from the man pages on privileges: PRIV_FILE_DAC_WRITE Allow a process to write a file or directory whose permission bits or ACL do not allow the process write permission. All privileges are required to write file