No Quicktime Sound in Web pages

Hi! I have been having serious problems with my sound in Quicktime. I have Quicktime 7.5.5 and I've found that audio files that appear on web pages do not play. The progress bar still moves, and all volumes are completely turned up, but no sound comes. Also, video files played online, a lot of the time, will also have no sound. The video will play and the bar will move, but no sound. I've found that if I uninstall and then reinstall Quicktime, it will work again for a short period of time, then the sound will go out again after usually just a few hours. I've had this computer for almost a year and I'd never had problems with this until I downloaded Quicktime 7.5. I had then later upgraded to 7.5.5 when it was released, hoping it would fix the problem, but it didn't. I'd like to downgrade to an even lower version, to pre-7.5 when the sound actually worked, but then my iTunes doesn't work anymore. Currently, iTunes works and Quicktime even works when playing files from the actual player on the computer, but internet web page files sound doesn't work. Any help you could give would be very helpful! I've googled this problem a hundred times in a hundred different ways and come up with no solution.
Thanks!

Start with Quicktime support:
http://www.apple.com/support/quicktime/
... leads to "troubleshooting Quicktime"
http://support.apple.com/kb/TA44469
iTunes or Quicktime audio doesn't play correctly -
http://support.apple.com/kb/TS1362
Removing QuickTime (and other Apple apps)
http://support.apple.com/kb/HT1923
Trouble Installing -
http://support.apple.com/kb/HT1926

