Inserting Two Quicktime files on a page?

I try on this page:
http://www.makingfilmhistory.com/Muybridge.html
to insert 2 Quicktime files, each set to "autostart = false". Both appear with autostart disabled, but one or the other fails to display the first frame of its movie, creating what appears to be a black space above the progress bar until one clicks in that area.
How do I fix this so that each picture track appears when the page loads?
Thanks for your help.
Professor Bob

You can define a poster frame in QT itself (QT Pro required) and it should be displayed. It's still no guarantee and may work differently on other systems depending on performance and how the required routines are initialized. I for instance can see both clips without problems. Therefore your best bet is to embed the QTs with a JavaScript and use a placeholder JPG while it's loading. Similarly, using Flash Video instead of QT may avoid the problems or would allow you to use stills as placeholders...
Mylenium

Similar Messages

  • Embedding a quicktime file into a page

    hey guys. Im trying to embedd a quicktime file into a page
    ive made. I found this tutorial online.
    http://www.csupomona.edu/~llsoe/42101/premiere/playmov.htm
    I embedded the file but when i try to play it its telling me
    "Unable to find the plug-in that handles this media type. " When I
    play the movie in quicktime its fine, buyt I cant get it to play on
    the page? Has anyone ran into this before? Thanks

    There is a great extension that will do it all for you and
    it's free...it's here:
    http://www.adobe.com/cfusion/exchange/index.cfm#view=sn106&viewName=Exchange%20Search%20De tails&loc=en_us&authorid=32895559&page=0&scrollPos=0&subcatid=0&snid=sn106&itemnumber=0&ex tid=1007547&catid=0

  • I want to insert two text files in to oracle.

    Ex :
    text1.txt contains data as
    1 a
    2 b
    3 c
    text2.txt contains data as
    4 d
    5 e
    6 f
    I want to load both text file into oracle as
    1 a 4 d
    2 b 5 e
    3 c 6 f
    for these how to create *.ctl file*

    I wouldn't use SQL*Loader for this.
    Here's an example based on your simplified example, but it should get you going.
    I used an external table, so you can load both files at the same time, by adding the filenames to the location.
    By using the PIVOT technique, you can insert the data in the destination table as desired:
    By the way: I needed some help for that last query:http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:4937250900346222596 ;)
    SQL> drop table destination purge;
    Table dropped.
    SQL> drop table test purge;
    Table dropped.
    -- Create our desination table:
    SQL> create table destination
      2  ( col1 varchar2(1)
      3  , col2 varchar2(1)
      4  , col3 varchar2(1)
      5  , col4 varchar2(1)
      6  );
    Table created.
    -- Instead of using SQL*Loader, we use an external table to query text1.txt and text2.txt at the same time:
    SQL> create table test
      2  ( col1 varchar2(1)
      3  , col2 varchar2(1)
      4  )
      5  organization external
      6  ( type oracle_loader
      7    default directory DATA_PUMP_DIR
      8    access parameters ( records delimited by newline
      9                        fields terminated by ' '
    10                        lrtrim
    11                        missing field values are null
    12                        ( col1 char(1)
    13                        , col2 char(1)
    14                        )
    15                      )
    16      location ('text1.txt'
    17               ,'text2.txt'
    18               )
    19  );
    Table created.
    -- The data belonging to both files:
    SQL> select * from test;
    C C
    1 a
    2 b
    3 c
    4 d
    5 e
    6 f
    6 rows selected.
    -- Now just pivot as desired and insert with a single SQL statement:
    SQL> insert into destination(col1, col2, col3, col4)
      2  select max(c1_1)
      3  ,      max(c2_1)
      4  ,      max(c1_2)
      5  ,      max(c2_2)
      6  from ( select decode( nt, 1, col1 ) c1_1
      7         ,      decode( nt, 1, col2 ) c2_1
      8         ,      decode( nt, 2, col1 ) c1_2
      9         ,      decode( nt, 2, col2 ) c2_2
    10         ,      row_number() over (partition by nt order by col1) rn
    11         from ( select col1
    12                ,      col2
    13                ,      ntile(2) over (order by col1) nt
    14                from t
    15              )
    16       )
    17  group by rn
    18  order by rn;
    3 rows created.
    -- Look ma, we're already done!
    SQL> select * from destination;
    C C C C
    1 a 4 d
    2 b 5 e
    3 c 6 f

  • Social Widgets Insert two youtube videos on same page

    and muse dies 4evah.
    Not incredibly familar with what to do about removing a page when merely having muse generate a thumbnail for it causes the designer to die a quick death.  Or even how to ask about it.  Would strongly prefer not to retreat to a back up copy if at all possible.

    Well, I did see the other people who are having this same issue.
    In case it is at all helpful to someone else...  If you're better off with the file you have instead of a prior version,
    this is what I did in windows.
    Restart
    Bring up muse and let it explode.
    Bring it up again and it will ask you if you want to recover your file
    Say no.
    It will be your file without all of the changes made since the last save.  In my case, that was lots better than retreating to a backup copy.

  • Can't insert a music file onto web page

    When I try to use the media window to drop a song into my web page, I get the following:
    The image file 01xxxx.m4a cant be used because you dont have access privileges or because it has no content or is corrupted.
    Wrong on all counts. The song plays just fine in iTunes and I've burned it to CD's. Its ripped in Apple lossless and isn't downloaded from iTunes so there is no DRM issue. What gives? I should be able to put it on my web page.

    I have no option to download the document until I open it.  I am having this problem with any webpage, not just this one bank's webpage.
    Any other suggestions?

  • Script to merge 2 Indesign files on alternating pages

    Hello
    I have created a data merge document for a book I am writing (Luckily I already had everything in Excel) . I created a template with the style headings and graphics frames positioned and sized exactly where I wanted them.My master page had repeating elements etc.
    Loved the process and it worked beautifully. It literally saved me a weeks worth of formatting and inserting graphics work. However the file basically created the Left hand page ONLY of a 2 page spread.
    My understanding from studying tutorials on data merge is that they can only create ONE page output altho I know you can change it to 2 page spreads afterward.
    The second data merge created a file what would ideally be the right hand page of every spread.
    This is a reference/encyclopedia type book with each 2 page spread a distinct entity devoted to a subject
    I need to join the 2 files together.
    The first file would be the left hand or EVEN page
    The second file would be the right hand or ODD page.
    The document is 350 pages.Each page is the same size,margins and subject matter but with different headings and graphics
    (Dragging pages would be too tedious and I have had problems with ID crashing. Don't want to go there again)
    I did read an answer by Dave Saunders (  9. Nov 1, 2008 5:03 PM (in response to Al Ferrari) Re: Script to interleave two InDesign files of equal page counts )
    Would that work do you think?
    I have ID CS4 6.0 running on windows vista.
    I have ZERO scripting experience but I can follow directions.
    Is there any way, scripting wise, I could (or should) accomplish this?
    Thank You in Advance for any help
    Lauren

    My understanding from studying tutorials on data merge is that they can only create ONE page output altho I know you can change it to 2 page spreads afterward.
    That isn't true. Data merge can be done with many pages. See my response to this post:
    http://forums.adobe.com/message/3909894#3909894
    In response to the OP's script request, i can't be of any help.
    What i'm hoping is that after reading how to make a data merge with both left and right hand pages from the post i've linked, that the data could be merged again... assuming there was little (or no) post-processing of the file after the merge was performed.

  • Quicktime File Crashing Both Quicktime App and Finder in Mac, but Not Windows

    Hi,
         I have a drive full of Apple ProRes Quicktime files.  Almost all of them play perfectly, except 2.  Those 2 files have played in the past, but I've had problems with them.  They've come back to functionality in the past, but now they are not working again and I don't understand why.
         Whenever I go to open the files with Quicktime Pro 7, Quicktime X, FCP 7, Adobe Premiere or Adobe Media Encoder, I get the spinning beach ball and not only does Quicktime crash, but the finder crashes as well.  If I go to restart the finder, it never comes back online and I have to restart my late 2011 macbook Pro.
         I've tried repairing permissions and on the Macbook Hardrive and have used Disk Utility and Disk warrior on the hardrive containing the 2 quicktime files. Nothing has solved the problem.
         At first, I thought the Quicktime files might have become corrupted, but I installed Windows 7, using bootcamp, on the same macbook, hooked up the external hardrive and was able to play the quicktimes perfectly in Windows with quicktime 7 (not pro, because I don't want to buy it just for windows).  So, there is some sort of incompatability between these two quicktime files and my Macboook.
         Does anyone have any ideas as to what could be going on?
    -Scott

    If you are on Windows Vista and trying to write something to
    "Program Files" or its sub folders, write will not end up in the
    right place as "Program Files" is protected. What ever you write
    might go to a virtual store location. If that's the case try
    writing to app storage folder.
    Please see the below post for more info on this:
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1640353&SiteID=1

  • IPhoto - mismatch in pictures when trying to insert two-page panoramas.

    Hey all,
    I am trying to give iPhoto a try by making my photobook from my vacation to the USA in iPhoto. Since I like full control over the page lay-outs I am designing all pages in Photoshop (CS3), en then insert them in iPhoto. All pages for my iPhoto book are therefore set as the full frame 1 photo lay-out, in which I copy my photoshop pages.
    I looked up the recommended resolution, and it told me to use files of 3338x2587px, with 300 DPI. I made a photoshop document of 6676x2587px so I could design two pages as one, which would give me the option to insert a photo that is spread over both pages. However, when I insert the file into iPhoto, it does not match exactly. When I resize the resolution to 6636x2587, it does.
    Question:
    Do you recommend using the first resolution, which is ok in theory but does not show up right in iPhoto's preview, or
    Do you recommend using the second option, which shows up perfectly aligned within iPhoto?
    Second question, related to color profiles;
    Should I embed the sRGB IEC61966-2.1 color profile in my photoshop exports to make sure the colors in the final printed book are the same?

    Quelake
    Welcome to the Apple user to user assistance forums
    I recommend using the one that look the way you want it -- when I do this I pay no attention to the photos size and just place it twice - one on each side of the book and adjust to look like I want - the results have been fine for me.
    To some degree over thinking things actually causes issues - iPhoto is designed as a consumer product and works best when used that way - Most people doing that love the results - some people who over adjust and over edit photos are disappointed - not sure if it is because of the over editing or just that they have much higher expectations - but in any case that is what I've observed here - and the books are great
    And yes - iPhoto works best with photos using sRGB - you may find some helpful hints here - http://www.apple.com/support/photoservices/preparation_tips/
    Prior to purchasing preview using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF for reference
    LN
    Message was edited by: LarryHN

  • How can I split a QuickTime file in two?

    8/21/2006. How can I split a QuickTime file in two? I saved a two hour videotape converted by PYRO A/V LINK to iBook G4 combo into a file of 24.5 Gb, and I saved to QuickTime into 536 mgs. Of course, it took half a day. When I went to copy it as video (536 mgs) onto a CD of 700 mg capacity, Toast 7 said it required 1100 mgs and couldn't do it. I have QuickTime Pro, got just recently. I would be very happy to learn how to split it, so to copy each of the split pieces onto 2 CD's, for my own purposes. Many, many thanks. Chuck Yopst. [email protected] 847-394-5621 Moutn Prospect, IL (nw Chicago suburb)

    Wednesday, 10:35 am CDT, 30 August 2006
    Kirk, Thanks for your post Monday 8/21. Interesting how things worked out. I split the OuickTime file--of my retired uncle Church of the Brethren pastor's 50th wedding anniversary, and came up with two folders. Each contained four more folders, and inside folder Mvseg was file Avseq.dat which contained the video material and, when double clicked, started playing that half of the story on Windows 98SE. It just so happens that my uncle's PC operating system is a Windows 98SE. All this from QuickTime 7.0 which Windows 98SE would play the audio but not the video. Then a week later, yesterday in fact, in looking through iDVD help I found your solution, which heretofore I had no idea of. I had to go into System Preferences--Hardware--CDs & DVDs, and set these for "Open with 'Ask what you want to do'." The factory settings were to "open these when inserted" without that "Ask"ing. So then I was able and did follow your solution and it worked, but as a single QuickTime file, playable on Windows XP and Windows 2000 and Macintosh but not Windows 98SE. So everything worked out well. And thank you again. Chuck Y

  • Media file (quicktime) not playing when Pages document is saved as a pdf

    I added a quicktime file (a movie trailer) to my presentation and it plays when in Pages - but when I export it to a pdf it is just a black space. 1. are these links/media files are supposed to be active when in a pdf format 2. how can I get the media file to play when it is saved as a pdf? 3. Will those who I email it to be able to play the media file when they open it up on their computer?
    thanks so much in advance - I am under a tight deadline so any help would be appreciated!

    Multimedia is not embedded in exported .pdf files.
    You will need to relink them again in the .pdf using Adobe Acrobat Pro.
    Peter

  • I am not able to use two backing files in same portal page

    hi to all
    i am using backing files in remote portlet.
    but i have two portlets in my portal page and in both i need to use backing files. i used seperate backing files for both the portlets but only one works at a time.
    please help me out frnds..
    did this happening because of same object MarkupRequestState.KEY..... following is code that i am using. similar code used for another portlet, just a change of state varible and parameter variable
    am i missing something?
    package backempno;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.bea.netuix.servlets.controls.content.backing.AbstractJspBacking;
    import com.bea.wsrp.ext.holders.MarkupRequestState;
    import com.bea.wsrp.ext.holders.SimpleStateHolder;
    public class sendempno extends AbstractJspBacking
    public boolean preRender(HttpServletRequest request,HttpServletResponse response)
    SimpleStateHolder state2 = new SimpleStateHolder();
    String empno=request.getParameter("empno");
    state2.addParameter("empno",empno);
    request.setAttribute(MarkupRequestState.KEY, state2);
    return true;
    }

    Hi Susan,
    In that case I will recommend that you consult a local technician/IT team and see if there is some network connectivity issue with your machine.
    - Abhishek Maurya

  • I would simply like to insert two half-circles or half-moons in a Pages doc. There are no such graphics in the "shapes" area. So, ideas on how I can get those half-circles in my doc?

    I would simply like to insert two half-circles or half moons in a Pages doc. The current "shapes" does not include half-circles or half-moons. Ideally, I'd like to be able to apply my colour, lines, etc., etc to these half circles and size them. I am not a graphic artist.

    1. Go down to the bottom left corner of the window and increase the zoom to 400%
    2. Toolbar > Shapes > Circle
    3. Menu > Format > Make Editable > click on the bottom red dot > delete
    4. Click on the left side dot, there are two handles which pull out the curves.
    5. Drag down a guide from the ruler to the tip of the top of the handle.
    6. Click on the bottom handle tip and shift drag it up until it is tucked back into the red dot.
    7. Do the same to other corner.
    Now keep a copy of this in a document and copy paste where you need it.
    Peter

  • Can I insert an html file as an image into an HTML page?

    The site I'm working on (www.ngospen.com) has PNGs for background art - 10 - 15 kb per image. As the site is intended for settings with low bandwidth, I'd like these background images to be as small as possible.
    When saving for the web, one of the options is Save As HTML file. When I open the file, the artwork appears the same as the PNG (no lost resolution), but it is a much smaller file size (1 - 2 KB).
    Is it possible to insert these HTML files into my HTML pages?
    Thanks!
    Ken D
    Creative Director
    Grateful Creative

    Are you meaning that you work with fireworks?
    If so the html and the images you export are flattened images (slices), you have to put those images directly into your html page.
    If you want to save the file (fireworks) as a flattened image you could also goto save as -> flattened png.
    If you save your image from fireworks just as png it contains the layer information etc. etc. from fireworks, that's why you should save them as flattened png, or just export the slices.
    http://www.dreamweaverfan.nl

  • Link to Two js files same page

    I need to link to two js files on the same page.
    How do I get them to both work? one is for a togler.js and
    the othe for a
    menu .js
    <script src="../js/togler.js"
    type="text/javascript"></script>
    <script type="text/javascript"
    src="../js/p7exp.js"></script>
    First time I tried this.
    Thanks
    Dave
    Look Dave, I can see you're really upset about this. I
    honestly think you
    ought to sit down calmly, take a stress pill, and think
    things over
    I took my pill first.:-)

    Sorted
    <body onLoad="P7_ExpMenu();toggler()">
    I took my pill first.:-)
    The pill must have worked

  • I dw file.dwt files may insert server side code supposed all pages depended are in the same code eg

    I dw file.dwt (exact like this ext) files may insert server side code supposed all pages depended are in the same code eg cfml?

    I'm sorry, but your English is pretty difficult for me to figure.  I'm assuming your asking how to have a Dreameraver template support ColdFusion. It hat is what you are asking, the template file extension should be:  YourTemplateName.dwt.cfm  - this tells Dreamweaver is a ColdFusion template.
    I hope I understood you and that this helps.
    Lawrence Cramer - *Adobe Community Professional*
    http://www.Cartweaver.com
    Shopping Cart for Adobe Dreamweaver
    available in PHP, ColdFusion, and ASP
    Stay updated - http://blog.cartweaver.com

Maybe you are looking for

  • How do I move an app (like tasks) from the app list to my today screen?

    I have an 8330 Curve and I love the way the active theme works for me me. I can see my msgs and calendar at a glance. Also on this screen are call log and applications. I would like to replace applications with tasks. Is this possible and how do I do

  • Error while adding portlets

    Error: Internal error (WWC-00006) An unexpected error has occurred in pages: ORA-06502: PL/SQL: numeric or value error: character to number conversion error (WWC-44847) Couldn't save attribute Content_Owner. (WWV-03005) Couldn't save attribute Conten

  • HTML Email 3

    anbody can tell me how to send an Html email from Dreamweaver to Outlook 2000 ??? i have probleme to insert it , because i don t want it to be an attachment but to appear like a news letter ... Thanks

  • LabVIEW Applicatio​n Builder Download?

    Were can i download the Application Builder? Best regards Torsten Lochner

  • Safari gmail images

    I'm running OS X 10.8.2 and Safari 6.0.1 There appears to be a problem with Safari 6.0.1 displaying inline images. I notice this while using gmail's "canned email" feature where the inline images in the canned email is not displayed properly. Anyone