Getting a quicktime stream to open in quicktime, not browser

Hi all,
I am trying to stream some quicktime videos (.mov, H.264) from my website. For the standard res. version, it is fine to have it play in the browser, but I would like to have the HD versions open up in quicktime player automatically, like the HD trailers do on apple's website. How would I go about doing this (I have little experience streaming videos).

The key is that you need a "poster movie" to embed into your web page. The poster movie can be anything that the QuickTime plug-in can display...a movie, a sound clip, or just a still image...even just a still image that looks like a PLAY button. The key is, it has to be a file that QuickTime can play, and you have to embed it into your web page.
In the embed code, you need to include an additional parameter, the HREF parameter, which includes the URL for your streaming movie. Then you also need to include in the HREF parameter the TARGET directive, with the target identified as <quicktimeplayer>.
So your embedded movie ought to look something like this:
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
WIDTH="w%" HEIGHT="h%"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"
ID="movie1">
<PARAM name="SRC" VALUE="poster.mov">
<PARAM name="CONTROLLER" VALUE="false">
<PARAM name="HREF" VALUE="<rtsp://my.streaming.url> T<quicktimeplayer>"
<embed src="poster.mov"
width="w%"
height="h%"
controller="false"
name="movie1"
href="<rtsp://my.streaming.url> T<quicktimeplayer>"
pluginspage="http://www.apple.com/quicktime">
</embed>
</object>
Of course, substitute your height and width for h% and w%, and your poster movie name and stream protocol and url where appropriate. And you really should use a Javascript method to write this code into your page so that it will work in Internet Explorer.
The real key here is that no normal web link will fire off QuickTime Player. But if you embed a poster movie, then that movie will be displayed...and more important, a user's click will be interpreted by, not by the browser's rendering engine, but rather the QuickTime browser plug-in, which knows how to start QuickTime Player.
--Dave Althoff, Jr.