Similar Messages

  • How do I fire a URL into QuickTime from a web page?

    Looking at the Apple trailer site and I like the way that if you view a HD trailer it loads QuickTime and opens the video straight into QuickTime
    Now I assume it's sending the URL of the MOV file to QuickTime to play.
    How can I make a link from a HTML page send the URL into QuickTime to replicate the same way to run a video.
    At the moment I build "pop up" windows to display movies in, and I think using QuickTime in this way will be better so if someone has popups blocked my movies will still play.
    It must be simple to do.
    I once did a site for someone that need a podcast and I got it to send it to iTunes. But I cant seem to see how to do the same for a movie to QuickTime
    R

    http://homepage.mac.com/kkirkster/03war/
    The technique is known as Poster Movies. A tiny image file saved as .mov file that can either act as a "placeholder" (target="myself") or act like a "link" (target="quicktimeplayer").
    http://www.qtbridge.com/pageot/pageot.html
    Free software to help write the proper page code.
    Another method is a QuickTime Media Link (.qtl file). These tiny text based files can be placed anywhere in a Web page and will always download (Mac or PC) and will launch the QuickTime Player.
    http://homepage.mac.com/kkirkster/.Public/wwdc_keynote.qtl
    One of mine as an example.

  • Embedding QuickTime Video om Web Page

    Hello,
    Thank you in advance for any help someone can provide. I am trying to embed a quick time movie on a web page. I have received the reference file from the company that will host the quick time movie and I successfully can embed the movie. How do I embed the movie with a frame of the movie with the controller to display when a visitor initially visits my page? Do I need to have the reference file recreated?

    http://www.oreillynet.com/pub/a/javascript/excerpt/learnwebdesign_chap22/index.html
    scoot down the page and you will see
    Use the autoplay parameter and attribute to set whether the
    movie starts
    playing automatically when the page loads (true) or if the
    user needs to hit
    the Play button to start the movie (false).
    regards
    kenny
    "Chris Jumonville" <[email protected]> wrote in
    message
    news:elqq1l$27f$[email protected]..
    > Simple question. I have a quicktime .dv video on my site
    and I want to
    > embed it on a page so when you click on the page it
    automatically brings
    > up the movie on the page but doesn't start it
    automatically, you have to
    > start it manually. How do I do this?
    >
    > --
    > Best Regards,
    >
    > Chris Jumonville
    >

  • Code for Embedding Quicktime Movies in Web Pages-Question

    I have been embedding QT movies in web pages for years. I used to use the embed and object tags, but due to the problems with the default settings of IE7, in regards to ActiveX, I recently changed to the javascript method.
    I will paste sample code below, of how I use it, with the movie title change to sample: (of course I change the dimensions, depending on the movie size.)
    <script language="JavaScript" type="text/javascript"><!--
    QT_WriteOBJECT('sample.mov', '644', '76','','controller','true','autoplay','true','showlogo','true','cache','false' ,'enablejavascript','true');
    // --></script>
    and I put at the top of the page, right before </head>
    <script src="AC_QuickTime.js" language="JavaScript" type="text/javascript"></script>
    I forgot where I got this code. Perhaps from someone on this forum, or elsewhere. It seems to work with the default settings on most browsers.
    I have a couple questions, however, regarding fine-tuning it a little more.
    1) If it takes a while for the movie to load, users who open my pages see a static Q QT icon. How would one make the icon flash, with flashing text that says "Loading", so that the user knows that the video is loading? (I have seen that on other sites, and don't know how to do that.)
    2)As said the javascript works with most browser default settings, as most have javascript enabled by default. But what if a user does not have javascript enabled? Could the code sense that, and if non-existent, tell the user to enable javascript? Or, if javascript is disabled, could the embed and/or object tags be activated?
    3) The code above, that I got from someone, says "cache=false". That means that each time someone sees the movie, it has to be reloaded from the net, and not from the browser cache, correct? If so, why would one want it to be set that way? If it's a large movie, a user with a slower computer and/or internet connection would certainly prefer if it could play from the cache the next time, loading much faster. Is there any reason to prefer "cache=false"?
    4)Is there any code that could be put in, to allow the user, if they prefer, to download the file,(perhaps with a right-click or CTRL-Click), instead of playing it in the browser?
    Thank you very much in advance, to whomever can help with these code questions.

    Thank you for your reply, Kirk,
    1)Yes, I do have "fast start" enabled in my files, and they were made with QT Pro, newest version. So no, there is no "trouble with my files".
    However, I would still like to have that flashing "Loading" icon when the file is loading, as I see on other sites. (And yes, even with "Fast Start" enabled, depending on the size of the file, the speed of the computer and internet connection, it can take a little time beforeit starts.) Anyone know how to create that flashing "Loading" icon, rather than just the static Q?
    2)I just wondered if there was a way for the javascript to recognize if the user does not have javascript, and bring up a message if that is the case, telling the user they need to enable it to see the content. (As would happen if the user does not have the QT plugin installed.) Yes, I realize it would not work to include in the normal way the embed and object tags as well, I wondered if there was a way to invoke them only if the user doesn't have javascript. Perhaps impossible, but I thought I'd ask, in case someone knows of a way to do that.
    4)Yes, I guess I could just put a separate direct text link to the movie file for downloading. I just wondered if there was a way to put that in the javascript, so that if someone right-clicks on the QT icon, they can download rather than view it, rather than use a separate link. That may also be impossible, but I thought I'd ask, and see if there is a way to do that.
    Your question to me regarding dimensions--I forget which was the QT movie, that I took that sample from. Yes, I have some in unusual sizes. They are not normal movies. I don't have time to explain more now though, and that has no bearing on the questions I asked.
    Once again, thanks for replying, and if you or someone else could help further with my questions, I would appreciate it very much.
    Have a nice day!

  • Safari-Leopard: Quicktime Videos from Web Pages - GARBLED AUDIO

    OK, so here is the problem:
    1. I am using (the new) Leopard, and all updates have been downloaded and installed successfully.
    2. In Safari, when an (embedded) video is present, the video appears perfect. However, the audio is garbled, and unintelligible. This is true for EVERY video I've tried to view on a webpage.
    3. I've saved a few videos as Quicktimes to my desktop, and opened directly with Quicktime. The same problem occurs, without fail - GARBLED AUDIO
    4. The most recent "test" was a Quicktime using the AAC, H.264 Codec.
    5. It seems as if I have installed all of the appropriate plug-ins, but can't be sure of this.
    So it seems as if this might indeed be a Quicktime problem, and not a Safari problem, but thought I would post here in case others are having similar issues. I will make the same post in the Quicktime forum as well.
    What is the solution?!?!?!??
    rw

    Hi Robert
    A number of Quicktime/Safari issues have surfaced with Leopard. Here's one example.
    Have you looked at your Audio settings in your System Preferences>Quicktime>Advanced>Mime settings panel? In my panel, everything is selected except for Sound Designer II. Might be helpful to uncheck the Audio setting, select "done", then go back to the panel and select it again. Close the panel and try an audio in Safari again.
    In your response here, please provide a link to your thread in the Quicktime forum. While Apple discourages posting the same issue in multiple forums, I think in this case the issue may be more Quicktime related than specific to Safari. So good to cover both bases.
    Post back

  • I am having challenges with computers without quicktime loading my web page

    is it a requirement for a user to have quicktime to view an iweb website that has mp3 files loaded? I would have thought that any media player should have worked. My web site is thekarimfamly.com.

    I've used other hosting solutions on mine such as YouTube or google video to host media on my sites. I'm fairly certain you can use any application and that you're not restricted to quicktime. I've experienced the same thing with my friends. Host on YouTube and select the media as private. That way, only the people on your site will have access!

  • Including QuickTime In A Web Page

    I'm currently doing a QTVR project, and to get around the IE embed problem I have spent the last few hours trying to get the few lines of suggested code working.
    http://www.apple.com/quicktime/tutorials/embed.html
    It does not work. Flash 360PanViewer with SWFObject it is then. Thankyou.

    Flash Video format

  • Quicktime on a Web Page ActiveX

    I cannot get this webpage to play Quicktime on Windows:
    http://www.lionsgatebethesda.com/virtualtour_quicktime.html
    Is there something I am missing in the code? Why on earth did Windows do that stupid ActiveX thing?
    -Kirk

    The file works just fine on this PC using IE 6:
    http://www.lionsgatebethesda.com/Video/lionsgateREF.mov
    I did not get any ActiveX alert dialog.
    Your file does use the H.264 Video codec which requires the viewing machine have QuickTime version 7 installed.

  • How can I accept certificates for using QuickTime as player in web pages ?

    Hi,
    I want to use QuickTime embedded in web-pages as a player for my content.
    When I provide a link that is under a certificate, the player (web page that hat this embedded) won't ask for approval of the certificate.
    This will make the player un-usable, as it won't be displayed in the page.
    How can I see if the content can be played and ask the user to open a new page, approve the certificate and the come back to the parent page and play the media.
    Thank you,
    Cheers,

    Well I am actually using a template. And the flash video that
    was created is way beyond my ability. So I tried initially to
    separate the two, the intro video, and the navigation. But they are
    intertwined in a way that I do not understand. I do need to do the
    variable thing. I took a flash class in school, and my book does
    not touch anywhere close to this. I know its probably too
    complicated to explain through a forum, but can you recommend any
    resources online or books that would go more in depth with this
    sort if thing. If I can just see the way it works on another site,
    I know that I can do on mine.
    Thank you!!!
    :)

  • Quicktime Logo w/Question mark on web pages

    A few months ago, suddenly I was unable to view Quicktime files on web pages when they loaded. The program is on my computer and it will play files I have saved on my hard drive but when I go to a website that has a Quicktime file (still or video) I only get the Quicktime logo with a question mark and cannot open, play or access the file in any way. I've checked all the settings I know on my computer to fix the problem but none of them have worked. Anyone have a solution to this issue?

    How to view/hear pretty much everything:
    Assuming you already run OS 10.4.9 or above and have Quicktime 7.2, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer from http://uk.real.com/player/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    The world should now be your oyster!
    You should also have the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • No sound with quicktime plug in on web pages

    There's no sound when I play videos on web pages encoded with quicktime, however Flash videos, as on YouTube for example, do work. This seems to have happened recently, but I cannot pinpoint what caused it.
    One solution I found and have tried, is setting the audio format in the Audio MIDI Set up, but it was already the recommended 44100 Hz.
    Any ideas gratefully received.

    Please provide a sample link/URL of the problematic web pages.
    If you have Garage Band installed, open same & then quit out of the app.
    If you have not already done so, try running repair permissions from your HD and afterwards run +repair disk+ from your software install DVD.

  • HT5016 Quicktime 7.7.1 (1680.42), does not run the video only the sound on a Web page

    Quicktime Pro 7.7.1 (1680.42) when pasted the Header and Body Text into the Web Page only the sound is heard, no video Dreamweaver shows errors in the [Resources/stylesheets/qtp_library.css] line for Windows Explorer, Firefox, and Safari

    Go to Start>Settings>Control Panel. Open The QuickTime control panel, click on the Browser tab, click on MIME Settings. Click on + to expand Miscellaneous-Miscellaneous file formats, uncheck Flash media. Click OK Apply OK and restart the browser for the change to take affect.
    You are more than likely recieving the ? because the website is using Macromedia Flash Player, maybe now called Adobe. The lastest version of Flash Player is 9, this site will tell you what version is currently on the computer.
    http://www.macromedia.com/software/flash/about/

  • Web Page Sound File Question

    I built a web page years ago with an embedded sound file (.au) which would play when a photo was clicked. The sound would play while the page remained visible. Now when I launch the sound, QuickTime opens a new window with a player interface.
    What has changed?
    I'm using Netscape 7.2, but the same thing happens in Safari.
    Internet Explorer still works the way it used to with a small QuickTime player bar appearing apart from the Browser.
    Here's the link: http://www.margnat.com/chevette.html
    Just click on the picture of the car.

    Your problem is that you merely provided a link to the audio file; you didn't embed it in the page at all. The problem is that different browsers on different platforms with different audio players installed handle sound files in different ways. Some browsers will play the sound in the background, some will open a new page and play in a browser plug-in...as a page designer you really have no idea what is going to happen.
    For that reason, when I have opted to embed audio in a web page, I usually put the audio file into a QuickTime wrapper so that I can use the QuickTime player plug-in. Here are two pages where I've supplied embedded audio--
    http://capital2.capital.edu/admin-staff/dalthoff/adventures/tr2004/caml01.html
    ...and...
    http://capital2.capital.edu/admin-staff/dalthoff/adventures/tr2006/ussfoma01.htm l
    Either way, there is a QuickTime play button embedded on the page. It isn't the most efficient way to deliver audio, nor is it the most platform-agnostic, as it insures that QuickTime will play the clip regardless of the user's preference. But it has the advantage of being consistent: it will ALWAYS play in QuickTime on any browser that supports it.
    --Dave Althoff, Jr.

  • Playing sound on a web page

    Hi,
    I am very new to Flash and using it is limited to adding
    “extras” to websites I develop.
    I have a web page that has 5 different voice samples –
    next to each there is a button to play the sample and another to
    stop it.
    I have one issue - After a sound sample plays to the end
    (stops by itself), I have to click on the “play” button
    3 time to get it to play another time (repeat the same sample), but
    if I click the “stop” button, I can re-start the voice
    sample by clicking on the “play” button only once (as
    it should be).
    I’m not good enough at this to figure out what the
    cause is – I tried deleting the Keyframe on the
    “Up” state but this messed things up more (I could not
    click the “play” button anymore!!).
    I am hoping to learn more from this forum.
    I am using Flash CS3, with an MP3 file format on Windows XP.
    Kindly help.
    Thank you.

    http://docs.info.apple.com/article.html?artnum=61011
    It will help you understand the proper tags.
    You may want to use QuickTime Pro to convert the .wav files. You can get them much smaller in file size by exporting them to the .mov format.
    Use QDesign Music 2 audio codec set the same as the source of the .wav files and your page will load much faster.

  • Embedding into a web page & background sound.

    Hello,
    I am looking for some advise on embedding an adobe edge animation into a web page.
    It's more complex than it sounds unfortunately for me because I don't have any coding knowledge.
    I have a web page with a flash version of the animation. I want to add the edge animation to the same page but only play
    if the device does not have or support the flash player. So, if flash is installed I want the flash version to run. If no flash (ipads, etc) then
    the edge version should play. I know many people choose the other way around but while I am learning edge the flash version is
    much better so I would prefer the flash version to play primarily.
    Onto the sound element. I have background music playing for the flash file (the music is built into the flash animation. I am not sure
    how I can do this with the edge animation. Presummably it would need to be coded into the acutal HTML page with some sort of
    HTML5 tag? But the problem I see here is that if the flash version starts to play the HTML5 version would start to play too in browsers
    which support flash AND HTML5 tags.
    I would appreicate any advise.
    Thanks
    Andrew

    Does anyone know if there is an email address for Edge support? I really need to find a solution for this.
    Thanks
    Andrew

Maybe you are looking for

  • What's the best out-of-the-box web interface for a SQL DB?

    I'm developing a Java web application that will be backed by an Oracle database. Users would like a simple web interface that allows them to accomplish what they could with SQL queries without knowing SQL. The basic operations would be: * displaying

  • How to upload photo to iCloud if...

    1) I deleted the photo in iCloud by mistake, but there's still one on iPhone(iOS7.0.4), what can I do if I want to upload it to iCloud again? 2) I edited the photo, maybe croped it (function by iOS7.0.4 itself), or other ways, so I got a new photo, b

  • S_ALR_87013166 Variance Issue

    While comparing the results between report (S_ALR_87013166) VS KOB3 report for one of order, we found that two materials  has difference between target and actual cost in s_alr_87013166 but without appearing in the variane column and also when checki

  • Why there is a huge difference between a row size on a disk based table and a row size in memoptimized table of SQL 2014?

    Hi All, I have two table with similar structure and data, one is on disk and the other is in memory. I somehow calculated the difference between a row size of on disk and in memory table and found that the row size of in memory is 700 Bytes more than

  • Provider 64-bit - client 11g

    Hi, I am trying to use the provider in a 64-bit application in windows server 2008 (for application server) and a Oracle 11g database server. It seems there is still not such provider. Even the provider which is included in Oracle client 64-bits, see