QuickTime Movie Controls,

Is there a way to save a movie without the big ugly play buttons and have only the small volume button and the small Play and Pause buttons to the left of the play bar. I've seen other people do this. Is it possible?

Are you talking about the Quicktime player? Or are you talking about Quicktime in a web page?
For the most part you would have to build what is called a skin for the player.
Here is a simple tutorial:
http://www.apple.com/quicktime/tutorials/mediaskins.html
LiveStage is one program for making Qt skins.
http://www.totallyhip.com/livestage.html
If the video is for the web you can use javascript to control a video.
http://developer.apple.com/documentation/QuickTime/Conceptual/QTScriptingJavaScript/bQTScripting_JavaScri_Document/chapter_1000_section_5.html#//apple_re f/doc/uid/TP40001526-CH001-DontLinkElementID7

Similar Messages

  • In QuickTime 10 is there a way to hide the movie controls when paused?

    Is there anyway to hide the movie controls in quicktime when pausing movies? It's quite irritating when trying to analyse video, especially when resolution is low, and can't move the controls out of the video window to see whole picture. There should be a way to move them outside the movie window?

    Click the mouse while it is over the player window. The onscreen controls and title bar will disappear.

  • No Movie Controls on Quicktime Export?

    When I export my presentation into quicktime, there is no control bar at the bottom.
    How do I make that show up?
    Thanks!

    I'm a novice with QT Pro also, but I believe this is how to do it. Open the movie file. Go to "window>show movie properties" and then click the "presentation" tab. Towards the bottom, there's a drop-down menu where you can specify the movie controller type. I just chose the generic "movie controller", and it worked fine.
    Then go to "file>export". From there you can choose your export settings. I did "movie to quicktime movie" and then clicked the "options" button, where I enabled "Fast Start", which allows the movie to start playing before it is entirely downloaded from the web.

  • Quicktime Player controls -- able to move outside of window?

    Hi, when playing quicktime movies in the regular sized window in which they pop up (not full screen, etc) is it possible to move the control display (for play, reverse, etc) outside of the window?
    thanks

    You can move it around but can't move it off the window.

  • How to control audio-only QuickTime movies

    I would like to be able to use the QuickTime controller to play an audio only QuickTime movie. I've read in this forum that hovering the mouse over a QuickTime movie is supposed to bring up the controller, but it isn't working for me. I've imported the movies (I have three on one slide) by both Insert > Choose … as well as dragging from the Finder. Afterwards, I get the speaker icon. When I play the show, the speaker icons don't appear.
    Having the ability to be able to repeatedly play a .aif, .wav., mp3 sound would be nice as well, even if it is just start from the beginning and play.
    Additionally, I'd also like to be able to play a movie by clicking on a movie, but I haven't found a way to do that. Perhaps it is not possible.
    Keynote 4.0.2. Latest QuickTime (7.4).
    Bob

    there's no sound that will be played by that code.  and there's no code about a netstream instance.

  • How to export quicktime movie?

    I was wondering how I can export a quicktime movie (camcorder film) to a smaller size but that can also be played on both Mac and PC computers? I tryed to export a couple time using encoding such as MPEG-4 but the movie accually was much smaller to view than the original and the second time I tryed to encode it at a bigger size, the movie played at the same sze as the original but at a lower quality because it was stretched.
    Can anyone help me with this. I just want to export and save a quicktime movie into a playble formate for both mac and windows and also not taking up too much disk space either. Thank you.
    Dorian Oddi

    One could write a book (I did) that explains what all the codecs do and where and when to use them.
    You need only need to know where the file will be viewed and its source format.
    As Rick has pointed out, most new digital cameras capture in DV (Digital Video) and they are nearly instantly ready for software editing (like iMovie). QuickTime Pro can also edit the .dv files.
    Once you determine where the file will be viewed (the Web for example) you'll get an understanding of methods to "compress" the file to fit the planned playback.
    Three major factors that reduce the file size:
    The new dimensions (720X480 DV files) to Web 320X240 (DV uses rectangular pixels).
    Reduce the "frame rate". If the source was 30 frames per second you can usually remove half of them (15fps). Use more fps if the source has lots of motion.
    The codecs used. Compressor-decompressor is handled by the delivery format (.mov or .mp4). Some are more efficient and offer better quality when enlarged during playback. MPEG-4 is the most modern and will soon become the next generation of DVD (currently MPEG-2).
    This is where your question can only be answered by you. The quality can be adjusted (some codecs offer "sliders"; good better best while others allow you to set a data rate) and only you know what is acceptable.
    Rick suggests a "one minute" export and I agree. Use various settings and data rates and use your eyes to decide what is acceptable.
    Don't forget that part of your capture was audio. If your camera captures only mono formats making the export into stereo does nothing but double the size of the audio track. The Advanced Audio Codec (AAC) format found in MPEG-4 exports does a great job of reducing the file size. You can control these settings at export, too.

  • 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.

  • QuickTime movie in Keynote 3 want to export Keynote as QT

    So I have a Keynote presentation. It is mostly images but 3 slides play small Quicktime movies. Interviews I did on DV, converted to 320x240 using Sorenson V3 and IMA 4:1 audio. In Keynote 3.0, they now have controls. They play great.
    But I need to export the presentation so others can use it without keynote.
    The only option seems to be exporting it as as a Quicktime movie.
    Actually, with trial and error, the Quicktimes in the Quicktime play great. BUT are missing controls!
    So anyone viewing the interactive Quicktime from a CD-R has no choice but to watch each clip. Longest is 17 minutes so a pause or stop is an option that is needed.
    Does anyone know how to get those QT controls (or at least stop or pause) into the movie inside the exported interactive Quicktime from Keynote?
    Is there a 3rd party solution? I'm desperate.
    Alternatively, if anyone knows how to do same but as a Flash file, that would be fine too.
    This was problem in Keynote 2.0 as well. My presentation size is big enough.
    Considering the convergence of audio and video all over Apple product line, I just don't get why this was not considered for the 3.0 update. I want to export my lectures for students to self run. I'm probably not the only university professor who shows video and would like Apple to deal with this ASAP.
    G4 duo mirror   Mac OS X (10.3.9)  

    If you have Qt Pro, you can open the file and turn on a controller, then resave the file.

  • Help playing my quicktime movie on keynote

    I have a movie on quicktime. It plays perfectly fine when played through quicktime.
    I am making a presentation using keynote. I want to make one of my slides that movie. So I do exactly as I have been reading. Ok, so the movie is now on the slide, but all I see are the little white squares around it, no actual movie. Those same white squares that you get when your trying to move or select an item for edit. Anyways, I say well maybe it will play when I play my slide show. Still no movie. Sometimes I get a blank page when I get to the slide with the movie. Other times I get the actual control panal to play the movie, but yet not movie is playing regardless of how many times I rewind, and play etc.
    Can keynote play quicktime movies? If so what is the format they have to be in. The format of the movie in quick time is
    Apple Animation, 983 x 552, Millions+
    Please help, I really need this movie for my presentation.

    In the Inspector section find the Transitions controls. For that slide, select the delay time for the same length of time of the clip.
    Not sure if that will solve it but it's worth a try. That's how I got my QT clip to play.
    Good luck.

  • Putting a quicktime movie into keynote?

    When I put a quicktime movie in to keynote it shows video controls in the raw set but when I export it to an interactive quicktime movie it does not show the video controls is there any way to show the videos controls?
    G5   Mac OS X (10.4.2)  

    EDIT: The below answer is wrong. I just read again, No, you can't do this in Keynote. Sorry!
    Ohh, I think I get it. When you export as a normal movie, the controller is turned on by default. When you export an interactive movie, the standard controller is turned off. To turn this on for interactive movies, you'd have to have QuickTime Pro, open the movie, do a command-J to open the properties, go into the Presentation tab and change "Movie Controller Type" from "None Movie Controller" to "Movie Controller".

  • Interactive quicktime movie from keynote doesn't stream correctly on web

    hello,
    Any help with this would be extremely appreciated as I've been trying to solve the problem for 3 days straight. I've created an interactive slide show in keynote and now want to stream it on my website. The problem is that the finished product, a QuickTime movie keeps re-starting when it reaches the first interactive link until the movie is completely loaded. At that point it then correctly stops at the first link but by this time it has looped the beginning of my movie three times. I've tried figuring out a way to partially load the movie before it starts playing through JavaScript to no avail. I'd like to avoid loading the whole movie before starting it due to its length. If I have to pre-load the entire movie, I'd like a status bar for loading but controls hidden while it plays.
    Help please!

    Welcome to the discussions, Christopher.
    Over in the Keynote discussions we've been going over this for quite awhile. Unfortunately, there's no easy solution to your problem. I've even gone as far as attempting to preload the chapter track thinking that might solve the problem, but it doesn't work.
    One thing I don't think I've tried is setting up the first slide to advance "on-click" so that there's no animation before the first transition. The problem, of course, is that there's no "loading" animation to let it know when it's ready to go.
    Another thing I haven't tried but that might work is to create the movie so that it doesn't autoplay, and then, using the embed commands, set autoplay to be the full length of the movie (so that it will automatically play, but only after it's completely downloaded). Look here for the autoplay embed commands.
    http://developer.apple.com/documentation/QuickTime/Conceptual/QTScriptingHTML/QTScripting_HTML_Document/chapter_1000_section3.html

  • How do I open a QuickTime movie in the Player

    How do I create a link in Dreamweaver8 which will open a QuickTime movie in the QuickTime Player and not in another browser window of Safari?

    Looking at the source of this page, the markup you posted was:
    <pre><a href="Excerpts-The Cult.mov" target="QUICKTIMEPLAYER">Video<br></pre>
    1. An HREF tag needs to be closed with an </a> immediately after the word you're hyperlinking (in this case, "Video").
    2. Many web servers are cAsE sEnSiTiVe. Best to use all lower case chars in your filename, and avoid space chars altogether (spaces are interpreted as a '%20' character code, that can muck things up).
    3. Instead of an HREF tag, you need to use an EMBED tag to invoke the QT Plugin, as demonstrated on the page I linked to above. The HREF tag doesn't understand TARGET="QUICKTIMEPLAYER", only the QT Plugin understands that attribute.
    4. For cross-platform compatibility (specifically with Internet Explorer Win 5.5SP2 & above), you also need to use an OBJECT tag to embed your mov. That will be ignored by browsers that use Netscape-style plugins (they use EMBED), but still read by browsers that use ActiveX controls (i.e: Internet Explorer Win).
    You might find it useful to work through the basic embedding QT tutorial, also the ADC HTML Scripting Guide for QT.
    If all that makes your head spin, grab a copy of PAGEot and get it to generate the QT markup for you.
    (9043)

  • QuickTime movies in IE7

    I am working on embedding QuickTime movies on a web page (with just the object element). I have them set to autoplay. They work just fine on most browser for both Mac and Window.
    Except IE7. In IE7, the QuickTime video loads and you can hear the audio, but you have to manually click the video to see the images moving.
    I've investigated the new thing about activating ActiveX controls manually and Apple's suggestion about using JavaScript (http://developer.apple.com/internet/ieembedprep.html).
    This article on Microsoft's developer site implies that the changes affect all ActiveX controls, not just non-Microsoft ones.
    http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overvie w/activating_activex.asp?frame=true&hidetoc=true
    This independent article also implies that the change is for all ActiveX controls:
    http://www.digitalmediadesigner.com/articles/viewarticle.jsp?id=38506
    But two things. One, I don't want to use Javascript, and two, when I embed a movie to play with Windows Media Player, it plays just fine. Yes, you have to click to interact with Windows Media Player, but meanwhile, the movie is loading and playing without trouble.
    Is IE7 playing favorites with Windows Media Player? Does it like AVI files better?
    In short, why is it that it can play Windows Media Player files in the background without any user interaction, but not QuickTime files in the background without any interaction?
    I'd appreciate any insights you can offer.
    thanks,
    Liz

    Had the exact same problem after the Quicktime 7.1.6 upgrade. I had a driver conflict. I had to use an older driver for my Nvidia graphics board the latest was not compatible.

  • How to make a Quicktime movie start when I want, not automatically?

    Is there any way to control when a Quicktime movie starts playing? I can pause and resume it pressing the K key, but I would like the ability to start a movie inside a slide clicking a key or the mouse.
    Any ideas?

    Hugo, in Keynote movies automatically start whenever they appear on a slide, either because they have "built in" on a slide, or because the slide they are on has transitioned in (and the movie has no build itself).
    Given this, there are two ways to control the start of a movie. One is to put the movie on a separate slide, and advance to that slide when you want the movie to start. If you like, you can do a screenshot of the first frame of the movie and put that on the prior slide, so that it looks like the movie is paused on the first frame, and when you click, it runs. If there is no transition effect used on the second slide, the audience won't be aware that you have used two slides to achieve this effect.
    The other way to control the start is to assign a build to the movie, so that it builds in on a click. Again, you can have the first still from the movie already on the slide, and then, when you want to play the movie, have it build in directly on top of the still -- this will again give the appearance of a stopped movie suddenly starting up.
    PowerMac G5   Mac OS X (10.4.4)  

  • QuickTime movies cannot display properly, refresh doesn't work propely for html files on hard disk, opening a new tab doesn't work

    Hi!
    I have tried Firefox V4 (but have since reused V3.6.16). The following problems were found:
    a. Cannot display the controls used for QuickTime movies.
    b. The refresh button doesn't function at all if the html files reside on the hard disk. I do this because I need to test the appearance of the web page before uploading to the server.
    This problem also exists for v3.6.14 to v3.6.16
    c. When opening a new tab, it doesn't work. Instead, it will open another instance of the browser. By right, it has to open the web page on the same instance of the browser.
    This is my feedback.
    Thanks!!!!! :)

    I had some advice to try recording QT audio and adding to the slide.  Now, when recording to Quicktime, it does embed it, but in recording the presentation, it either doubles up the audio giving a strange echo or does the same thing if you ever edit the presentation.
    The problem Keynote has is that the sound and image content are not locked together which causes out of sync errors. This is why many users choose video editing applications when using sound in the presentations, as they have both image and audio tracks to sync sound properly together.
    Start a new presentation to remove the previous sound recording, Keynote is holding onto the other sound files.
    Add the graphic items to each slide and one sound file to each slide for the voice over
    1 - In Inspector > Transitions;  use start transitions automatically and set each transitions delay to the duration of the individual sound file.
    2 - In QT export, set Fixed Timing and delete the value in the duration box, QT will then use the custom timings for each individual slide.
    This procedure does work exactly as needed, Iv used this for nearly 6 years using 4 different versions of Keynote.

Maybe you are looking for

  • Help - iPod not playing purchased songs.

    For some reason, my iPod is no longer playing songs that I have purchased through iTunes. I can get music from CDs to play fine, but when I put a purchased tune on there, it simply displays the song, then skips it. If I put all purchased songs in one

  • Attachment Handling

    Hi, While displaying attachment from Monitor Shopping cart, an empty page "ABOUT BLANK" opens. I have seen that the docserver is activated in transaction SICF. Just another, If I execute the report RSBBPKWCC I an able to view thw attached documents t

  • TS1702 I just upgraded to iPhone5 (app download issues)

    I just upgraded to iPhone 5 and I have everything set-up, however I am unable to download any apps. I tried to activate the auto downloads for apps. I enter in my password and....nothing.   I am however able to sync it to my iMac and download said ap

  • "Open with..." shows apps listed twice

    My "Open with..." menu is showing two entries for most apps. I have tried the recommended way to reset the LaunchServices database by: deleting the files Macintosh HD > Library > Caches "com.apple.LaunchServices-0140.csstore" and "com.apple.LaunchSer

  • Access Connections and 2 users

    I run Access Connections 4.42 as default for configuring network access on a T61with XP SP2. When two users are logged in Access Connections fails with: Access Connections is being used by another user... If I click ok,then I'm unable to set any netw