Still can't get good, crisp, video upload and export

I have read the HD express manual, read the articles by Ken Stone and my video uploads are still not that crisp. When I export the MOV to my desktop it looks perfect, every detail. My original video is crytsal clear, beautiful, but when I upload it to "My Space" it looks a bit fuzzy or flat. Now I know what you're going to say, "it's MY SPACE, but you know what, it's not. There are plenty of very clear and crisp videos from musicians and music videos on MY SPACE that are clear as day and crisp - so I don't agree it's MY SPACE. My Space allows for .MOV/Quicktime uploads - 100MB. I tried H.264, still looks flat and washed out. I tried Sorenson, still looks flat. What's confusing me is the frame rate and key frame rate I should set it at for a simple 320 x 240 upload and all the other detailed settings that are optional. What are my best option, step by step. I have exhuasted myself with this - up until 2 a.m. for 4 days. Please help. I have tried so many options. Thank you for your time. Sheila

Sheila,
What is the source of the original video (original capture from DV camera, Quicktime video, rip from DVD ...)? What settings are you using when you export to your Desktop as a MOV? When you say it's crystal clear, what are you watching it on? Is the MOV file what you are uploading to MySpace, or are you doing a different export for uploading; if so, what settings are you using for that export?
What versions of FCE and QT do you have installed on your Mac? And what are the model & specs of your Mac?

