Missing Audio Dialog in TV programs.

I hooked up my new Apple TV and turned on home sharing in my Mac mini iTunes. I can see all of my content and play it through the ATV. The one problem I'm having is with the audio in some of my purchased television programs. The audio is fine when watching the program on the mini but when I go downstairs and watch it through my ATV I only hear the background audio. When the actors speak there is no audio. Not all of my content has this issue. Has anybody else seen this and know how to fix the problem?

sandude wrote:
When the actors speak there is no audio.
sounds like the content has a 5.1 audio track, and you are outputting it to a device that isn't 5.1 compatible, or isn't configured correctly.
with 5.1 audio, the speech track comes out the centre speaker, and the background comes from the left/right and rear speakers.

Similar Messages

  • Pro Tools Missing  audio file message syndrom exists on Logic

    I come from Pro tools and i am a bit traumatised by this fkn Pro Tools missing audio file message for those who know what i mean..
    Is it something possible and frequent in logic when we work on a daily basis ?

    No, you simply copy the entire project folder to a flash drive and bring it home. If you have included the audio files in the project folder, which logic does by default, logic will find them just fine at home. If it asks where they are, you just hit "search" and if they're there, If you've copied the song file to your drive without including the audio files ("pilot error") then  the program can't find them. Often, I get protools sessions from clients with missing files. Sometimes the entire audio files folder is missing, but more often the missing files are out-takes that are no longer part of the arrangement, and were still in the audio file list of the song, but were not included in the folder when the project was copied and brought to me. How or why, I cannot tell you.

  • How to get rid of missing link dialog?

    Hello All,
    Here is the description of the problem I am facing..
    From the indesign document I am exporting some incopy files.I close the indesign document and then I relocate the incopy files to some other location.
    Now I again reopen the indesign file, while opening, the missing link dialog pops up which asks for either not to fix the links or fixing the links automatically.
    How can I do the same thing programatically so that the Missing dialog will never pops up.
    So here are my two requirements.
    1) How to relink the files programatcally
    2) How to get rid of the missing link dialog.(also what is the widgetID of this dialog.?)
    I posted this question before also but couldn't get the solution.
    I tried every possible way available in sdk
    i.e using
    IUpdateLink
    kRestoreLinkCmdBoss
    IInCopyDocUtils
    etc.
    But I was unable to relink the files as well as supressing the missing link dialog.
    Any help in this matter will be highly appreciated.
    Regards,
    Yopangjo

    Hi Emanuele,<br /><br />Here is the code..I put this code in Respond function.<br />Please also refere the   FileActionsOpenDocResponder.I also tried using the functions CheckLinkedStories and others.<br /><br />//code start////<br />InterfacePtr<IDocumentSignalData> documentSignalData(signalMgr, UseDefaultIID());<br />ASSERT(documentSignalData != nil);<br />if (documentSignalData == nil) {<br />break;<br />}<br />InterfacePtr<IDocument> doc(documentSignalData->GetDocument(), UseDefaultIID());<br />if (!doc) {<br />break;<br />}<br /><br />IDataBase * db = GetDataBase(doc);<br />InterfacePtr<ILinksManager> linksManager(doc,UseDefaultIID());<br />if(linksManager == nil)<br />{<br />return;<br />}<br />for(int32 linkIndex = 0;linkIndex < linksManager->GetLinkCount();linkIndex++)<br />{<br />UIDRef linkUIDRef = linksManager->GetNthLinkUID(linkIndex);<br />InterfacePtr<IDataLink> dataLnk(linkUIDRef,UseDefaultIID());<br />if(dataLnk == nil)<br />{<br />continue;<br />}<br /><br />UIDList linkUIDList(linkUIDRef.GetDataBase());<br />linkUIDList.Append(linkUIDRef);<br /><br />NameInfo ni;<br />PMString formatName;<br />uint32 fileType;<br /><br />dataLnk->GetNameInfo(&ni,&formatName,&fileType);<br /><br />uint64 size,time;<br /><br />IDataLink::StateType stTp = dataLnk->GetStoredState(&size,&time);<br />switch(stTp)<br />{<br /><br />case IDataLink::kLinkNormal:<br />break;<br /><br />case IDataLink::kLinkMissing : <br />case IDataLink::kLinkOutOfDate :<br />{<br /><br />//code for relinking.<br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br />if(relinkCmd == nil)<br />{<br />continue;<br />}<br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA); <br />if(relinkCmdData == nil)<br />{<br />continue;<br />}<br /><br />//Here you can hardcode the file name in place of dataLnk->GetFullName()<br />relinkCmdData->Set(db, linkUIDRef.GetUID(),&ni, &formatName, fileType, IDataLink::kLinkNormal,(dataLnk->GetFullName())); <br />CmdUtils::ProcessCommand(relinkCmd); <br /><br />//update the link<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br />if(dataLinkHelper == nil)<br />{<br />return;<br />}<br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />updateLink->DoUpdateLink(dataLnk, &newLinkUID );//kFullUI);<br /><br />//The program crashes here<br />InterfacePtr<ICommand> command(CmdUtils::CreateCommand(kRefreshCmdBoss));<br />InterfacePtr<IRefreshCmdData> data(command, IID_IREFRESHCMDDATA);<br />data->Set(GetDataBase(dataLnk), newLinkUID, IDataLink::kLinkNormal);<br />CmdUtils::ExecuteCommand(command);<br /><br />}          <br /><br />//code end.<br />(please check for any missing brackets.)<br /><br />Thanks and Regards,<br />Yopangjo

  • How to avoid missing font dialog box(alert) while running the script??

    Hi....
         In Illustrator CS4 ,I tried to skip missing font dialog box(alert box) by using the following  script .But,I could not skip the dialog box
    So if you have any suggestion about this let  me know..
    tell application "Finder"
      set user interaction level to never interact
        activate
        set fileName to (path to desktop folder as string) & "fer11757_f1208.eps"
        --set user interaction level to never interact
        --    set user interaction level of script preferences to never interact
        open file fileName
        --set alert missing fonts to true
        set user interaction level to never interact
        activate
    end tell
    display dialog ("completed")
    end tell
    Thanks,
    Mubeen

    Does this NOT error when run? Your target application here is 'Finder' Apple's system file browser and you are giving it Adobe illustrator commands?
    Im not 100% about the versioning with Illustrator installs I think they are all just…
    Tell application "Adobe Illustrator" -- No CS Versioning?
         -- do stuff here
    end tell
    you could check by just picking the app from this list
    choose application

  • Why do I get this error when trying to use my bluetooth headset as a listening device? There was an error connecting to your audio device. Make sure it is turned on and in range. The audio portion of the program you were using may have to be restarted.

    Why do I get this error when trying to use my bluetooth headset as a listening device? There was an error connecting to your audio device. Make sure it is turned on and in range. The audio portion of the program you were using may have to be restarted.

    I may have already resolved this issue buy removing the device from my computer and re-pairing it. It is currently working just fine.

  • Edit Audio dialog box won't open

    I cannot get the Edit Audio dialog box open -- I've double-clicked and right-clicked the audio in the timeline, tried the menu Audio > Edit > Slide..., poked around in Settings and Preferences but cannot find anything amiss in there.
    I don't get any error message. Nothing happens at all.
    I'm using Captivate 4 on a Windows XP machine, I've done a few projects before and never encountered this problem.
    Any ideas??
    Urgent help would be much appreciated -- have to get two project done in the next 24 hours.
    Thanks in advance

    Hi there
    Try clobbering your preferences file.
    Close Captivate
    Open Windows Explorer
    Navigate to the location below:
    C:\Documents and Settings\*YOUR USER NAME HERE*\Application Data\Adobe\Adobe Captivate
    Delete the file named captivate_v40.dat
    Restart Captivate and see if the problem is solved.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Missing advanced dialog box in photoshop elements 9

    I am hoping someone out there can help. I have a missing advanced dialog box on my photoshop downloader page. I have photoshop elements 9. I saw that changing the screen resolution can sometime help this, however it does not in my case, I've tried all available. I have a new Dell Inspiron laptop and resolution is set at 1366 X 768. My computer was preloaded with photoshop elements 8. I can see the advanced dialog box in version 8. However, it is not in version 9. Does anyone have a suggestion? Thanks for your help.

    Check your screen resolution settings for vista.
    I believe the screen resolution needs to be at least 1024 x 768 for the camera raw dialog to show in pse 8.
    For example, if instead of running VirtualBox full screen, your running it in windowed or seamless mode and made the window smaller by dragging on the corner, that would automatically lessen the screen resolution in vista.

  • How to choose between different audio output in different programs

    I want to choose between the audio outputs in different programs.
    For example; I want to hear spotify/iTunes with my plugged-in speakers and skype with the build-in/intern speakers.
    It is possiple to control this on Windows but can I do it on Mac?
    Does anyone know an app for this problem?
    Thanks for help!

    I'd assume you'd want to set the sequence to "slur" notes and then just calculate the notes between a top & bottom value based on a float and generate NOTE_ON messages appropriately.
    The pitch bend is designed to emulate / support the bend wheel found on sound keyboards...and it just modifies the pitch associated with a given note. A pitch bend of +2 would turn an A into B, etc...
    So, you'd want to do...
    SET_SLUR (however you do that, I'm not a MIDI expert)
    pitch = bottom_pitch + ((top_pitch-bottom_pitch) * sliderValue);
    NOTE_ON(pitch)

  • Video-  missing audio sound

    missing audio content when I record video on ipad. Any ideas on how to fix?

    Judyqw3-
    Have you verified that your iPad microphone is working?  One way would be to install the free Skype iPad App, which has an on-line audio test capability.
    If the microphone is not working, contact Apple.  If you can demonstrate the problem to the Apple Store Genius, you may get a new iPad on the spot.
    Fred

  • **Missing Audio when Exporting to HD**

    Hi,
    I have been trying to find a solution to missing audio for sometime and there are many discussions on this forum regarding this topic. I have an external drive and in the past I have lost audio, I guess because the event and the project were on different drives, I have resolved that. Also, the problem that I have is not related to the speed of a clip or that I have more than 10GB in my events (I don't). There have been other audio issues and I have always been able to resolve them but this one has me stumped! I thought that perhaps the graphics card was not up to the task but this has just happened and now I am confused.
    I have just completed a project that was only 3 minutes long 403.5 MB. The movie was imported to iMovie from my video camera and listed as an Event, I also used movie clips and stills from iPhoto, I added titles and transitions. I then exported the movie to Media Browser (mobile size) so that I could import it into Garage Band to make an soundtrack. I then exported the soundtrack as an AAC to iTunes (as I have read that there are issues with MP3 and audio missing). I then opened iMovie and dragged the soundtrack into my project and republished the completed project to Media Browser in the HD size. No problem all works well, I was really happy! Onwards I thought and get another 2010 video finished, wrong!
    On my next project I have done everything that I have described above, this time the project is only 349.8 MB (smaller). The audio on the HD size has failed. I have copied all the files onto my desktop and reimported everything. I have tried exporting using Quicktime or as a Movie but still no audio. I have found that the 'consolidate media' is grayed out when I have all my clips in the project editor, because they are all on my hard drive. As soon as I add the iTunes track that I have exported from Garageband the consolidate media option becomes available. If I select this I then get the message that the iTunes track cannot be copied as it is not on my hard drive! It is on my hard drive (I disconnected all external drives so that there would be no confusion!).
    I cannot understand how the first project worked and the second smaller project failed using the same process! I thought that I would share this information with the forum in the hope that perhaps a solution can be found. I am able to publish the second project to my mobile me in the large and mobile sizes, it would be good to have the HD size for a DVD. There seems to be no logical pattern to the audio disappearing on export. Your thoughts or help would be very welcome.
    Kind regards,
    Watchthebat.

    In Soundtrack if you have selected to use only channel 2 of a stereo file (right click on stereo file and select mono->channel2) you will hear channel 1 when you export. Its a massive bug.
    Could that be the source of your problems? The bug can certainly create exported mixes that sound like stuff is missing.
    There's a recent thread around here about this.

  • Missing Advanced Dialog button

    Somehow the "Advanced Dialog" button is missing from the Photo Downloader box of my Elements 8. Does anyone have the same problem and know how to fix it?  Thanks.

    John,
    As mentioned yestda, i deleted and re-installed the Element 8 on my computer. It went very smoothly, no problem whatsoever. Then i tried everything you mentioned in your emails. Nothing helped. The 'Advanced" option did not show up at all in the Preferences box, nor on the Downleader box. I can't think of anything else to try other than call the Tech support of Adobe, unless you or someone else can suggest something else to try. I am willing to try anything. Thanks a lot for everyone's help.
    Regards, DukeF5
    Date: Mon, 8 Feb 2010 11:47:39 -0700
    From: [email protected]
    To: [email protected]
    Subject: missing Advanced Dialog button
    Does "'Show APD Dialog (Advanced)" appear as an option in that drop-down list, as shown here:
    http://forums.adobe.com/servlet/JiveServlet/showImage/19683/capture.png
    If it doesn't, then that's an additional indication that your PSE is getting confused about the display height.  (When the height is less than 768, PSE won't show the Advanced option in the drop-down box.)  Whether that's a bug in PSE or a problem on your computer, who knows.
    Did you try steps 2-4 from my previous message?
    >

  • Missing Audio in iDVD burns

    Okay, I have seen several posts and suggestions on how to get the sound back on the dvd with iDVD, but nothing seems to work. I have tried EVERYTHING, except for the option that I am doing right now, but if that's how it has to work, I don't NEED itunes.
    iMovie project, sounds great
    exports to my iPOD just fine (with audio)
    no audio when it reaches my DVD
    Equipment used:
    933 mhz PowerMac G4
    LaCie DVD±RW Double Layer (which replaced my no longer compatible superdrive)
    Plenty of Hard Drive space
    maxed out 1.5GB Ram
    OS X 10.4.8
    I get the video, but no audio
    I have already tried going into ADVANCE and clicking [Delete Encoded Assets]
    I have also taken any Quicktime modifications off my computer (Flip 4 Mac)
    I am now in the process of burning a Disc Image and testing it, with 933mhz, this takes a while.
    Any other suggestions?
    Thanks, and I know this is a frequent question, I just couldn't find the answer.

    MacGreen:
    I had a similar situation. There were 2 separate iMovie6 projects (both 16 bit audio) that were brought into a single iDVD6 project. When I mounted/viewed generated image file, one movie had audio and the other did not. Somehow audio was not included in encoded video files for the 2nd movie.
    Problem might be related to fact that total size of encoded video files (in VIDEO_TS) was approaching limit of single sided DVD (4+ GB). I noticed that if I did trick of exporting/importing full DV in iMovie, then bringing back into iDVD, for some reason, the total size of encoded video files was now less that 4GB. Maybe that gave room for audio in 2nd movie.
    Or maybe its not related. I did not have any missing audio problems like this using iMovie5/iDVD5 combo (and earlier versions) and I made a bunch of DVDs of varying sizes using those packages. Seems like a bug somewhere. I know you are using FCE. Can you export edited projects as DV and bring back into iMovie6 then into iDVD6?
    Let us all know if you get your project working properly.
    Good Luck.
    Paul

  • Missing Audio / Sound in imovie with .AVI files when imported from iphoto

    fortunately i don't need this answered, eventually figured it out my self, just thought it would be helpful to share the solution to this problem as I'm sure others have experienced it. The problem makes more sense when explained chronologically.
    My wife has a Casio digital camera, and had recorded many Movies on it, they all sat in iPhoto all worked fine until i upgraded to Quicktime 7.5, then the audio disappeared. i tried in vain to fix (reinstalled QT 7.5, removed plugins, reinstalled etc.), but to no avail, so i left it - this was all under Tiger, i decided I'd upgrade to Leopard and see if the problem went away.
    Before upgrading to Leopard i got iLife 08, when i first launched iMovie08 it pulled in all the movies from iPhoto, but they too had no sound.
    Then i upgraded to Leopard, now the quicktime missing audio issue got fixed, so i could hear the audio again when launching quicktime via iPhoto (turns out the issue was with how quicktime was handling adaptive PCM audio stream) - i expected all would be fine in iMovie... but it wasnt.
    after much experimentation i realised that i had to force iMovie to re-import all the video from iPhoto, this fixed the issue, but with no obvious way to do this, this is what i did:
    - opened finder, navigated to iphoto library, right click and chose 'show package contents'
    - navigated to the data folder and did a search on this folder only for all movie files (when imovie had originally converted iPhoto movie files into thumbnails it dropped all the thumb size movie files in this folder)
    - deleted all the movie files from the Data folder, making sure not to delete the movie files in any other folders & emptied trash
    - launched imovie, now all the iphoto movies were missing.
    - re-launch iPhoto, whilst holding down shift, option + command keys
    - checked 'rebuild the iphoto library database' only, once done, closed iphoto
    - re-launched imovie, this forced it to re-import all the movies from iphoto
    ... and then the sound was back.
    FYI
    this worked when using...
    OS 10.5.4
    QT 7.5
    iMovie 7.1.4
    iPhoto 7.1.4
    jb

    Hi MGW,
    I do not no how things are handled when using HDV and technical documentation is hard to find on this topic of how photo are handled using HDV but in iMovie and most non HDV video editing software the picture is always 72ppi regardless of what is was/is on the outside and the images that appear the worst are the ones with less.
    On a side note I don't use iPhoto because of all the superfluous files and thumbnails it creates and it disorganises my photos according to criteria that is completely irrelevant to me. I have had these thumbnails pop up in the browser in the past primarily with any photos that existed in the library prior to any updates. With what I have been working on as of late can understand how and why this could happen.
    If you scroll through the media browser dose it appear that the library you are working with duplicates itself somewhere along the line or do you see double images side by side?
    What are you machine specs and please include you screen/display size and graphics card information as this is the most relevant information at this point with what you are doing.
    W1

  • Missing Audio when Converting from MPEG1 Muxed to Ipod using QT Pro 7

    I just got my video iPod over Christmas. After reading up on QT Pro 7, I purchased it over the weekend, and have attempted unsuccessfully the past two nights to convert home videos (taken with my Sony digital camera) to iPod format. My home movies play fine when I open them in Quicktime; however, when I export to the iPod format (and also when I export to mpeg4 format), I only get the video and not the audio.
    I've confirmed that my key for QT Pro 7 is successfully loaded, so that's not the issue.
    I've also confirmed that the format of the original video taken from my camera is "MPEG1 Muxed". Several internet discussion boards seem to indicate that missing audio is a common problem for people using Sony cameras and Quicktime. If this is the case, I'd prefer to simply refund my money and buy one of the other video to iPod converters available on the web.
    So, either help me solve this problem, or help me get a refund. I'm fine either way.
    -- Chief1Pat

    QT does not export the sound when exporting from muxed mpegs (mpeg-1 or mpeg-2). QT Mpeg Limitations
    You should be able to export both sound and video with this Windows freeware:
    http://www.videora.com/en-us/Converter/iPod/

  • Presenter 7 - how to insert marker type "Click" in Edit Audio dialog

    http://www.adobe.com/education/resources/hed/instructional/connect/collaborative_teaching/ pdfs/edit_audio_adobe_pres.pdf
    The above document includes information that you can add four types of markers by using the Audio Editor in Presenter and one of the marker types is mouse-click animation. I can't find a way to do it in reality. The only way to insert this type of market is in Edit Sync dialog, not in Edit Audio. This requires resynchronisation of the whole audio instead of just adding one marker. In Edit Audio dialog I only have markers of type "Wait for user" and "Go to slide".

    Hi,
    This problem Could happen when you referesh quality or test system.
    Your delta setup for the related master and transaction data needs to be reinit.
    What happens is when you init. the delta and subsequent delta is all maintained in your source system
    please check Notes 852443,424848,834229
    Hope this helps
    Thanks
    Teja
    Message was edited by:
            Teja badugu

Maybe you are looking for