No Audio in Audio Book

Hello all,
I have just put in an audio book on my itouch. However when I play it, there is no sound through my headphones. When I play the itouch through Itunes on the laptop, the sound is fine.
I am at a loss as to why the sound can be heard when playing the same file residing on itouch through itunes but no sound when playing through headphones. All the other audio books work fine.
Appreciate all your help.
Thanks

I am having the same problem. I converted an audio book CD to AAC and sync'ed it to my touch but it has not sound on the touch. It too plays fine through iTunes in Windows.

Similar Messages

  • What is the best audio or voice audio recording app for iPhone 5 because I want to record audio at a book signing event this coming Tuesday!!!

    What is the best audio or voice audio recording app for iPhone 5 because I want to record audio at a book signing event this coming Tuesday!!! Please get back to me as soon as you can! Thanks

    Ok sorry to bug ya again but if I use the voice memos app if I have the screen locked and just on my belt clip on my side of my pants will it still pick up the authors voice and do I need to have all the volume turned all the way up for it or do I get the app u said for better sound?

  • Hi there, can anyone tell me how to make make Garageband ignore HDMI as an audio output-device on a 2013 Mac Mini? Now it keeps on prompting me: Do you want want to use the HDMI device (monitor without audio) for audio output? Thanks in advance, Grtz T.

    Hi there,
    Can anyone tell me how to make make Garageband ignore HDMI as an audio output-device on a 2013 Mac mini i7 using an Apogee jam as an input for bass and a Behringer USB DAC with RCA audio output? Now it keeps on prompting me: Do you want want to use the HDMI device (monitor without audio) for audio output? I'm also suffering massive audio lag issues with the Apogee jam after waking the mini from sleepmode, wich pretty much renders it useless.
    Thanks in advance,
    Grtz T.

    I think the easiest way to do this is to have the EyeTV app running in one user account and sent via HDMI to the TV, and use a separate user account for Screen Sharing. Both logins can be active at the same time and with Lion you can connect via screen sharing to which ever login you need.
    With regards to the Mac video resolution changing, when it is not the current input on your AV receiver. This is 'normal', if the Mac sees no signal it drops down the a lower level. What you need is to buy a HDMI Detective Plus which tricks the Mac in to always seeing a signal and hence it will not drop down the resolution. See http://www.gefen.com/kvm/dproduct.jsp?prod_id=8005
    The Mac mini does have an IR receiver. This can be used with the EyeTV app, iTunes, and similar. Yes I believe EyeTV would run for prolonged periods quite happily, it is has been around for a long time and had most of the rough edges polished off. However one issue you will have to deal with is that it does not automatically update its program guide data. For this you might have to write or modify an AppleScript. Elgato support or their user forums will be a lot of help.
    You can set EyeTV to convert recordings to an iTunes (Apple TV) compatible format and then delete them from EyeTV.
    The HDMI Detective should solve your handshaking problems.

  • How i add audio publisher/audio subscriber in my chat applcation

    hello,
    I try add audio publisher/audio subscriber  in chat applcation im using flash bulider 4 however i watch the example in smp applcations
    that have in sdk but what i need i include inside chat applcation button to start and stop audio in chat applcation i treid many times
    to do it but always give me error so what is the way to add audio publisher/audio subscriber  with button for user hit button run audio hit again stop audio, also need to add other button "logout" to user can logout from applaction when finish but after i add button is dosent work too.
    Need help
    Thanks

    Oh nigel sorry i really forget say what is th error however i gonna paste the code to see where is the error buttons "logout" and "start my audio" dosent work
    I dont know why here is the code,
    thanks nigel
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="500" minHeight="500" xmlns:rtc="http://ns.adobe.com/rtc" width="590" height="590" backgroundColor="#3D3B3B" preloaderChromeColor="#999393">
        <fx:Style source="client.css"/>
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                protected function txtUsername_enterHandler(event:FlexEvent):void
                    // TODO Auto-generated method stub
                    connectRoom.login();
                    labelUsername.visible = false;
                    txtUsername.visible = false;
                protected function btnZoomScreen_clickHandler(event:MouseEvent):void
                    // move screenShare
                    if(btnZoomScreen.label == "zoom in"){
                        moveEffect.targets = [scrShare,labelScreen];
                        moveEffect.xTo = 10;
                        moveEffect.yTo = 10;
                        moveEffect.play();
                        resizeEffect.target = scrShare;
                        resizeEffect.widthTo = 520;
                        resizeEffect.heightTo = 479;
                        resizeEffect.play();
                        btnZoomScreen.label = "zoom out";
                        btnZoomScreen.y = 5;
                    }else{
                        moveEffect.targets = [scrShare,labelScreen];
                        moveEffect.xTo = 294;
                        moveEffect.yTo = 296;
                        moveEffect.play();
                        resizeEffect.target = scrShare;
                        resizeEffect.widthTo = 250;
                        resizeEffect.heightTo = 293;
                        resizeEffect.play();
                        btnZoomScreen.label = "zoom in";
                        btnZoomScreen.y = 296;
            ]]>
        </fx:Script>
        <fx:Declarations>
            <s:Move duration="500" id="moveEffect"/>
            <s:Resize duration="500" id="resizeEffect"/>
        </fx:Declarations>
        <rtc:ConnectSessionContainer horizontalScrollPolicy="off" verticalScrollPolicy="off" id="connectRoom" autoLogin="false"
                                     roomURL="http://connectnow.acrobat.com/jannaali/mymeeting"
                                     x="0" y="55" width="590" height="535" backgroundColor="#323131" contentBackgroundColor="#FFFFFF">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="{txtUsername.text}"/>
            </rtc:authenticator>
            <rtc:SimpleChat  x="10" y="10"  width="274" height="479" chromeColor="#CCCCCC"/>
            <rtc:WebcamSubscriber x="292" y="23" displayUserBars="true"  width="250" height="250"/>
            <rtc:AudioPublisher id="audioPub" height="0" />
            <rtc:AudioSubscriber id="audioSub" height="0" />
            <s:Label x="292" y="10" text="Ahmed's webcam" fontFamily="Verdana" fontSize="9" color="#040404" chromeColor="#CCCCCC"/>
            <rtc:ScreenShareSubscriber id="scrShare" width="250" height="193" x="294" y="296"/>       
            <s:Label id="labelScreen" x="295" y="285" text="Ahmed's screen" fontFamily="Verdana" fontSize="9" color="#060606"/>
            <mx:LinkButton x="474" y="296" label="zoom in" fontFamily="Verdana" color="#0712A9" id="btnZoomScreen" click="btnZoomScreen_clickHandler(event)"/>
            <s:Button x="19" y="497" label="start my audio" height="28" width="106"/>
            <s:Button x="133" y="497" label="logout" width="106" height="28"/>
        </rtc:ConnectSessionContainer>
        <s:Label id="labelUsername" x="165" y="191" text="Enter a username and press Enter:" color="#4A0606" fontSize="13" fontWeight="bold" fontStyle="italic"/>
        <s:TextInput x="165" y="205" width="221" textAlign="center" id="txtUsername" enter="txtUsername_enterHandler(event)"/>
    </s:Application>

  • When I publish a video, I lose half of the audio in "audio 2". I can hear it while editing. How do I fix this?

    I published a video as an mpeg, and when I listened to the final product it was missing some music I had in the "audio 2" slot. How do I fix this?

    Cameron
    Is the problem Audio Track 2 music from any of your royalty free music websites? Is the sound missing in the export
    standalone audio files
    or
    audio that is linked to video?
    What is directly under or above these files on the Timeline?
    Download and install the free codec utility named GSpot.
    And, tell us the readouts for Audio name, codec, and status.
    GSpot Codec Information Appliance
    If also video component of the file, then please include the Video name, codec, and status information from the GSpot readout.
    See what information you can put together on the properties of those royalty free audio files, including file extension. Are you dealing with Stereo or 5.1 channel (AAC or Dolby Digital)?
    As for project preset, versions 11 and 12 were designed so that the project takes charge of setting the project settings based on the properties of
    the first file drag to the Timeline. Sometimes it does it right. Sometimes not. If not, then you set the project preset manually using the properties of
    your file. See ATR Premiere Elements Troubleshooting: PE11: Accuracy of Automatic Project Preset (New Project Dialog) Setting
    Lots of additional questions...curious how you hear the Audio 2 audio in Edit area but not in the exported file which you report as
    Publish+Share>Computer>MPEG under the preset "MPEG2 1920x1080i 30.
    Any export setting customization going on under the Advanced Button/Video Tab and Audio Tab of that preset?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

  • Itunes has detected a problem with your audio configuration Audio/Video playback may not operate properly

    I cant copy the music from itune library to iphone. Message "itunes has detected a problem with your audio configuration Audio/Video playback may not operate properly" I unistalled the itune from the pc and download the itune again but still same message come up.

    I'm having the same problem.  I have downloaded Itunes again but still the same problem.

  • Itunes has detected a problem with your audio configuration. audio video playback

    itunes has detected a problem with your audio configuration. audio video playback may not operate properly. Why do i get this after update cant get sound now please help!

    See if this article will help:
    iTunes for Windows plays video files without any audio
    http://support.apple.com/kb/TS1696

  • My roland Ua-25ex usb audio interface audio input no recognised by macbook pro running osx 10.

    my roland Ua-25ex usb audio interface audio input not recognised by macbook pro running osx 10. ...the audio outputs are ok but the (audio in) input preference  for the UA-25ex is greyed out and the sliders for input volume etc  are disabled ... and I can only record voice by using the macbook pros onboad microphone not the usb interface 

    Logic Users
    Looooong Tutorial for beginners
    MacPro Videos on Logic
    i have all the logics but i don't know them deeply.
    i like some of the music files/loops you get bundled with it, there's plenty to get started.

  • Analyzing DV Audio - Validating Audio Data

    Sony UVW-1600 through ADS Pyro A/VLINK using S-Video in/Firewire 400 out
    Audio through Alesis MultiMix 8 USB mixer - 44.1 kHz output only
    Just did clean install of Snow Leopard, reinstall/updates on FCP
    Otherwise same configuration as before but lost original Custom AV settings and Easy Setups.
    Now when I capture BetaSP material, video through the A/VLINK and audio through the Alesis, I'm getting messages I never used to get:
    If I set my Capture Preset to 48 kHz audio, at close of capture I get "Analyzing DV Audio - Validating Audio Data"
    If I set my Capture Preset to 44.1 kHz (matching the Alesis output), I get a long message saying the audio data rate of my captured media file doesn't match the sample rate on my source file.
    From checking old captured clips, I see that I've always been capturing at 48 kHz but never got the "Analyzing DV Audio" message before. Not seeing any sync problems.
    Anyone know why I'm suddenly getting this message? I don't want to capture audio through the DV stream as my source tape levels are all over the place. Thanks

    Okay, I've answered my own question (I think) but could be helpful to others: in setting up my replacement (after the reinstall) Capture Preset I made a custom preset that selected "USB Audio Codec" for "Quicktime Audio Settings Device." So FCP was seeing video come in through the Firewire stream and audio through the USB stream. It evidently wanted to "validate" the rejoining of the two. I've just changed that Quicktime Audio Settings Device back to DV Audio and now I don't get the validating message. In OS X System Preferences I have "USB Codec" chosen for default audio input so FCP must be using that setting but "thinks" it's getting audio from the Firewire DV stream. I'd tried that earlier but lost audio completely during FCP capture. Now it's working. Odd...

  • Audio to audio chat

    This may sound stupid, but I have used ichat exclusively to IM with my brother.
    We both have ichat 3 and have never tried audio to audio. How is this done?

    Hi Kevin,
    Ok.
    iChat launches and you can text chat. So far so good but not very exciting and very frusting if you are trying to Video chats or Audio only chat.
    Right, iChat needs to have ports open in your Mac Firewall if it is ON and in your Modem. The ones on your modem are likely to outside the ones that are open for web browsing and email (Out-of-the-Box stuff) default settings.
    The ports and why and when http://www.ralphjohnsuk.dsl.pipex.com/page3.html
    Scroll down this blog to 7th Sept for the ports required in a table layout. http://www.ralphjohnsuk.dsl.pipex.com/blog.html
    This page contains a Pic at the top that changes between the Panther and Tiger set of the Mac Firewall. http://www.ralphjohnsuk.dsl.pipex.com/page4.html It also details the ports that have to be opened.
    Problems can arise when you have a separate Router and modem. Some applications like web browser and email can cope with both devices acting as DHCP servers. iChat has to be certain of the IP address it is sending data to and works better if there is only DHCP server.
    The ports in a modem (and or router) can be opened if different ways depending on the options your device offers you.
    The most common is Port Forwarding (Also called Virtual Servers, Pinholes, NAT, NAPT amoungst pthers)
    Next is port Triggering. Designed as a more secure way of having only one port open until the data arrives on that Port and then other ports are Triggered.
    UPnP works under the control of the appication and opens ports when the application needs them. iChat can use UPnP.
    Some of this is also mentioned on Page 3 in the links above.
    There was a problem when Tiger users were at iChat 3.0 and 3.0.1 when it was difficult for those iChat users to connect Audio only to Panther users but this has been addressed by the 10.4.3 update (iChat 3.1).
    Have you opened the ports in your Modem ?
    Do you have a second device such as a router ?
    IS only one device being a DHCP server ?
    IS this a Panther to Tiger problem ? EDIT I See not.
    BTW, My telephone is grayed out. Do I have to subscribe to .mac?
    From your earlier post
    Check the iChat View menu has Show Audio Status selected.
    Check the Audio menu(if no camera) to the right of Buddies (reads Video if camera), has Microphone Enabled with a tick next to it.
    In System Preferences > Sound > Input tab make sure the "right" micorphone is selected.
    In iChat Preferences > Video (even if audio only) > Micorphone Drop Down has the same Microphone selected.
    Ralph

  • Record drive/partition "Audio Files /Audio Recording" not found!

    HAAAAAAAAAA !!!!!! I get this message every time I want to record audio !!!!!
    Record drive/partition "Audio Files /Audio Recording" not found!

    myrna wrote:
    Any idea what path blogger Jim Frazier uses? BTY, only the audio portion does not record; the >instruments record just fine. If this is indeed a bug, is there a workaround that will get me recording >until a fix is found...
    I actually have not had this happen to me in several months, and in fact, haven't even thought about it in a while.
    But back when it would happen, I would be working away, recording audio without any problems, and then I'd hit record again for something, and out of nowhere, get a message like this:
    "olumes/Audio Drive/Album Projects/John Doe/Song title/Audio Files" not found.
    When the first word should have been "Volumes".
    So I would click and hold the record button to get to reset my audio pathway, and the proper path would already be listed. I would then merely click the "Set" button, and be back in business.
    And there were even a handful of times when I would get that message with the full name listed, the V was there in "Volumes', and everything listed correctly, and going to the record settings, everything was set properly. But I'd still have to hit "Set" to remind Logic where the pathway was pointed to.
    Definitely a bug.
    But... this bug never happened to me in Logic 7. It was only since installing and using Logic 8, that it occurred. And as I mentioned, it now hasn't happened in months.

  • Echo in audio of audio books?

    Hi I'm new to the iPod but I must be doing something wrong.
    My podcasts, video podcasts, TV shows and music all sound perfect! I downloaded two audio books "Nightfall" by Nelson Demille and "Hitchkickers Guide". Both of these have an echo when I play them back. I've tried three different headsets and the problem is still there. When I play the audiobooks from the ipod through my iMac they sound perfect through all the headsets and speakers.
    Do I have a problem with the pod or me?!
    Any suggestions or insights welcome!
    Leslie
    iMac G5 2G   Mac OS X (10.4.2)  

    I had this as well and fixed it by changing the audiobook "speed".
    Trying the following:
    from main menu select: Settings -> Audiobooks -> and change it to Normal.
    I had it set to Slow and there was an echo, but went away when I changed it to Normal.
    Hope this helps.
    JimK

  • General audio editing background book/tutorials

    I'm trying to use Soundtrack Pro to do basic cleanup on audio from video editing work in Final Cut Pro. My problem is that past the basics of things like "pan" "envelopes" and "waveform" I'm totally lacking in the knowledge required to use all the knobs in process tools like Denoiser. Is there anywhere that parameters like "Noise Type" "Threshold" and "Transition" are explained as they relate to using the tool? Are all the plug-ins documented somewhere? I guess I'm looking for some sort of audio primer. I'm not doing this professionally, but I am serious, so I don't mind investing time in reading as much as neeeded. Can anyone point me in the right direction?
    One example of the problem I face with STP (and with previous Windows apps) is that I can use the basic Noise Print-type noise reducer, but then I'm left with the low-level gurgling sound that it seems like could be sliced out by some sort of "floor" filter, but even with a lot of knob twiddling and trial and error, I don't seem to get far towards that goal.
    Thanks.

    There's an article in the current DV magazine by Jay Rose about the books to teach yourself this sort of thing. I just finished reading his book "Audio Postproduction for Digital Video" and it goes through the various tools/filters, their parameters and how/when to use them, so it sounds like this would be a pretty good place for you to start. I found it helpful.

  • Flash player audio problem mac book pro due to new 11.7.700.169 update

    I just recently updated my adobe flash player when i load a video my audio stops as video continues I'm using a macbook pro this is really irrtating because i edit and stream videos for my occupation and audio keeps cutting out is thier any way i could go back to the other flash player or is thier another flash player download besides adobe that works fine?

    I started having all kinds of freezing/crashing issues with both safari and ff on my macbook pro, os x 10.6.8. Then I even started having trouble starting up and shutting down. I wasn't getting any error messages and after trouble-shooting everything I could think of in my hardware and finally realized it started happening after I downloaded this latest update. I tried every suggested fix I could find and finally uninstalled it, reinstalled 10.3, and ran a disk repair. That was a couple days ago and seems to have worked, but what a pain.

  • What is the best program to Rip DVD with 5.1 audio for Mac Book

    I just purchased a Macbook Pro and want to rip DVD's. I want to retain the 5.1 audio tracks. What is the best program for this? Thanks in advance for your suggestions

    Sorry, but if you're referring to commercial and hence copy-protected video DVDs, breaking the copy protection, which would be necessary to copy the videos from the DVD and convert them, is illegal in the US (and other countries), so we're not allowed to discuss it here.   Some DVDs and Blu-Ray movies come with a "digital copy" that allows you to download a copy of the movie for use on computers. You might see if any of the DVDs you have come with such a feature.
    If these are home movies that you or someone has burned to DVD and hence are not copy-protected, Handbrake (freeware) is one of the more popular converters. I'm not sure how it handles 5.1 audio, though, if it will at all.
    Regards.

Maybe you are looking for