Embedded videos not behaving the same

Hi:
I just put some video clips on my web site. I have embedded
them. 3 clips are similar in terms of size of file and length of
clip. When I click them from the web site 2 of them immediately
display the QuickTime Player with a download progress bar. The
third one, however, just shows the big blue Q on the page until the
entire video is downloaded then the player appears but it's about a
35 second wait. I'm sure I handled the 3 clips the same why do they
show up differently. I'm afraid a lot of people won't hang around
that long not knowing what's going on.
Any suggestions?

NOTE that you have autoplay set to FALSE:<embed
src="video%20clips/Soul%20Brothers%202.mov" width="185"
height="148"
autoplay="false"></embed> <embed
src="video%20clips/Afrikadey%20med%20large%20copy.mov"
width="249"
height="197" autoplay="false"></embed>You don't have
these coded properly
for the ActiveX fix in Internet Explorer.

Similar Messages

  • IPhoto 08 not behaving the same in G5 and MacIntel

    Hi, I installed iPhoto 08 recently on my G5 1.6 Ghz and a new MacBook (macintel).
    I noticed 2 big differences between the macs regarding how iPhoto behaves:
    - opening (magnification of) pictures is slow and choppy on the G5
    - on the G5 too, the events don't show the small text box "Display pictures" when mouse is over an event. That implies that we can only double click the event, which opens the event the same we'd do for any album. It seems not possible to double-click and open a single picture displayed in an event frame before we open the event itself.
    I don't get where those differences come from. Is that due to the Graphic card, or also something else? Thanks for helping.

    Lukum
    opening (magnification of) pictures is slow and choppy on the G5
    This could well be due to the graphics card or video RAM that's available.
    I'm afraid I don't quite understand your other issue:
    Have you compared the Preference setting between the two machines? For instance, if at iPhoto -> Preferences -> Events, I select 'Double Click Event: Shows Photos' then I don't get the 'Display Pictures Box, but if I select 'Magnifies Photos' I do.
    Regards
    TD

  • A page does not behave the same in every case

    Hi,
    I am using adfbc and jsf/adf pages.
    I have an entity called Parish (CountryId, CityId, AreaId, ParishName), and created a simple validation method (if the parish name is equal to "test" then to show an error by returning false).
    I created a custom validation method in my AppModule that i just simply get the record id, find the entity and set the values with the method parameters
    I then created a view based on the entity and dragged my view object on my jsf page. I created a button and i binded my custom edit method to the command button, setting the appropriate parameters to bindings on the form. I then double clicked by button and created a binding for the method in a bean.
    When i edit a record and change for example the CountryId, CityId, AreaId and set the ParishName to test (so to force my validation method fire), i am shown the error but the data that i last inputed are lost, and the original are show.
    In another case where i am doing the same thing, the data are kept.
    For example, i have a record with CountryId:UK, CityId:London, AreaId:Finchley, ParishName: North Finchley and when i edit the record and define CountryId:USA, CityId:New York, AreaId:Manhattan, ParishName: test, i get the error message but the data are the original (CountryId:UK, CityId:London, AreaId:Finchley, ParishName: North Finchley). I want to keep the last entered data. In some forms this is done automatically, but in this form i didn't do anything, just dragged and defined, and is not working.
    Anyone please help?
    Antonis

    I apologize for insisting on this, but in my humble opinion it's not useful to try and figure out why your hand-written example is not working if already the declarative way is not working as we expect. We need to figure out why the declarative way is not working first.
    One of my primary jobs is helping customers use ADF correctly and understand how it works internally.
    The code in your updateParish() method is redundantly applying updates to entity attributes that ADF will already have applied to the entity for you. To see this for yourself, you can set a breakpoint in one of the setter methods of your entity object and you'll see that your code is applying the updates a second time.
    I see one reason why your error reporting won't be working as expected, which is that you are directly using the entityImpl object to apply the values. The ADF bundled exception mode only works when you use the view object row to apply the updates to the entities indirectly. Howing using the view object row to apply the values is what ADF will have already done automatically for you, so it's not necessary to do that.
    It's also not a best practice to pass a literal integer value for the first argument of setAttribute(). If for any reason the constant values change, then your code will break. You should call setAttribute("TheAttributeName",thevalue) instead for more robust code.
    Finally, your programmatically setting the user principal name and current date time can also be handled for you automatically by ADF by setting those attributes to be of the correct "History Attribute" type. See section "6.6.3.10 History Attributes" in the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html
    Set a breakpoint in your validation method and debug the completely declarative edit form with the simple (Commit) button. We need to understand if the:
    (a) validation is executing, failing, but the validation error is not being reported correctly, or
    (b) validation is never being enaged at all.

  • Program not behaving the same after making it a JAR

    Hello,
    I'm developing a program using Eclipse and wanted to export a JAR file to test out. I was able to successfully make the JAR file and it does run, but not as expected. For example, I have the following code which opens up a JFileChooser and lets the user select multiple files to be stored in a JList (via a list model). When I run this from the IDE during development, it works as it should, allowing me to select multiple files from the JFileChooser and adds all of the files to the JList. However, when I run the JAR, it lets the user select multiple files but only adds ONE file to the list. Not only that, but it doesn't seem to be running my "loadComparePaper()" method after adding the item to the list model.
    JFileChooser fileChooser = new JFileChooser();  // New JFileChooser
    fileChooser.setMultiSelectionEnabled( true );     // Allow multiple files to be selected
    FileFilter docFilter = new ExtensionFileFilter( null, acceptableFiles );  // "acceptableFiles" is an array of allowable extensions (not shown in this snippet)
    fileChooser.addChoosableFileFilter( docFilter );  // Tell the JFileChooser to use my filter
    int returnValue = fileChooser.showOpenDialog( null );  // Open the dialog; store result
    if ( returnValue == JFileChooser.APPROVE_OPTION ) {
        File[] selectedFiles = fileChooser.getSelectedFiles();  // Get selected files; store in array
        for ( int i = 0; i < selectedFiles.length; i++ ) {  // For each selected file..
         compareListModel.addElement( selectedFiles[ i ].getName() );  // Add file name to list -- getting stuck here!
         loadComparePaper( selectedFiles[ i ] );  // Call method to load this file (read it)
    }It seems like it's not running the whole for loop, because only one item is being added to the list and it never reaches "loadComparePaper()". Again, it works during development in the IDE and I've tried exporting the JAR quite a few times to see if that was the problem, but the JAR itself is executing.
    Any ideas? I'm baffled as to why it works while I'm testing it out in the IDE, but after I export the JAR it's not working properly. Do you think this has something to do with Eclipse? Has anyone else experienced a problem like this?
    Thanks

    ThomYork:
    Thank you for the advice. I'm new to using JARs and foolishly forgot or didn't realize that I should run it from the console to check for errors. Well, it seems this is the problem: I'm using Apache's POI package and have it stored in the directory +/my_project/lib/poi/+. Within the +/poi/+ folder are 3 JAR files that my program references. When I run my app from within the IDE, I don't get any errors because I've included them in the build path. However, when I run my JAR, it can't find the classes -- it doesn't seem to be looking in the +/lib/poi/+ folder even though my JAR file is in the same root directory as the main class when I run it within the IDE (i.e., both my_main_class and my_main_jar are in the same level directory, and would need to look in the +/lib/poi/+ folder for the other packages).
    So I guess my problem is... my JAR file doesn't "see" the path of the other packages I'm using. In Eclipse, I've configured my project to include these other packages in the build path (and also the "Order and Export" build path) so I thought it would include them, but that doesn't seem to be working.
    Am I missing something? How do I include JARs in other packages / folders so that they work in my JAR?
    Thanks again
    EDIT: I see some other people on this forum experiencing similar issues and I noticed you've helped them out. I tried creating a manifest file, but that didn't work, either... just to be more specific, this is the error message I'm getting:
    Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/apache/poi/poifs/filesystem/POIFSFileSystem
            at OneToOne.loadSourcePaper(OneToOne.java:907)Edited by: ibanezplayer85 on Aug 14, 2008 10:19 PM

  • Terminal not Behaving the Same with Text Clippings as in 10.5

    I just upgraded to an Intel Mac from a G4 tower (very nice) and I have a lot of text clippings that I drag and drop into Terminal which now have back slashes embedded in them like this:
    while true\
    do\
    ls -ltr dx|grep "`date +%b\ %e`"\
    ls -ltr |grep "`date +%b\ %e`"\
    ping -c 1 dx1|grep "packet loss"\
    ping -c 1 dx2|grep "packet loss"\
    date\
    sleep 45\
    done\
    where do these come from and how do I get rid of them - I had to add them above so I know they aren't in the text clipping. Also I can copy inside Terminal window to window and it doesn't add them.
    Any thoughts? It's fairly annoying.

    I have several scripts that I have sitting on my desktop as text clippings that work fine in 10.5 but now that I have 10.6 (new iMac) I get these back slashes after every line. I could just as well I suppose make these things aliases or just files in Linux that I run but I've been using them as text clippings that I just dump into a terminal window and everything in the text clipping is done - now terminal is misinterpreting something. They are the same text clippings - if I use them in 10.5 that terminal has no problems - no back slashes.

  • Firefox mouse event not behaving the same on PC and Mac computers

    I use the FCKEditor and having a very strange problem. When I click on the FCKEditor's editing area, the keyboard gets disabled untill I click the mouse somewhere outside of the editing window. The problem only happen on Firefox (3.6.10) on Mac computer (Snowleopard 10.6.4). Doing exactly the same steps on PC works without any problem.
    What I want to know:
    - Is it possible that the Firefox on Mac is different than the PC in handling mouse events? Or some other areas?

    Sounds more that Firefox is treating that editor area as read-only.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • TS1702 I downloaded IOS6 to my ipad2..since then the Pentix Free app has not been behaving the same as before the download

    I downloaded IOS6 to my ipad2...since then the Pentix Free app. has not been been behaving the same
    Is this a problem with the upgraded IOS?

    It's more likely that the App make needs to provide and update for iOS6.

  • Embedded video not loading?

    I seem to be having a problem with embedded video not loading.
    For example:  In Youtube if a video is embedded in a larger screen (example: http://www.youtube.com/channel/UCY30JRSgfhYXA6i6xX1erWg) it will not load but if I load the video in its own page (example: http://www.youtube.com/watch?feature=player_profilepage&v=bLT0z60vBl4) it will work perfectly fine.
    The issue comes when there are videos that don't have the option to load in a full screen (example: http://www.cbc.ca/thenational/watch/).
    I have the latest version, have hardware acceleration unchecked, this happens with all browsers (IE, FF, Chrome), have deleted cookies... what else can I do?

    this happens with all browsers (IE, FF, Chrome)
    Then it HAS to be something outside of Flash Player and the browsers, because:
    IE usues a proprietary plug-in - ActiveX, which is ONLY for IE amd functions independently of the others
    Firefox uses the standard plug-in, which neither IE nor Chrome use, unless you specifically disable Chrome's proprietary plug-in
    Chrome uses its own proprietary plug-in called "PepperFlash" which not only functions independently of the other two, it's a different format (PPAPI vs NPAPI)
    The odds that all three different plug-ins (in two different formats, no less) have the exact same problem with one situation (viewing embedded YouTube video in another page)... are astronomical.

  • 2 videos playing in the same page

    Hi All
    I've got a new issue, I have a page with 2 animated graphs (as MP4). It seems that there is a conflict to auto play the both video, because one appear with a skin controler (not asked to) + the video stop before finishing to play.
    I've test by deleting the second video... Then it works....
    How do you manage to have 2 videos in the same page ?? do you have the same problem?
    I want to avoid Jpg Sequences as they are much more heavy

    Apple does not allow playing multiple videos at the same time. they are
    affraid your ipad will crash vecause of it's limited memory
    never tried multiple videos after each other.
    (mobil gesendet)
    Am 27.10.2011 10:23 schrieb "minia92" <[email protected]>:
       Re: 2 videos playing in the same page  created by minia92<http://forums.adobe.com/people/minia92>in
    Digital Publishing Suite - View the full discussion<http://forums.adobe.com/message/3992755#3992755>

  • My left shift key on Macbook Pro Retina (15") is behaving like the F11 key (show/hide open windows).  The key behaves the same for the laptop keyboard and for an external Apple keyboard?  This just started in last week after 6 months of use

    My left shift key on Macbook Pro Retina (15") is behaving like the F11 key (show/hide open windows). 
    The left shift key behaves the same on the laptop keyboard and on an external Apple keyboard. 
    This just started in last week after 6 months of use.  The right shift key and other keys on the keyboard all appear to work correctly.
    Suggestions greatly appreciated.

    I have a solution to this issue now after a discussion with Apple Support.  Some where in the last few weeks, there was a change in the key that would do a Show Desktop under the Mission Control settings in the System Preferences.  Even though the key sequence that was shown for the Show Desktop setting did not include the Left SHift key, by changing this first to having no key sequence and applying that and then changing it back to the F11 key, the Left SHift key issue that I was having has cleared up.
    A second issue that was uncovered was that the SSD had some issues (uncovered when I ran Disk Utility using the Repair Disk key).  I had to restart and use the Disk Utility through the Command R sequence to get to the stand alone Disk Utility.  The SSD appears to be running better as a result as well.
    Hope that this is of use to someone else in the future.

  • How to have projectname_edge.js in a subfolder? (not in the same folder as the project file)

    Hello,
    Is it possible to have the file projectname_edge.js in a subfolder? Not in the same folder with projectname.html.
    It seems that edge.5.0.1.min.js looks for dependencies only in the same place as the main file of the project. Moving projectname_edge.js to other folder (js, script, etc) causes the animation not to run. Can I store it in different folder? I would like to put it into "Content" or "Scripts" folder on the server.
    I am trying to integrate edge animation into ASP.NET MVC application, and I do not have any index.html file. I am inserting the <!--Adobe Edge Runtime--> section into the view  (the .cshtml file stored in subfolder). Having the projectname_edge.js in the main server path require to deal with security settings, so I would like to put it in 'Scripts'.
    I found the video showing the solution for the older API: http://www.edgedocks.com/content/edge-animate-publish-files-and-js-folder but it is no longer valid with Edge 5.0 API
    Any ideas how to achieve this?
    Thank you in advance!
    Eric

    Thank You! This is exactly what I looked for!
    Additionaly having runtime projectname_edge.js in htmlroot in ASP.NET MVC website, is slowing down the animation show up. Now (with subfolder) it working fast and fluid
    Many, many thanks!

  • Play two video files at the same time.

    I am trying to play two video files at the same time. I create two threads, each of which has its own frame, playing button, and builds its own graph to play the file. Now everything seems works except that when the first file is being played and I hit PLAY
    to play the second file, the program plays the second file but the first one is paused; furthermore the control button has no response for the first one. Did I miss anything? Can anyone help me figure out the problem?
    Best,
    Fayin

    You don't need separate threads for 2+ playback pipelines because the filters create worker threads internally and don't block execution on calling thread.
    If you decide to keep separate threads, you will have to follow Michel's advice and have message pumps on those threads.
    You can also have both files in the same graph, in which case you have perfect sync between them (both start playing together in sync), however you cannot pause/stop/run files separately.
    The problem you described is most likely not a DirectShow problem and is rather about generic threading, COM or window messaging.
    http://alax.info/blog/tag/directshow

  • How do I layer 2 video clips in the same time space/ playing side by side at the same time

    I wish to add 2 views of the same subject side by side and playing at the same time. Is this A possible and B if so how do I add the second video clip into the same time space

    aggro
    What version of Premiere Elements are you using and on what computer operating system is it running?
    This sounds like a split screen effect to me.
    If so, one view on Video 1 and the other directly above that is the other view on Video 2.
    Then crop each so that each occupies 1/2 the Edit area monitor screen.
    (generalized since I do not know your program version, see effects Transform/Crop).
    I wrote the following in 2011 for a Premiere Elements 8 user in another forum
    Your basic tools to achieve your goal are Crop Video Effect and Horizontal Flip Video Effect.
    Video ONE on video track 1.
    Video TWO on video track 2, directly above Video ONE.
    Highlight Video ONE on video track 1, Edit Mode/Effects/Video Effects/Transform/Crop, followed by adjusting the crop under Edit Effects (see bottom of Effects Panel) so that Video ONE occupies the left half of the screen.
    Do the same for Video TWO on video track 2, Edit Mode/Effects/Video Effects/Transform/Crop etc. so that Video TWO occupies the right half of the screen. BUT end with Edit Mode/Effects/Video Effects/Transform/Horizontal Flip.
    Highlight the video on either side to make adjusts in the Properties Palette and appropriate Panel (position, cropping, etc). But, remember that if you make changes in the "flipped" right side of the screen, Edit Effects/Crop Panel right option will be for left and left option will be for right.
    You may or may not need the "flip" part of the effect.
    Please review and consider. If I have misinterpreted your question, please let me know with details and I will rethink what you seek.
    Thanks.
    ATR

  • Why are my videos not playing the right way up

    Why are my videos not playing the right way up

    I took four video clips while on a trip this week.  Two are oriented the right way (playing wide on the device and imported correctly).  The other two are Tall and not oriented right.  Orientation is 90 degrees to the right.  I don't know why this is happening on occasions.  Even some pictures I took did the same **** thing.  It's weird.  And I can't figure it out.  The camera is held the way I want the pictures and videos to be recorded and played but something internal is turning these videos and pictures 90 degrees clockwise.

  • Can I save both DVD-R and DVD-Video files onto the same DVD?

    Can I save both DVD-R and DVD-Video files onto the same DVD?

    Hi Stan,
    I just want the user to be able to run my video clips either on a 
    computer or on a standard DVD player. It would be nice to include both 
    formats on a single disc. I am new to this and am not sure what format 
    is most widely used for standard DVD players. Thanks for your response 
    and any guidance you can give me.
    Quinn
    Quoting Stan Jones <[email protected]>:
    Stan Jones http://forums.adobe.com/people/Stan+Jones created the discussion
    "Re: Can I save both DVD-R and DVD-Video files onto the same DVD?"
    To view the discussion, visit: 
    http://forums.adobe.com/message/4996961#4996961

Maybe you are looking for