Similar Messages

  • Quicktime Streaming Server - qtss - service does not start in Server Admin.

    Hi,
    We're currently trying to configure a video/audio streaming server, but we've fallen at the first hurdle and the QuickTime Streaming service will not start (I am trying to enable it via Server Admin). Can anyone think of any possible reasons for this?
    Many thanks,
    Dave

    It's probably not hugely relevant but are you trying to start it remotely or locally on the server? I know Server Admin can get a bit laggy and not always do what it should when starting services. Also can you check in the logs for the service (Quicktime Streaming>Logs>Error Log) to see if there's anything in there which gives and indication. Paste the output here if you need anymore help with that.
    N.

  • PDF form open in viewer not browser

    I'm having a problem with a PDF form on my website. I've tested it up and down with no problems, yet I'm getting feedback that users complete the form, click "submit" and nothing happens...and I don't get the form using form central.
    I've determined that the problem is that users are completing the form in a web browser, rather than in adobe reader/acrobat.
    I would like to make a change to the form, or something with my site that would automatically open the pdf in a viewer (or detect if the user does not have Acrobat) - versus having to hope that the user follows the directions that I've posted to my site.
    Please help!

    Hi;
    Yes, unfortunately when you post a PDF online as you discovered it does not work right when filled out in a web browser and you want/need users to download the PDF and use Adobe Reader or Acrobat to fill out the PDF.  It sounds like you are likely doing what you can - directing users as to what to do, you can see if you can get a good recommendation from the Acrobat forums on this topic (it is a general PDF issue and not specific to FormsCentral): http://forums.adobe.com/community/acrobat
    You also might want to do some google searching, this Stack Overflow discussion might be helpful: http://stackoverflow.com/questions/6794255/html-download-a-pdf-file-instead-of-opening-the m-in-browser-when-clicked
    Thanks,
    Josh
    FAQ on "PDF in web browser: http://forums.adobe.com/docs/DOC-4142

  • Why am I getting "importing" every time I open a quicktime/flip4mac file?

    ever since the last update to flip4mac all my quicktime files that I open, I am now getting a flip4mac window pane saying importing, then the file opens up. I don't understand why this is? all other versions of flip4mac worked fine.
    thank you in advance.

    Did you ever get this settled?  I just found 3 charges on my bank statement from the last 3 days and I haven't purchased anything in over a month.  Even the ITunes store shows my last purchase as being back in early May.  But yet there are 3 separate charges on my statement dated June.  I changed my password and deleted my card but I still wnt to know how I can get my money back and how this happened.

  • How do I get Javascript or HTML to open a QuickTime movie as a slideshow?

    I have turned a 320x240 pixel photo sequence into a QuickTime movie using the "File > Open Image Sequence ..." option. However, that required I specify an equal amount of time to display each photo.
    Using the following JavaScript, I can, from within a webpage, play that QuickTime movie as a movie in another window by simply clicking on the link to it in the webpage:
    <SCRIPT LANGUAGE="JavaScript">
    <!-- hide this script from old browsers
    // This script opens a new browser window and writes
    // HTML to play an video with a title and caption
    function show_movie( pFileName, pTitle, pCaption, pEnd) {
    // specify window parameters
    movieWin = window.open( "", "", "width=370,height=400,status,scrollbars,resizable");
    // wrote content to window
    movieWin.document.write('<html><head><title>' + pTitle + '</title></head>');
    movieWin.document.write('<BODY BGCOLOR=#000000 TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666>');
    movieWin.document.write('<center>');
    movieWin.document.write('<font size="+1" face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
    movieWin.document.write('<object width="320" height="256">');
    movieWin.document.write('<embed src="' + pFileName + '" width="320" height="256" autostart="true" pluginspage="http://www.apple.com/quicktime/download/"></embed></object><p>');
    movieWin.document.write('<font face="arial,helvetica">');
    movieWin.document.write('' + pEnd + '<br>');
    movieWin.document.write('<p></font></body></html>');
    movieWin.document.write('<form>');
    movieWin.document.write('<input type=button value="Close Window" onClick="javascript:window.close();" name="button">');
    movieWin.document.write('</form>');
    movieWin.document.close();
    // If we are on NetScape, we can bring the window to the front
    if (navigator.appName.substring(0,8) == "Netscape") movieWin.focus();
    // done hiding from old browsers -->
    </SCRIPT>
    But some photos need to be displayed for a longer time than others.
    QuickTime 7.1.2 "View > Present Movie > Slideshow > Play" will play the movie as a slideshow -- the person looking at it has full control over how much time a photo is displayed before going to the next one.
    My JavaScript allows the user to pause the movie and continue it at will, but if I can modify it to play the movie directly as a slideshow like QuickTime 7.1.2, please let me know how.
    Thank you.
    Dual 2GHz PowerPC G5   Mac OS X (10.3.9)   Airport Express wireless network

    The free MPEG Streamclip and the free component from http://perian.org can convert your AVI to a format understood by iMovie.

  • How do I get my camera downloads to open in Lightroom, not iPhoto?

    I have installed Lightroom 2.7. How do I set the Mac so that Lightroom opens when I download photos, instead of iPhoto?

    In the iPhoto preferences set the action when camera is connected to launch Lightroom if it is available - to do nothing and manually launch Lightroom - I have no idea how Lightroon works but that is whey you turn off launching iPhoto and set other available actions
    LN

  • Web preview opens up wordpad, not browser...

    I get code numbers in wordpad, not images in browser, when I try "preview in browser button"

    Have you been using wordpad to edit html files by hand?
    You have to set PC to see the generated files as browser files instead.
    Someone else had a similar problem and fixed it this way. Don't know the specifics because I don't speak fluant PC.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • QuickTime Streaming Server

    I've been looking to stream my webcam online and I understand how to do so.. The only thing that is puzzling me is that I can't find the QuickTime Streaming Server program or what not. All I need to do is set up my server and I'll understand the rest.. How do I get to the server setup?

    Well I'm planning on putting the webcam on my webpage.. It's just that I'm using www.freewebs.com which is a free webspace and doesn't provide me w/ a server. I was planning on using QuickTime Broadcaster but it seems to require that I have a server enitialised.

  • Hi when i open Photoshop i get this message in a little box  (could not complete the command because Photoshop was unable to find the JavaScript  plug-in.)  Im using the trial version of Photoshop

    im wondering if anyone can help with this
    I get this message when i open PhotoShop
    (could not complete the command because Photoshop was unable to find the JavaScript)

    Photoshop installer should have installed a ScriptingSupport Plugin in each version of Photoshop you installed. Scan your system for ScriptingSupport I found six on my windows system. Here where I found them:

  • How to get only expanded node after open & close in CL_GUI_ALV_TREE?

    Hi,
    I have a tree structure using CL_GUI_ALV_TREE.
    I would like to capture only the expanded nodes AFTER open and close operation.
    If the user opens all the nodes and then closes them, I get all the nodes when using GET_EXPANDED_NODES.
    I want to get only the expanded nodes that the user currently sees on the screen (so in open and close you will not get it as open).
    whatever I tried doesn't work.
    Do you have any idea how to do it?
    Thanks,
    Itay

    this methods calls method of attribute MR_COLUMN_TREE without setting the parameter NO_HIDDEN_NODES to 'X'
    that's why you get every node that is "open" even if not "visible"
    as this attribute MR_COLUMN_TREE is protected, you cannot access it...
    you should consider using an object of class CL_GUI_COLUMN_TREE directly in place of CL_GUI_ALV_TREE so that you can call the method with this parameter set...
    you will have far more to do by hand but you will get more flexibility...

  • When I'm streaming photos to ipad from my PC, those will be in a streamed area. They do not show up in "pictures", and I'm not able to put them into an album. I'm using icloud. Are there any solutions of my problem?

    I would like to make an album at my Ipad. The first pictures I transfered, did get into "pictures", and I could make a photo album. Later I did get them into streamed areas, but they did not get any ways to make an album. They did not apply to "pictures", and when I make an album and tries to import the pictures, the streamed pictures do not show up. What can be done?

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • Open order value not cleared Message: ORB 015

    Hi All,
    I have checked and searched for solution before poting this discussion, but not found anything relelvant to my problem.
    While closing Project in CJ20N, I am getting an error message as -
    Open order value not cleared
    Message: ORB 015
    It seems issue with incoming orders (sales orders), so I have run CJA1, and in output it is showing Processed object count as 1 but no detail log available for this.
    Also in Settlement nothing is appearing to settle.
    One thing I observed that one of the sales order linked with Project is rejected.
    Can somebody assist me in resolving this issue?
    Thank You,
    Swapnil Kharul

    Hi Swapnil,
    There are 2 things you can check here..
    1) Is this the first time you are trying to settle incoming orders for the said Project/WBS? I mean did you ever run CJA1/CJA2 and CJ88 post that for this project? You can check this in KE24 report. Check if you find any entries for record type I. If there are any it means settlement of incoming orders is being done.
    2) For the said WBS hit Ctrl+F3 and check if there is a settlement rule maintained for Incoming Orders. On the settlement rule screen you will see a button "Incoming Orders". Click on that see if a rule is maintained.
    Regards,
    Gokul

  • E5 - unable to open. object type not supported

    hi. 
    2 Month back i brought Nokia E-5 Mobile and after few weeks i upgraded the Memory from 2Gb to 8GB. After copying all files from 2gb to 8gb am not able to open or install any existing programs and files. Even maps are not working. When trying to open or install the files am getting this erro " unable to open object type not supported " . Kindly help on this error.
    Thanks
    Velavan

    I have never attempted what you did, so can't say for certain, but I don't think memory card data is meant to be copied from one card to another (unless we're talking about data files like pictures or mp3's).  I don't understand what you mean by being unable to install files.  Are you trying to reinstall the programs that aren't working?  If your 2GB card still works normally, I suggest you format the 8 GB card, reinstall the programs to the empty card, and re-download the maps data.  If the programs still give you trouble, you may need to uninstall them from the 2 GB card first, but I don't think that should be necessary.  I hope that helps.

  • Error message when opening itunes, quicktime streaming failed to load...

    I downloaded itunes, installed it, and when I try to open I get the message "quicktime streaming failed to load because it was already loaded" Then it closes. Anyone know what's going on?
      Windows XP  

    okay ... let's try a careful standalone QT 7.1 reinstall.
    download and save a copy of the QT 7.1 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1 Standalone Installer
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)
    love, b

  • I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    Let's see if a more rigorous uninstall/reinstall procedure gets us past that, nancy. See the following troubleshooting document:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

Maybe you are looking for

  • How to output from InDesign for best photocopy results?

    Hi, I need to output a color newsletter created in InDesign to be printed in grayscale for b&w photocopying. Because the newsletter has a few photos and other grayscale images, the InDesign file needs to be printed to my printer at a lower lpi for th

  • Container to Container binding in Workflow binding editor

    Hi all, I have an issue using Container --> Container binding in the Workflow binding editor (transaction SWF_BAM). What I want to do is to be able to extend the data provided by the event (i.e call a BAPI using values supplied) before assigning it t

  • HT4623 i cant find the software update option in between about and usage?

    Hello am useing a Apple i phone 3GS , i want to upgrade the option from 4.2 to any new versions? plz support me to get it

  • VIDEO STORAGE AND PLAYER ????

    I have a question for you Video Gurus out there. I am collecting a lot of old TV Shows from the internet and storing them on my Mac, and I want a storage device that I can store and play them on when connected to my TV. I can put episodes on a thumb

  • Manage AEBS From Wired Computers

    I have a LAN with 7 or 8 computers connected. All but 2 connect wirelessly. I have yet to assign static IP addresses and intend to shortly. Part of the reason for static IPs is that one of the wired computer's IP changes from time to time and then I