Published a Mov File and I get a Quicktime Symbol with a ? What can i do?

I published a site with iWeb with a .Mov file in it about 20 seconds long. When it finished publishing, i checked out the website and instead of the video playing, i see a QUICKTIME symbol with a (?) question mark on it. what can i do to make this work. should i format the .Mov file to avi, mpeg-4 or another? help me guys, pls. thanks.

It's not an iWeb issue. Rather a QuickTime one.
Your original movie is 29,1MB (rather large for 20 seconds) and 960x540 pixels and Apple Intermediate Codec.
It is displayed on your webpage as 772x450 (not proportionally).
When I scale it to 800x450 (proportionally) and export it to QuickTime as h.264 and Faststart it only is 709kB.
About 1/40th. And hardly any noticeable loss of quality.
Lately there's an influx of videoprofessionals who have difficulty putting their movies on the web. Perhaps some masterclasses would be in order.
I'm not a professional, but I think I know a trick or two:
http://www.wyodor.net/iFrame/
I use QuickTime Pro, iMovie and my [poor mans's RED|http://www.theflip.com].
Message was edited by: Wyodor

Similar Messages

  • In Quicktime Pro I try to create a mov file and I get an error "-43 a file could not be found".  Any ideas?

    In Quicktime Pro I try to create a mov file and I get an error "-43 a file could not be found".  Any ideas?

    I have a similar problem which i did not have before...and it exists only in some powerpoint files which i want to print as a pdf file...and i get the same message as above.
    the log says the bellow details...what's the problem and how can i resolve it? thanks.
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    %%[Page: 2]%%
    Cambria not found, using Courier.
    %%[ Error: invalidfont; OffendingCommand: show ]%%
    Stack:
      %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%

  • I upgraded to Lion and now can't print PDF files and Acrobat reader doesn't work anymore. What can I do to get it working?

    I upgraded to Lion and now can't print PDF files and Acrobat reader doesn't work anymore. What can I do to get it working?

    If you upgraded and were using a version of Acrobat Reader that was legacy, that is PPC compatible, then you will have to upgrade to a version compatible with Lion as Lion no longer has Rosetta to interface with the legacy software.
    I know that Acrobat, full version, 10 works with Lion...use it myself.

  • Move files and create unique name something wrong with my script

    Can you see where I might be going wrong here?
    Just trying to create a unique name if something exists.
    In English.
    Move file to the destinationFolder
    Item exists in destinationFolder > Move file in the destination folder to the fake Trash > If it exists in fakeTrash too then give it a new name an ending of_a.psd then out it in the trash
    Once thats done move start file to the destination folder.
    Currently when the file exists in the destination folder and in the trash, I get the prompt then the error
    error "System Events got an error: Can’t get disk item \"NN_FR10WW06290PK3LE.psd\"." number -1728 from disk item "NN_FR10WW06290PK3LE.psd"
    set fileMatrix to {¬
              {folderName:"BHS", prefixes:{"BH", "SM", "AL"}}, ¬
              {folderName:"Bu", prefixes:{"BU"}}, ¬
              {folderName:"Da", prefixes:{"ES"}}, ¬
              {folderName:"Di", prefixes:{"DV"}}, ¬
              {folderName:"Do", prefixes:{"DJ", "RA"}}, ¬
              {folderName:"In", prefixes:{"GT", "CC"}}, ¬
              {folderName:"Fr", prefixes:{"FR"}}, ¬
              {folderName:"No", prefixes:{"NN"}}, ¬
              {folderName:"Ma", prefixes:{"MA", "MF", "FI", "MC", "MH", "MB"}}, ¬
              {folderName:"Pr", prefixes:{"PR"}}, ¬
              {folderName:"To", prefixes:{"TM15", "TM11", "TM17"}}, ¬
              {folderName:"Wa", prefixes:{"WA"}}, ¬
              {folderName:"Se", prefixes:{"SE"}}}
    tell application "Finder"
              set theHotFolder to folder "Hal 9000:Users:matthew:Pictures:HotFolderDone"
              set foldericon to folder "Hal 9000:Users:matthew:Pictures:Icons:Rejected Folder Done"
              set fakeTrash to folder "Hal 9000:Users:matthew:FakeTrash"
      ---here
              repeat with matrixItem in fileMatrix -- look for folder
                        set destinationFolder to (folders of desktop whose name starts with folderName of matrixItem)
                        if destinationFolder is not {} then -- found one
                                  set destinationFolder to first item of destinationFolder -- only one destination
                                  set theFolderName to name of destinationFolder
                                  repeat with aPrefix in prefixes of matrixItem -- look for files
                                            set theFiles to (files of theHotFolder whose namestarts with aPrefix) as alias list
                                            if theFiles is not {} then repeat with startFile intheFiles -- move files
                                                      try
      move startFile to destinationFolder
                                                      on error
      activate
                                                                display dialog "File “" & (name ofstartFile) & "” already exists in folder “" & theFolderName & "”. Do you want to replace it?"buttons {"Don't replace", "Replace"} default button 2 with icon 1
                                                                if button returned of result is "Stop"then
                                                                          if (count theLastFolder) is 0 thendelete theLastFolder
                                                                          return
                                                                else if button returned of result is"Replace" then
                                                                          set fileName to get name ofstartFile
                                                                          if exists file fileName indestinationFolder then ¬
                                                                                    try
      --next line moves existing file to the faketrash
      move file fileName of destinationFolder to fakeTrash
      move file startFile to destinationFolder
      --if it already exists in fake trash give it a new name then move that file to fake trash
                                                                                    on error errmess numbererrnum -- oops (should probably check for a specific error number)
                                                                                               log "Error " & errnum& " moving file: " &errmess
                                                                                               set newName to mygetUniqueName(fileName,fakeTrash)
                                                                                               set name of fileNameto "this is a unique name"-- or whatever
                                                                                               set name of fileNameto newName
      --Now move the renamed file to the fake trash
      move file fileName to fakeTrash
      --now move the startfile to destination folder
      move file startFile to destinationFolder
                                                                                    end try
                                                                else -- "Don't replace"
                                                                          if not (exists folder "Hal 9000:Users:matthew:Desktop:Rejected Folder Done") then
                                                                                    set theLastFolder toduplicate foldericonto desktop
                                                                          else
                                                                                    set theLastFolder to folder"Hal 9000:Users:matthew:Desktop:Rejected Folder Done"
                                                                          end if
                                                                          delay 0.5
      move startFile to theLastFolder with replacing
                                                                end if
                                                      end try
                                            end repeat
                                  end repeat
                        end if
              end repeat
              try
                        if (count theLastFolder) is 0 then delete theLastFolder
              end try
    end tell
    to getUniqueName(someFile, someFolder)
         check if someFile exists in someFolder, creating a new unique file name (if needed) by adding a suffix
              parameters -          someFile [mixed]: a source file path
                                  someFolder [mixed]: a folder to check
              returns [list]:          a unique file name and extension
              set {counter, suffixes, divider} to {0, "abcdefghijklmnopqrstuvwxyz", "_"}
              set someFile to someFile as text -- System Events will use both Finder and POSIX text
              tell application "System Events" to tell disk item someFile to set{theName, theExtension} to {name, name extension}
              if theExtension is not "" then set theExtension to "." & theExtension
              set theName to text 1 thru -((length of theExtension) + 1) of theName -- just the name part
              set newName to theName & theExtension
              tell application "System Events" to tell (get name of files of folder(someFolder as text))
                        repeat while it contains newName
                                  set counter to counter + 1 -- hopefully there aren't more than 26 duplicates (numbers are easier)
                                  set newName to theName & divider & (item counter ofsuffixes) & theExtension
                        end repeat
              end tell
              return newName
    end getUniqueName

    There are numerous errors in your script, and it's a large script so there might be more, but these are the standouts for me:
    At line 48 you:
                                                                          set fileName to get name of startFile
    which is fair enough - you then use this to see if the file already exists in the destinationFolder. However, if it does the logic about how to deal with that is flawed.
    At line 56 you catch the error:
                                                                                    on error errmess number errnum -- oops (should probably check for a specific error number)
                                                                                              log "Error " & errnum & " moving file: " & errmess
                                                                                              set newName to my getUniqueName(fileName, fakeTrash)
                                                                                              set name of fileName to "this is a unique name" -- or whatever
                                                                                              set name of fileName to newName
      --Now move the renamed file to the fake trash
      move file fileName to fakeTrash
      --now move the startfile to destination folder
      move file startFile to destinationFolder
                                                                                    end try
    so let's focus on that.
    56: catch the error
    57: log the error
    58: generate a new unique filename
    59: change the name of fileName to some other string
    Hang on, wait a minute.... we already ascertained that at line 48 you defined fileName as a string object that indicates the name of the file. This is just a string. It's no longer associated with the original file... it's just a list of characters. Consequently you cannot set the 'name' of a string, hence your script is doomed to fail.
    Instead, what I think you want to do is set the name of the startFile to the unique string. Files have filenames, and therefore you can set the name.
    You have a similar problem on line 64 where you try to 'move file filename to fakeTrash'. fileName is just a string of characters. It isn't enough to identify a file - let's say the file name is 'some.psd'. You're asking AppleScript to move file some.psd to the trash. The question is which some.psd? The one on the desktop? in your home directory? maybe on the root of the volume? or maybe it should search your drive to find any/all files with that name? nope. None of the above. You can't just reference a file by name without identifying where that file is. So you probably want to 'move file fileName of destinationFolder...'
    There may be other problems, but they're likely to be related - all issues with object classes (e.g. files vs. strings), or not being specific about which object you want.
    As I said before, though, I might be way off - you don't say where the error is triggered to make it easy to narrow down the problem. Usually AppleScript will highlight the line that triggered an error. Knowing what that line is would help a lot.

  • HT201441 In the activate ipad sceen and cant get ahold of the old owner what can i do

    can somebody help me

    If you deleted them from your iPad and iCloud, they are gone (unless you made a backup after you took the photos but before you deleted them.
    Barry

  • Flash 8 problem publishing to mov file

    Hi,
    I'm trying to create a mov file and I get an error message stating that I need to publish my movie in version 5 or before. After changing that setting, I still get the same error message? I've tried: downloading the latest quicktime, reinstalling flash 8, and rebooting. All have been unsuccessful. Any Ideas?
    Thanks,
    Denny

    Take one of the old SWF files and rename it to the name you
    should be getting with the publish....
    Actually that makes me think, go into the publish settings
    and check the name and location you are trying to publish to.
    Perhaps click the restore defaults or use default names or whatever
    the button says.
    After that go back to my first thought, take one of the old
    ones and duplicated it to be the name you would expect in the
    location you would expect. Then try and publish and see if it
    deleted or if it remains.

  • Can I store Movie files and other data on my Zen Xt

    My PC HD is full of movie files and I want to free up some space. Can I move these files onto my 60GB Zen Xtra?

    When transfering large files with the MTP firmware make sure you have the patch from Microsoft otherwise the file will not transfer back from the player to the computer.
    Get it here:
    <a href='http://support.microsoft.com/default.aspx?scid=kb;en-us;89536' target=_blank>http://support.microsoft.com/default.aspx?scid=kb;en-us;89536[/url]

  • Hi i have just completed an imovie project and tried to save a hard copy on the desktop so i dragged the project file from the home page then movies folder and now the prioject seems to be lost , how can i get it back ?

    hi i have just completed an imovie project and tried to save a hard copy on the desktop so i dragged the project file from the home page then movies folder and now the prioject seems to be lost , how can i get it back ?

    It's a Finder feature, related to Quick Look. You can hit the space bar in the file list to get a preview.
    If that doesn't work, you may have an issue witha  preference file or similar. I find rebuilding the launch databse works quite well resilving tis kind of thing, as does trashing Finder preferences

  • In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    Thanks for chipping in.   I discovered something after trying what you suggested.   I have quite a few collections of hits by year from Time Life and Billboard.  I've eliminated duplicate tracks that appear in both collections (or other CDs for that matter), but cross-reference the CD where I deleted the track and placed in in the comments section of the CD track I retained.   If I "search" by song name, only the remaining track appears.   But if I want to hear for example Classic Rock 1964, only those tracks remaining would be there when I pull up that CD.   So, I type "Classic Rock 1964,"  in the search field.  First the boxes on the right of the screen open up showing album icons.  Showing four tracks by album with a button to view 10 more, then four songs with an option to vies 18 more.   I finally noticed that at the top of the boxes is a blue band that reads, :Show Classic Rock 1964 in Music.  When I double click on this blue band, all 24 tracks from the original CD appear in the song list format even though I had deleted two of them because they appeard in a Beach Boys CD.   On those tracks, I had referenced Classic Rock 1964 in the comments field.    So, bottom line, Search will also look in the comments field if you click "filter by all" in the magnifying glass to the left of the search field.   And you can move all tracks that if finds into a song list by double clicking on the blue band.

  • A mov file plays in 'Get Info' preview, but not in Quicktime

    I recorded a talk to web cam yesterday using Quicktime Pro and edited out the overlong pauses and fluffs to produce a series of .mov clips. Today I copied and pasted the clips into one .mov file in Quicktime Pro. The first 12 clips were fine.
    The 13th clip opened as if it was audio only, but when played did not give any sound. An examination of the movie properties window showed about 3 minutes of audio and video, but neither were selected and could not be selected. When I tried to extract the video thinking I could then reassemble the file, I got a message saying that one of my raw clips was missing. The file was saved as self-contained and is about 7 MBytes. When it opens with the appearance of an audio file the last part of the clip I pasted in is highlighted as if selected; this corresponds to the file it is asking for.
    Now I had deleted my raw data as my hard drive is nearly full and I was getting warnings to that effect. But as the files had been saved as self-contained rather than reference, this should surely not be a problem.
    The strange thing is that if I select the .mov file and do a 'get info' then I can play the audio and video perfectly in the 'get info' preview plan, up until that final part corresponding to the missing file.
    It looks like I have to do the last bit once more, but how can I keep the rest of it? I've tried deleting the final part and re-saving, but it still opens with the appearance of an audio file (which is silent when I play it). I can at least listen to what I said in the first recording, but it would be good to be able to keep the part that plays in 'get info'.
    Any ideas of how I can get to it?
    Any ideas.

    Solution found.
    I simply created a new .mov file and changed its name to the raw file that Quicktime told me was missing when I tried to open my edited clip.
    The edited clip now opens and I've been able to delete the final portion (which appears selected when the clip opens) and save the rest, which plays fine.
    This seems to have been a problem because in this particular clip I left the final portion I pasted in selected when I saved the file, even though I saved is as self-contained, not a reference file.

  • HT201066 QuickTime: I'm trying to open a .WMV file and I get the following message.

    I'm trying to open a .WMV file and I get the following message.
    "The document “.wmv” could not be opened. The movie is not in a format that QuickTime Player understands.  You may need to download additional software.

    Two other possibilities.
    Video Player - Divx
    Video Player - VLC

  • Hi apple users, I am in need of your expertise. I have a mov file and mp4 file which I need converted to DVD. However IDVD quality is terrible and wondering if anyone can help!?

    Hi apple users, I am in need of your expertise. I have a mov file and mp4 file which I need converted to DVD. However IDVD quality is terrible and wondering if anyone can help!?
    I created project in iMovie then exported it to MP4 and also MOV file at highest definition possible + I added it to iDVD and had a number issues about encoding errors regarding the mp4 file. MOV worked but the quality was terrible.....
    MOV file is as follows:
    4.08GB
    Codecs: H.264, ACC
    Colour Profile: HD (1-1-1)
    Dimensions: 1920 x 1080
    Duration: 12:33
    Audio Channels: 2
    MP4 File is as follows:
    3.02GB
    Codecs: H.264, ACC
    Colour Profile: HD (1-1-1)
    Dimensions: 1280 x 720
    Duration: 12:33
    Audio Channels: 6
    I have a MacBook Pro using the Yosemite system upgrade.
    I have updated iDVD and iMovie.
    I even bought the iSkysoft app from the mac store and that was terrible too.
    PLEASE HELP i am getting desperate and about to launch this macbook into the air
    2.66 GHz Intel Core i7
    Version 10.10. 2

    First of all, Hunt--thanks for responding!
    "First, where are you playing the MPEG-2, that you see that jitter?"
    On both a MacBook Pro, an Acer laptop and my Mac Tower. I would love to think that it is a problem with the playback system, and that if I merely send the file off to the duplicator they won't have the same problem. Maybe that is the case...I don't know if I have a choice rather than sending it off to see. But it happens in the same spots, in the same way, on all three of the players so I'm a little reluctant to have faith.
    "Another thing that can cause jitter in an MPEG-2 is the Bit-Rate - higher the Bit-Rate, the better the quality, but the larger the file. For a DVD, one is limited by the total Bit-Rate (both Audio & Video), but with longer prodcutions, some users choose too low a Bit-Rate. If this is the issue, one would need to go back to the original Project and do a new Export/Share."
    Of course, but in the case there is no more 'original project.' It is gone like the wind, stolen along with his computer and backups.
    I think I am stuck using one of two files as my master: a DVD he burned where I only see the stutter/vibration/jitter once, or the mpeg2 file where I see it three times. Hopefully, the duplication house can rip if off of one of them and not see the jitter. I know that in audio, my personal filed, you can do a lot to enhance already existing sound--EQ, compression, tape saturation emulation software, etc. I guess I'm hoping there is some kind of analog to the video world that address jitter after a source has been printed--if indeed the source has been printed to be jittery.
    Thanks,
    Doug

  • Songs show up as "QuickTime movie file" and won't share or sync

    I have a few mp3 audio files in iTunes that aren't being transferred to my iPod (3G) and aren't showing up when I share my iTunes library to another computer, and I can't figure out why.
    The filenames have ".mp3" extensions. When I do a 'Get Info' on them in the Finder, they're identified as "MP3 Audio File". Running 'file' on them from a Terminal window says "MP3 file with ID3 version 2.2.0 tag". They play just fine in iTunes as well as in QuickTime Player.
    But when I do a 'Get Info' on them from within iTunes, iTunes says each one is a "QuickTime movie file". And when I access this computer's shared music from iTunes on another computer on my network, everything shows up except these tracks; and when I sync my iPod, everything shows up except these tracks. I don't get any error messages.
    Why does iTunes think these songs are movie files, and how do I correct it?
    G5/1.8 Single   Mac OS X (10.4.8)  

    These files have the wrong creator.
    You can correct this by running the script on this web page.
    The page also contains information about avoiding this in the future.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.1

  • .mov files won't playback in quicktime 7.2 after archive and install

    I just did an archive and install, because I was having a few problems with the Safari beta.
    However since doing so it has been a complete nightmare. So many things stopped working. I'm guessing I had them installed on the system and not on my user.
    So now after getting most thing back up and running, .mov files won't play in quicktime 7.2 an annoying 3ivx pop up appears which leads to a dead link.
    So I checked the .mov format and they are 3ivx, but how do I install and from where do I get the codec??

    Perian
    http://perian.org/#detail
    It's free and most people use this to play off the wall codecs...3ivx.
    Please read the information on the web page on how to install and use. In the download there a help page.

  • Use Automator to move files and folder structure to another folder, retaining destination contents

    I have been struggling trying to setup Automator to move files and folder structure to another folder, retaining the destination contents.  Basically, I need to add files at the destination, within the same folder structure that exists at the source.  Here's some details about the scenario:
    -I have PDF files that I create on a seperate computer than I my daily use machine
    -For security reasons, the source computer doesn't have access to any shares on the destination computer
    -The destination computer has access to shares on the source computer
    -I want to delete the original PDFs at the source after they are moved or copied
    I haven't been able to get Automator to move or copy the folder contents (files and subfolders) without dropping everything copied at the top level of the destination, resulting in many duplicate folders and a broken folder structure.
    So far I've only had luck getting this to work at the command line, but I'd really like to have this setup in Automator so that I could have either a service or application that I could use for any folder, prompting for the source and destination folders.  I'm a relatively new Mac user with limited Linux experience, so this is the command that I've cobbled together and currently accomplishes what I'm looking for:
    ditto /Volumes/SMB_Temp/SOURCE ~/Desktop/Documents/DESTINATION
    cd /Volumes/SMB_Temp/SOURCE
    find . -type f -name "*.pdf" -exec rm -f {} \;
    Thanks for any ideas!

    If you have a command-line syntax that works, why not just create an Automator workflow with a single 'Utilities -> Run Shell Script' action, where that action has your (working) shell commands?
    Seems way, way simpler to me than trying to reinvent the wheel and transcribe shell commands into individual Automator actions

Maybe you are looking for

  • Am I the only one who thinks iOS 7 is far from stable?

    I have an iPhone 4S running on iOS 7.0.3 currently and ever since updating to the 7, i have experienced continuous poor battery life situations. I thought switching off certain things like "background app refresh" and several location services will e

  • JCo Error in EP6.0

    Hi All, I have developed a custom iview in EP6.0 which retireves data from R/3 using Jco and display the data in various controls like dropdown. When I try to run the application I am getting a runtime error (while accessing the model). I am using a

  • BT Infinity - speed much lower than expected

    Morning all, I will be raising a call with BT this morning but thought I would post here too.  Eventually got BT infinity installed on the 16th of March after BT messed up the order - I am less than 90 metres to the cabinet. My speed fluctuates betwe

  • Premiere Pro CC (2014) has ERASED AUDIO from my original media?

    I know there are a lot of threads out there about not hearing audio, or missing audio. Maybe this is a related problem, but I didn't find anyone who described the same problem I'm having, or had a solution. I opened up a project today that I've been

  • HT6058 My ipad2 doesn't get updated instead all mails are also blocked! pls hellp

    My ipad2 doesn't get updated instead all mails are also blocked! pls hellp