Similar Messages

  • I can't upload photos from iphoto (on my iMac) to facebook. Error message comes up saying 'error occurred with iphoto - try again later'. I've installed the latest software updates but still can't get the photos to upload. Can anyone help please.

    Hi, Hope this is in the right place.
    I'm trying to upload photos into facebook from my iMac. I've clicked on the upload to facebook icon in iphoto but just get an error message saying 'error occurred with iPhoto - try again later. I've also had problems lately when I click on a photo to open it I just get a grey screen with an exclamation mark. I've downloaded the latest software but nothing seems to work.
    Can anyone help please?
    Thanks hopefully,
    Karen

    Karen,
    I'd recommend reposting in the iPhoto forum, you can find it at:
    https://discussions.apple.com/community/ilife/iphoto

  • Still can't get the procedure to compile and run

    Sorry still having issues.
    Here is the whole sql, but I seriously suspect the problem is in the beginning somewhere, with one of the declarations.
    Any help would be appreciated. Since I can get this to run without a stored procedure ( all except the execute immediate statement ), then I assume my logic is ok, but as I said, something is wrong near the top.
    Thanks ,
    Floyd
    The sql is:
    spool proc.err
    CREATE OR REPLACE PROCEDURE floydw.loadtable_config AS
    i pls_integer ;
    sql_stmt VARCHAR2(4000);
    all_names VARCHAR2(4000);
    all_names2 VARCHAR2(4000);
    TYPE typ_coltab IS TABLE OF dba_tab_columns%ROWTYPE INDEX BY pls_integer;
    coltab_table typ_coltab ;
    coltab_table2 typ_coltab ;
    coltab_rec dba_tab_columns%ROWTYPE ;
    CURSOR cur is SELECT *
    FROM dba_tab_columns where owner='GWSTAGING_SENTRYPROD' and table_name='CONFIG' ;
    BEGIN
    i := 0 ;
    OPEN cur ;
    LOOP
    FETCH cur into coltab_rec ;
    exit when cur%notfound ;
    i := i+1 ;
    coltab_table(i) := coltab_rec ;
    coltab_table2(i).column_name := '"' || coltab_table(i).column_name || '"' ;
    END LOOP;
    all_names := NULL;
    all_names2 := NULL;
    FOR j IN 1 .. i
    LOOP
    all_names := all_names || ',' || coltab_table(j).column_name;
    all_names2 := all_names2 || ',' || coltab_table2(j).column_name ;
    END LOOP;
    all_names := SUBSTR (all_names, 2); -- Remove ', ' from beginning of list
    all_names2 := SUBSTR (all_names2, 2); -- Remove ', ' from beginning of list
    sql_stmt := 'insert into ' || coltab_rec.table_name ||' (' || all_names || ') SELECT ' || all_names2 || ' FROM "config"@sentry_l ;' ;
    --dbms_output.put_line ('executing ' || sql_stmt) ;
    execute immediate sql_stmt ;
    END;
    If I try to create it as is, I get:
    SQL> show errors
    Errors for PROCEDURE FLOYDW.LOADTABLE_CONFIG:
    LINE/COL ERROR
    7/3 PL/SQL: Item ignored
    7/31 PLS-00201: identifier 'DBA_TAB_COLUMNS' must be declared
    10/14 PL/SQL: Item ignored
    10/14 PLS-00201: identifier 'DBA_TAB_COLUMNS' must be declared
    11/18 PL/SQL: SQL Statement ignored
    12/8 PL/SQL: ORA-00942: table or view does not exist
    18/5 PL/SQL: SQL Statement ignored
    18/20 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    21/5 PL/SQL: Statement ignored
    LINE/COL ERROR
    21/24 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    22/5 PL/SQL: Statement ignored
    22/22 PLS-00487: Invalid reference to variable
    'DBA_TAB_COLUMNS%ROWTYPE'
    30/7 PL/SQL: Statement ignored
    30/56 PLS-00487: Invalid reference to variable
    'DBA_TAB_COLUMNS%ROWTYPE'
    LINE/COL ERROR
    31/7 PL/SQL: Statement ignored
    31/61 PLS-00487: Invalid reference to variable
    'DBA_TAB_COLUMNS%ROWTYPE'
    37/3 PL/SQL: Statement ignored
    37/33 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed

    Hi Floyd,
    fwellers wrote:
    Frank,
    Does something in the compile errors I sent ( below again ), lead you to believe there is a permission issue ?
    LINE/COL ERROR
    7/3 PL/SQL: Item ignored
    7/31 PLS-00201: identifier 'DBA_TAB_COLUMNS' must be declaredYes. "PLS-00201: identifier 'DBA_TAB_COLUMNS' must be declared" is the error you would get if you tried to say
    TYPE typ_coltab IS TABLE OF dba_tab_columns%ROWTYPE INDEX BY pls_integer;wihtout privileges on dba_tab_columns.
    The line above appears to be line 7 of your code.
    "dba_tab_columns" appears to start in postion 29 (not 31) of that line, but you didn't post your code inside tags, so 2 characters of whitespace could easily have gotten lost in the posting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • TS4268 Ever since I uploaded i0s7 I haven't been able to receive I messages or face time. I have took it to the apple store and they couldn't figure it out. I have also followed the trouble shooting from I tunes and still can't get it working

    Ever since I uploaded i0s7 I haven't been able to receive I messages or face time. I have took it to the apple store and they couldn't figure it out. I have also followed the trouble shooting from I tunes and still can't get it working

    Hi,
    Strikes -
    Go into compositionReady and have 3 variables you will be able to set them like this
    strike1 = 0;
    strike2 = 0;
    strike3 = 0;
    So on the wrong item click have
    if(strike1 == 0) {
    PLAY STRIKE1 ANIMATION
    strike1 = 1;
    else if(strike2 == 0) {
    PLAY STRIKE2 ANIMATION
    strike2 = 1;
    else if(strike3 == 0) {
    PLAY STRIKE2 ANIMATION
    strike3 = 1;
    So this will make it so when the wrong item is clicked each strike will be played in order.
    Random Scrolling -
    You should look into the Math.Random function to make things random in edge.
    This is an example of the Random function. It will generate a random number up to 100.
    var random = Math.floor (Math.random () * 100);
    Lose Screen Score -
    So we can create another variable in compositionReady for the lose score.
    score = 0;
    Now when the user gains a point to add to the score you could do this code on the click
    score++;
    which would add 1 to the score, However you can add however much you like to the score doing "score + 2" and so on.
    To edit a text with the score at the end which I'm assuming you will want to do you will use .html
    so $("Text").html("You score is " + score);
    I hope this helps!

  • STILL can't get Videos into 5G iPod I give up I'm bringing it back

    I have the Black 30GB, after a week of trying iSquint , Handbrake ,Movies for my iPod and now MPEG Streamclip I still can't get videos in my iPod . I give up, it's scratched to bits and I handle it with extreme care . This was the worst $300.00 I've ever spent .

    I had trouble with that too, but figured it out. Here are some things to check:
    1.) Preferences in iTunes with the iPod connected. I put mine on automatic update of all podcasts, just to make sure nothing is missed.
    2.) On the iPod, go to Settings > Main Menu > Videos > On
    3.) On the iPod, got to Videos > Video Settings > TV Out OFF, Widescreen OFF, TV Signal (in US is NTSC, in Europe is PAL).
    After I configured #3, all worked. I'm not sure the widescreen setting makes a difference, but I do know the TV settings do.
    I think you won't have any problems if you go down this checklist. Too bad they don't mention it in Apple support.
    G5 Tower   Mac OS X (10.3.8)  

  • Downloaded Flip4Mac and still can't get WMV file online to play - help!!

    I downloaded Flip4Mac and still can't get this WMV file (http://www.bis.doc.gov/asfroot/snapr-webinar-12-19-2007.wmv) to play - no sound and no video. Any help would be greatly appreciated!

    MSS2 is Windows Media Video Screen codec which, as noted, does not play on Mac with Flip4Mac or anything else I know of. You'll also fine Windows Media Video Image and those coming from PhotoStory won't play on Mac at all either. Not even the ancient WMP9Mac will play those.

  • I upgraded my Yahoo IM and after it uploaded, my homepage went from Firefox to the Yahoo homepage and I cannot get the firefox homepage to come up. How can I get the Yahoo homepage off and get the firefox homepage on?

    I upgraded my Yahoo IM and after it uploaded, my homepage went from Firefox to the Yahoo homepage and I cannot get the Firefox homepage to come up. I have tried to reinstall Firefox, but the Yahoo homepage still comes up. How can I get the yahoo page off and get the Firefox page back on?

    Here are instructions to [[How to set the home page#w_restore-the-default-home-page|restore the default home page]].

  • HT3775 How can I get a youtube video that I have stored on a flash drive to play?

    How can I get a youtube video that I have stored on my flashdrive to play?  I have tried to open it with quicktime but it still will not open.

    Have you tried VLC ?
    http://www.videolan.org/

  • I still can't get Flash to run .. OSX10.6.8 ~ FFox latest 8.01

    I have had to go back to using Safari because I still can't get Flash to run!
    Does anyone know the secret please?
    This Adobe vs Apple thing is going too far.
    When I saw an FFox upgrade I rubbed my hands and thought Whoopee .. they will have fixed it by now" .. but NO!
    Apple support held my hand to make Flash work on Safari..
    Please does anyone have the steps to make it work?

    Every time I have Flash content is says:
    Alert icon
    "You need to upgrade your Adobe Flash Player to watch this video. "
    ~~~ But I just DID THAT 5 minutes ago, I mumble... ~~~
    Does anyone have any clues as to what to do?

  • Hello, how can i get my photos,videos,and contacts of my iphone transfer to my pc. As i have lost my iphone 4

    Hello, how can i get my photos,videos,and contacts of my iphone transfer to my pc. As i have lost my iphone 4

    If you don't have your iPhone anymore, you can't access the data on it remotely.
    However, if you are syncing to iCloud, you can set up iCloud syncing on your computer and at least get your contact info.
    iCloud: Set up iCloud on your devices
    You might also think about putting your device in lost mode or erasing it:
    What steps should I take if I misplace my device?
    If you ever misplace your device—whether it’s just lost or you think it may have been stolen—you should put it into Lost Mode immediately using Find My iPhone.
    Lost Mode locks your screen with a four-digit passcode and lets you display a custom message with your phone number to help you get it back. You can also remotely erase your device if needed, and your custom message will continue to display even after the device is erased.
    While Activation Lock works in the background to make it more difficult for someone to use or sell your missing device, Lost Mode clearly indicates to anyone who finds your device that it still belongs to you and can’t be reactivated without your password.
    To put a device into Lost Mode, sign in to icloud.com/find from a Mac or PC or use the Find My iPhone iOS app.
    For more information, read what to do if your device is lost or stolen.
    copied from Find My iPhone Activation Lock

  • Can't get into the Video Options in ITunes

    When my Ipod Video is plugged in, and I bring up the Options menu, Everything except the Video option works fine. For some reason, the Video option is all grayed out. I have put videos on my Ipod, but still cannot get into the Video options. Everything is up-to-date.
    What do I do?

    Okay stupid me. I know what you are saying but I can't scroll to the right to click on continue. It's like its too wide. I tried moving the pane on the left as far as it can go but I still can't get to it.

  • HT201412 I have tried all of the above and still can't get my ipad to respond

    I have tried all of the above and still can't get my ipad to respond

    Everything? Did you see the very last part about restoring the iPad and did you notice that there is another link in that step in case you cannot restore the iPad?
    Symptoms
    Your iPhone, iPad, or iPod touch may occasionally stop responding to buttons, switches, or touchscreen input and may exhibit one or more of the symptoms listed below.
    Resolution
    If any of these symptoms occurs, follow the steps in this article to resolve the issue. The device:
    Does not return to the Home screen after pressing the Home button
    Does not wake from sleep after pressing the Sleep/Wake button
    Does not turn on (or power on) when pressing any button
    Appears frozen or unresponsive
    Is unable to "Slide to Unlock" or "Slide to Power Off"
    If a single application is not responding or freezes when it opens, you can force it to close
    Press and hold the Sleep/Wake button until the red slider appears. When the red slider appears, release the Sleep/Wake button.
    Instead of dragging the red slider, press and hold the Home button for six seconds.
    If the device does not return to the Home screen, see the steps below to restart.
    If the device is unresponsive or certain controls aren't working as expected, try restarting
    To turn off the device, press and hold the Sleep/Wake button until the red slider appears.
    Slide your finger across the slider to turn off the device.
    To turn on the device, press and hold the Sleep/Wake button until the Apple logo appears.
    If the device remains unresponsive or does not turn on (or power on), try resetting
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds.
    If there is no video, verify that the device has enough charge to turn on
    If you are using an iPad, ensure that it's connected to the 10W USB Power Adapter.
    Let charge for at least twenty minutes, then see if it starts normally.
    If there is no image on the screen, press the Home button to attempt to wake the device.
    If the screen displays a red battery icon, let the device to continue to charge until it turns on.
    If the above steps do not resolve the issue, or the if the screen remains black or shows a persistent Apple logo, try restoring with iTunes
    Connect the device to your computer and open iTunes.
    If the device appears in iTunes, select and click Restore on the Summary pane.
    If the device doesn't appear in iTunes, try using the steps in this article to force the device into recovery mode.
    Additional Information
    Ensuring that your iOS device is kept updated to the latest software should minimize the occurrence of these issues.

  • TS4424 I still can't get my mail to work.I have reinstalled Security update and combo 3 times. About ready to call Apple but mI don't think I should pay for it!!!!

    I can't my Apple mail to work.  It started when I did an up date.  When I went to use mail  (the little stamp at bottom)  it said, "you can't use this version of mail with this version of OS X.  I looked on support and was told to solve the problem  by downloading combo package and security update. Did it 3 times.  I did everything.  Still doesn't work.  I even took everything mail out of applications and the library and did those two updates and still can't get it.  Could I reinstall OS X Snow Leopard and would that affect any of my documents like i photo or i tunes?  I don't want to loose anything!  I have spent way too long on this problem.  I feel like I own  PC with windows again.  Please help!!!!!!    Frustated

    No need to reinstall Snow. Try trashing all the Mail.apps you have. (But don't empty the trash yet!) Do a search for those. Reinstall Mail from the DVD in Optional Installs. This will put Mail 4.2 in Applications, then run the Combo Update, which will update Mail to 4.5, and then the Security Update again, in that order.

  • I just read the tutorial and did exactly what it was telling me to do, and I still can't get it done. Once I have selected the file, I get a box that pops up that says "Subscribe now to convert unlimited number of files to PDFs. Subscribe Now.  I already

    I just watched the tutorial and did exactly what it was telling me to do, and I still can't get it done. Once I have selected the file, I get a box that pops up that says "Subscribe now to convert unlimited number of files to PDFs. Subscribe Now.  I already have done this! I am a subscriber!  Arrrrhhhgggg!

    Hello Kathie,
    Please let me know what exactly are you trying to do using Adobe online service.
    You might try accessing the same service for some other PDFs and check.
    Have you signed up correctly at "https://cloud.acrobat.com/" using your Adobe ID credentials.
    If the same message pops up, then please visit Contact Customer Care as they could let you know if there is any problem with your account.
    Hope to get your response.
    regards,
    Anubha

  • I am trying to download a book on my ipad. It says I need to install itunes. I have itunes already. I frequently get a message to re-install itunes. I do, but I still get the message, and I still can't get the book on my ipad.

    I am trying to download a book on my ipad. It says I need to install itunes. I have itunes already. I frequently get a message to re-install itunes. I do, but I still get the message, and I still can't get the book on my ipad.

    you can download a new installer and serial number from Adobe at Adobe - CS2 Downloads

Maybe you are looking for

  • VMware Fusion with XP no longer connects to internet or wireless printer

    I have an IMAC 24" with 4 GB of memory and an intel based platform. Could a recent apple software update (seem to remember ITunes & a security update) on my windows xp virtual machine operated by vmare fusion have caused my internet and networked wir

  • How to enter a secure address in security so i can have access to web site

    I used to be able to enter an address from a secure website and be able to access when I had internet explorer and with firefox I dont know where to enter address so I can access the secured we site.

  • My display is very large

    My son used my imac and played a game via the internet.  Now my display is very large and I can not make it smaller.  Any suggestions

  • A problem with the parallax

    Hello, Sorry for my bad English but I go through Google translation! Here is my problem: I exported my site in HTML. I got all the saved files and have stuck to a USB stick. I plugged the drive into a netbook that has a 10 "screen and clicked on the

  • Nexus 1000v - port-channel "refresh"

    Hi All, My question is, does anyone have any information on this 1000v command: Nexus-1000v(config)# port-channel internal device-id table refresh I am looking for a way for the port-channel interface to be automatically removed from the 1000v once t