Trying to export M2V, getting an annoying white line down side...

Hey guys, looking been looking for solutions to this but to no avail...
Trying to compress a prores 1920x1080 422 hq clip into an m2v for burning. Problem is whenever I touch the frame controls, I seem to get a freaking annoying white line down the right hand side of my vid.
If I turn the frame controls off, it works, but I want them on because the image quality is far superior with it one.
Here's the settings I had:
Another really annoying thing is that I did an experiment, I opened the prores in QT player, exported for web/computer/h264 and brought that into compressor, rendered it out. No white line. But H264 looks like utter crud.
Any ideas?? This is so infuriating. Thanks so much

A line (usually a green line) down the right side of a video usually means a size mismatch that the codec can't deal with. What is the final size the video shows, m2v?
Set Details Level to zero and turn off Active Details. Details Level and Anti-alias are used when up-sizing a video.
You may need to do the re-sizing before going to m2v. Resize using ProRes (4444 is an over kill) and use that to make your m2v. And use better as Russ has pointed out. The best setting will yield about 10% in quality over better. You will not see that 10% gain in quality in the final video. Especially since your going to m2v for the final video. When you use frame control to convert a video to m2v. Frame control has be read during each (2) pass adding to the time to the encoding. Personaly, if I need to use frame control to make a DVD (or h.264), I make a intermediate video... PreRes, and use that to make my DVD or h.264 video.
Lastly, if this doesn't fix the white line you may need to crop off 1 or 2 pixel lines (right or left) from the video. You won't see this in the final video.
I have had to do this.
Food for thought... If your making DVDs from 1080 video footage or having to resize the video regularly for DVDs or h.264 encoding. You can use the 'NEW JOB WITH TARGET OUT PUT' option in *Compressor. This will make a ProRes intermediate video with the size changes (you need set the new size). After that has be encoded it will automatically convert that ProRes video to m2v.
You can either do this at night (sleep time) or do something else while this is being executed.
Old video showing how to use this option. It will also tell you why you wouldn't want to use frame control when making an h.264 (m2v) video:
http://pixelcorps.cachefly.net/macbreak-154-540p-h264.mov
*If your using Compressor 3.5... the second encoding (MPEG-2 in the above example) you will need to set the size in the geometry widow. Compressor 3.5 leaves this blank (a bug), this was fixed in Compressor 4.

Similar Messages

  • White line down screen

    I have a satellite P105-S6124. A one inch vertical white line is on screen. What causes this and can it be repaired? Its always there and never goes away. 

    Probably a defect in the screen. You can verify that by using an external monitor and seeing if it gets a white line down the screen too. If it doesn't, you've got a bad screen or possibly the video cable. Screens are expensive. Hopefully the computer is still under warranty.

  • White line down middle of document

    Need help. I have a white line down the middle of all documents, whether from computer or scanner on our MF2727nf. We have replaced cartridge and still have the problem.
    Any help will be appreciated.
    Thanks,
    Rochel

    Removing and re-installing iTunes won't do any good as it does not pertain to the iPod in any way.  If none of the 5 R's of troubleshooting helped, we can definitely say that it is a hardware issue with the iPod's LCD display.
    http://www.apple.com/support/ipod/five_rs/
    Sometimes it helps to let the battery fully drain and then redoing the 5 R's.
    B-rock

  • HT1430 I have 4 white lines down right hand side of phone I cannot use any icons under the lines

    My I phone 5 has 4 white lines down right hand side I cannot use the icons under it. Can anyone help?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    As long as the issue is not the result of user damage (like being dropped) it should be covered under warranty.  Only Apple can say for certain whether it is covered or not.

  • Annoying white line around artwork

    There's a strage thin white line around a black artwork, it's easier to see it with red background.
    It's hard to see it so i zoomed in.
    Here's the Appearance panel with this object selected:
    How do I get rid of it?
    Illustrator CS5
    Windows 7

    Set your black artwork to either:
    Overprint and view in Overprint Preview or Multiply (in Transparency).
    That way you won't see the white lines.
    On the other hand, although they won't show up in print, those white lines (when viewed in CMYK preview) can sometimes be a useful indicator that an overprint is required.

  • Getting Rid of White Line

    Hey,
    I'm making a 2D application and whenever I run it and use input such as the keyboard, a white line goes down the screen and flashes. Any ideas how to stop this?

    Sorry, yeah, here's a code snippet that doesn't use any media. If you move around with the arrow keys you will see a white line flashing around.
    import java.awt.*;
    import java.applet.*;
    import java.awt.MediaTracker;
    public class Testing extends Applet
         MediaTracker tracker = new MediaTracker(this);
         Player[] player = new Player[10];
         int[] order = new int[10];
         House[] house = new House[10];
         Shop[] shop = new Shop[10];
         Tree[] tree = new Tree[10];
         HouseInside[] houseInside = new HouseInside[10];
         boolean hasPreLooped = false;
         int currentPlayer1 = 0;
         int currentPlayer2 = 1;
         int topPlayer = 0;
         int speed = 10;
         int playersInHouse;
         int screenWidth = java.awt.Toolkit.getDefaultToolkit().getScreenSize().width;
         int screenHeight = java.awt.Toolkit.getDefaultToolkit().getScreenSize().height;
         public static void main( String args[] )
         public void init( Graphics g )
         public void paint( Graphics g )
              if( hasPreLooped == false )
                   init( g );
                   preLoop( g );
                   hasPreLooped = true;
              drawBackground( g );
              checkInside();
              //g.drawImage( img, 10, 10, 100, 100, this );
              for( int drawHouses = 0; drawHouses <= 1; drawHouses++ )
                   if( house[drawHouses].isInside() == false )
                        house[drawHouses].drawBuilding( g );
                   if( house[drawHouses].isInside() == true )
                   houseInside[drawHouses].drawInside( g );
              shop[0].drawBuilding( g );
              for( int drawPlayers = 0; drawPlayers <= 1; drawPlayers++ )
                   if( player[drawPlayers].isInside() == false )
                        player[drawPlayers].drawPlayer( g );
                   }else{
                        player[drawPlayers].drawPlayerDown( g );
              for( int drawTrees = 0; drawTrees <= 2; drawTrees++ )
                   tree[drawTrees].drawTree( g );
              printStatements();
         public void printStatements()
              System.out.println( "p1 inside = " + player[0].isInside() );
              System.out.println( "p2 inside = " + player[1].isInside() );
              System.out.println( "h1 inside = " + house[0].isInside() );
              System.out.println( "h2 inside = " + house[1].isInside() );
              System.out.println( "house[0].numInside() = " + house[0].numInside() );
              System.out.println( "house[1].numInside() = " + house[1].numInside() );
         public void checkInside()
              for( int resetHouses = 0; resetHouses <= 1; resetHouses++ )
                   house[resetHouses].setNumInside( 0 );
              for( int resetPlayers = 0; resetPlayers <= 1; resetPlayers++ )
                   player[resetPlayers].setNumInside( 0 );
              for( int checkPlayers = 0; checkPlayers <= 1; checkPlayers++ )
                   for( int checkHouses = 0; checkHouses <= 1; checkHouses++ )
                        if( player[checkPlayers].getX() >= house[checkHouses].getX() && player[checkPlayers].getX() <= house[checkHouses].getX() + house[checkHouses].getWidth() && player[checkPlayers].getY() >= house[checkHouses].getY() && player[checkPlayers].getY() <= house[checkHouses].getY() + house[checkHouses].getHeight() )
                             player[checkPlayers].setNumInside( player[checkPlayers].numInside() + 1 );
                             house[checkHouses].setNumInside( house[checkHouses].numInside() + 1 );
              for( int setHouses = 0; setHouses <= 1; setHouses++ )
                   if( house[setHouses].numInside() > 0 )
                        house[setHouses].setIsInside( true );
                   }else
                        house[setHouses].setIsInside( false );
              for( int setPlayers = 0; setPlayers <= 1; setPlayers++ )
                   if( player[setPlayers].numInside() > 0 )
                        player[setPlayers].setIsInside( true );
                   }else
                        player[setPlayers].setIsInside( false );
         public void preLoop( Graphics g )
              player[0] = new Player( g, screenWidth / 4 * 1, screenHeight / 2 + 200 );
              player[0].setShirt( 0, 0, 200 );
              player[0].setPants( 0, 200, 200 );
              player[0].setSkin( 250, 250, 200 );
              player[0].drawPlayer( g );
              player[1] = new Player( g, screenWidth / 4 * 3, screenHeight / 2 );
              player[1].setShirt( 200, 0, 0 );
              player[1].setPants( 0, 100, 200 );
              player[1].setSkin( 200, 200, 100 );
              player[1].drawPlayer( g );
              house[0] = new House( g, 500, 300, 200, 150 );
              house[1] = new House( g, 700, 500, 200, 150 );
              tree[0] = new Tree( g, 700, 370 );
              tree[1] = new Tree( g, 50, 600 );
              tree[2] = new Tree( g, 600, 600 );
              shop[0] = new Shop( g, 0, 300, 300, 200 );
              houseInside[0] = new HouseInside( g, 500, 300, 200, 150 );
              houseInside[1] = new HouseInside( g, 700, 500, 200, 150 );
         public void drawBackground( Graphics g )
              g.setColor( Color.green );
              g.fillRect( 0, screenHeight / 3, screenWidth, screenHeight / 3 * 2 );
              g.setColor( new Color( 220, 255, 255 ) );
              g.fillRect( 0, 0, screenWidth, screenHeight / 3 );
         public boolean mouseDown( Event e, int x, int y )
              for( int searchSelected = 0; searchSelected <= 1; searchSelected++ )
                   if( x >= player[searchSelected].getX() && x <= player[searchSelected].getX() + 20 )
                        currentPlayer = searchSelected;
              System.out.println( "x = " + x );
              System.out.println( "y = " + y );
              return true;
         public boolean keyDown( Event e, int k )
              if( k == 1007 && player[currentPlayer1].getX() + 20 < screenWidth )
                   player[currentPlayer1].setX( player[currentPlayer1].getX() + speed );
              if( k == 1004 && player[currentPlayer1].getY() > screenHeight / 3 )
                   player[currentPlayer1].setY( player[currentPlayer1].getY() - speed );
              if( k == 1005 && player[currentPlayer1].getY() + 120 < screenHeight )
                   player[currentPlayer1].setY( player[currentPlayer1].getY() + speed );
              if( k == 1006 && player[currentPlayer1].getX() > 0 )
                   player[currentPlayer1].setX( player[currentPlayer1].getX() - speed );
              if( k == 100 && player[currentPlayer2].getX() + 20 < screenWidth )
                   player[currentPlayer2].setX( player[currentPlayer2].getX() + speed );
              if( k == 119 && player[currentPlayer2].getY() > screenHeight / 3 )
                   player[currentPlayer2].setY( player[currentPlayer2].getY() - speed );
              if( k == 115 && player[currentPlayer2].getY() + 120 < screenHeight )
                   player[currentPlayer2].setY( player[currentPlayer2].getY() + speed );
              if( k == 97 && player[currentPlayer2].getX() > 0 )
                   player[currentPlayer2].setX( player[currentPlayer2].getX() - speed );
              System.out.println( k );
              repaint();
              return true;
    class Player
         int xPos;
         int yPos;
         int redP;
         int greenP;
         int blueP;
         int redS;
         int greenS;
         int blueS;
         int redH;
         int greenH;
         int blueH;
         int numberInside;
         boolean inside;
         public Player( Graphics g, int x, int y )
              xPos = x;
              yPos = y;
              drawPlayer( g );
         public void setX( int x )
              xPos = x;
         public void setY( int y )
              yPos = y;
         public void setPants( int red, int green, int blue )
              redP = red;
              greenP = green;
              blueP = blue;
         public void setShirt( int red, int green, int blue )
              redS = red;
              greenS = green;
              blueS = blue;
         public void setSkin( int red, int green, int blue )
              redH = red;
              greenH = green;
              blueH = blue;
         public int getX()
              return xPos;
         public int getY()
              return yPos;
         public void drawPlayer( Graphics g )
              g.setColor( new Color( redP, greenP, blueP ) );
              g.fillRect( xPos, yPos, 20, 20 );
              g.setColor( new Color( redS, greenS, blueS ) );
              g.fillRect( xPos, yPos - 20, 20, 20 );
              g.setColor( new Color( redH, greenH, blueH ) );
              g.fillRect( xPos, yPos - 40, 20, 20 );
         public void drawPlayerDown( Graphics g )
              g.setColor( new Color( redH, greenH, blueH ) );
              g.fillRect( xPos, yPos - 40, 20, 20 );
         public void setIsInside( boolean set )
              inside = set;
         public boolean isInside()
              return inside;
         public void setNumInside( int set )
              numberInside = set;
         public int numInside()
              return numberInside;
    class House extends Building
         int bXPos, bYPos, bWidth, bHeight;
         boolean someoneInside = false;
         int numberInside;
         public House( Graphics g, int x, int y, int w, int h )
              super( g, x, y, w, h );
              bXPos = x;
              bYPos = y;
              bWidth = w;
              bHeight = h;
              drawBuilding( g );
         public void drawBuilding( Graphics g )
              drawFoundation( g );
              drawRoof( g, 75, bWidth );
              drawDoor( g );
              drawWindows( g );
         public void drawRoof( Graphics g, int height, int width )
              g.setColor( new Color( 100, 75, 10 ) );
              Polygon roof = new Polygon();
              roof.addPoint( bXPos, bYPos );
              roof.addPoint( bXPos + ( width / 2 ), bYPos - height );
              roof.addPoint( bXPos + width, bYPos );
              g.fillPolygon( roof );
         public void drawDoor( Graphics g )
              g.setColor( new Color( 50, 30, 0 ) );
              g.fillRect( bXPos + ( bWidth / 2 ) - 20, bYPos + ( bHeight ) - 80, 40, 80 );
         public void drawWindows( Graphics g )
              g.setColor( new Color( 200, 175, 35 ) );
              g.fillRect( bXPos + ( bWidth / 2 ) - ( bWidth / 6 ) - 40, bYPos + ( bHeight ) - 80, 40, 40 );
              g.fillRect( bXPos + ( bWidth / 2 ) + ( bWidth / 6 ), bYPos + ( bHeight ) - 80, 40, 40 );
         public void setIsInside( boolean set )
              someoneInside = set;
         public boolean isInside()
              return someoneInside;
         public void setNumInside( int set )
              numberInside = set;
         public int numInside()
              return numberInside;
    class Shop extends Building
         int bXPos, bYPos, bWidth, bHeight;
         public Shop( Graphics g, int x, int y, int w, int h )
              super( g, x, y, w, h );
              bXPos = x;
              bYPos = y;
              bWidth = w;
              bHeight = h;
              drawBuilding( g );     
         public void drawBuilding( Graphics g )
              drawFoundation( g );
              drawWindows( g );
              drawDoor( g );
              drawRoof( g, 20, bWidth );
         public void drawWindows( Graphics g )
              g.setColor( new Color( 200, 175, 35 ) );
              g.fillRect( bXPos + ( bWidth / 2 ) - ( bWidth / 4 ) - 40, bYPos + ( bHeight ) - 80, 40, 40 );
              g.fillRect( bXPos + ( bWidth / 2 ) + ( bWidth / 4 ), bYPos + ( bHeight ) - 80, 40, 40 );
              g.fillRect( bXPos + ( bWidth / 2 ) - ( bWidth / 4 ) - 40, bYPos + 40, 40, 40 );
              g.fillRect( bXPos + ( bWidth / 2 ) + ( bWidth / 4 ), bYPos + 40, 40, 40 );
              g.fillRect( bXPos + ( bWidth / 2 ) - 20, bYPos + 40, 40, 40 );
         public void drawDoor( Graphics g )
              g.setColor( Color.black );
              g.drawString( "SHOP", bXPos + ( bWidth / 2 ) - 15, bYPos + bHeight - 90 );
              g.setColor( new Color( 50, 30, 0 ) );
              g.fillRect( bXPos + ( bWidth / 2 ) - 20, bYPos + ( bHeight ) - 80, 40, 80 );
         public void drawRoof( Graphics g, int height, int width )
              g.setColor( new Color( 100, 75, 10 ) );
              Polygon roof = new Polygon();
              roof.addPoint( bXPos, bYPos );
              roof.addPoint( bXPos + ( width / 2 ), bYPos - height );
              roof.addPoint( bXPos + width, bYPos );
              g.fillPolygon( roof );
    class HouseInside
         int bXPos, bYPos, bWidth, bHeight;
         public HouseInside( Graphics g, int x, int y, int w, int h )
              bXPos = x;
              bYPos = y;
              bWidth = w;
              bHeight = h;
              drawInside( g );          
         public void drawInside( Graphics g )
              g.setColor( new Color( 150, 150, 50 ) );
              g.fillRect( bXPos, bYPos, bWidth, bHeight );
              g.setColor( new Color( 100, 100, 100 ));
              g.fillRect( bXPos, bYPos, (int)(bWidth / 2.5), bHeight );
              g.fillRect( bXPos + bWidth - (int)(bWidth / 2.5), bYPos, (int)(bWidth / 2.5), bHeight );
    class Building
         int bXPos, bYPos, bWidth, bHeight;
         public Building( Graphics g, int x, int y, int w, int h )
              bXPos = x;
              bYPos = y;
              bWidth = w;
              bHeight = h;
              drawFoundation( g );
         public void drawFoundation( Graphics g )
              g.setColor( new Color( 115, 100, 25 ) );
              g.fillRect( bXPos, bYPos, bWidth, bHeight );
         public int getX()
              return bXPos;
         public int getY()
              return bYPos;
         public int getWidth()
              return bWidth;
         public int getHeight()
              return bHeight;
    class Tree
         int xPos, yPos;
         public Tree( Graphics g, int x, int y )
              xPos = x;
              yPos = y;
              drawTree( g );
         public void drawTree( Graphics g )
              g.setColor( new Color( 100, 50, 20 ) );
              g.fillRect( xPos - 15, yPos, 30, 100 );
              g.setColor( new Color( 0, 100, 10 ) );
              g.fillRect( xPos - 60, yPos - 80, 120, 40 );
              g.fillRect( xPos - 20, yPos - 120, 40, 120 );
              g.fillRect( xPos - 40, yPos - 100, 80, 80 );
    }

  • Booklet Gutter Issue - When I print a booklet at 11x17, it causes a large white line down the center. But, when I try the same thing at 8.5x11 it prints side by side as it should. Help?

    I have a 36 page booklet (each page is 8x5.5in). I have exported the booklet from InDesign as Pages. In Acrobat, when I select Print Booklet and 11x17 paper, it created a large white gutter down the center and the pages do not back up to each other.
    I tried the same thing with 8.5x11 paper and they pages backed up to each other correctly with no white space down the center.
    I tried again at 11x17 (size needed to print my booklet full size), and it's still causing the large white gutter. It's nearly half an inch or larger.
    Help is VERY appreciated!

    " Hello Jeff. Here at Oki Data, we do not support programming.  I would recommend contacting Adobe for further assistance. You can also browse their website at http://www.adobe.com/products/postscript/.

  • Two white lines down Iphone 5 screen

    I dropped my Iphone 6 months ago and cracked the top of the screen. I didn't get it repaired as phone was working as normal until two days ago whn I noticed two white vertical lines down my screen and the phone started playing up (going onto stuff I have not pressed). Is there any reason for this or any solutions?

    If it's under warranty and hasn't been physically damaged, jailbroken, illegally unlocked, etc. They will replace it with an identical phone.

  • On final cut pro x I keep trying to export but get the -50 error (something about quicktime)

    I've read the other threads and deleted all my render files, stopped background rendering, yet I still can't share my video. Any reason why I can't share?

    I was 't clear that I was talking a version of FcP. Even
    If some people still encounter iSsues,
    I still think Italy's sense to update.
    Russ

  • Firefox not loading correctly, getting black and white lines and boxes onother network comp. it loads ok

    Firefox loaded on laptop along with another computer on home comutor - on mine when firefox is selected it loads with black lines and boxes along with all titles it will allow me to use the programme. When I load the same programme on second computer it loads correctly.
    This has only occurred this week.
    does the resolution setting affect this?

    Again, my original post specifically asks what else I can check for in prefs.js. I don't know what to look for. I suspect that something has hung-around somewhere, but don't know what to look for in the prefs file to detect it. No malware or anti-virus software detects anything other than the prefs.js file itself. Safe mode fixes the problem. So obviously something is starting up with FF in normal mode which is causing this, but no clue where/what to look for at this point.

  • White Line Down Middle of iPod Classic Screen

    I have recently noticed a thin white vertical line on the right side of my iPod classic screen.  It doesn't affect the iPod's function at the moment but I'm worried that it is signaling a potential technicial problem.  I have tried all the initial troubleshooting steps suggested but am leery about uninstalling and reinstalling iTunes. 

    Removing and re-installing iTunes won't do any good as it does not pertain to the iPod in any way.  If none of the 5 R's of troubleshooting helped, we can definitely say that it is a hardware issue with the iPod's LCD display.
    http://www.apple.com/support/ipod/five_rs/
    Sometimes it helps to let the battery fully drain and then redoing the 5 R's.
    B-rock

  • HT201263 hi i have an iphone 4 im fed up with it it keeps freezing and blue screen i have restarted it every other day for 2 wks now even had it in a phone shop now the screen is blue with a white line down the middle and will not let me switch off after

    my iphone 4 has been acting up for 2 wks now every other day it keeps freezing sometimes i can wake it by pressing the 2 buttons tog ive restored it restarted it had it in a shop were they got it back on, saying it was the soft ware, but the same day i got it back it froze again, now the screen is blue once again and it wont let me switch it off n sort it with pressing both buttons and the computer isnt finding it, im fed up i will never have another iphone any ideas anyone please

    Hi @imobl,
    You sound like an Apple support guy who hasn't been able to answer my questions.
    To respond to some of the points you made,
    - I did not ignore Ocean20's suggestion. If you has read my post, you would have known that I took my phone to the apple service centre where they tried this restore on THEIR machines. I am assuming that Apple guys know how not to block iTunes. So I actually do not understand your point about me trying the hosts file changes on my machine. Do you not believe that apple tested this issue with the correct settings?
    - you also give a flawed logic of why the issue is a hardware issue. You mentioned that If I thought that the issue was with the software, i should try a restore and getting it to work. The problem is that my error (23), and many others comes up when the restore fails. And you would be astonished to know that not all errors are hardware errors. Sometimes even software errors prevent restores. Funnily enough Apple itself mention that 'in rare cases, error 23 could be hardware related'.
    - all Apple has done so far is replicate the issue. I don not know how anyone can conclude that the issue is a hardware issue.
    And by the way, I am not certain that this is a software bug. Again if you read my Posts, you will notice I only want a confirmation,/proof that the issue is hardware related as they mention..
    Please refrain do. Responding if there is nothing to add.

  • White Line down screen HELP?!

    Ok out of the blue a white pix elated line that dims and brightens running vertically right down the middle of my screen appeared last night and after many restarts has not gone away. Now, the line spans across the screen so its not just in a browser or anything like that in fact i can type behind it and move windows around it to see whats under this line. At times it is completely solid white other times it fades in and out almost disaprearing. Someone please tell me my whole screen is not going soon

    Hi starsky
    have a look at this thread, long though it may be. it should answer your questions, and yes I've been through this too and it has worked out.
    M.
    http://discussions.apple.com/message.jspa?messageID=8427569#8427569

  • I have lines from the top on the screen to the bottom the right one acts like the cursor now I have a transparent white line down the center of the screen about 1/8 inch thick.  Anyone know what is causing this?

    I have lines from the top of the screen to the bottom 4 lines.  They are the size of the cursor and the one on the right acts like the cursor.  Blinks.  The other day I brought compuer up and I have a white transparent line right down the center of the screen about 1/8 inch thick.  Does anyone know what is cauing this?  Also computer is running slow.

    Post a screen shot if you can by pressing cmd+shift+4 for only a certain section or cmd+shift+3 for a full screen shot.

  • I am getting horizontal white lines one inch apart when I print an Ai file

    I am getting horizontal white lines one inch apart when I print an Ai file

    *White lines 1" apart showing up on my printouts*~
    It is a NEW Epson 1430. However, I have horizontal thin white lines across my prints. (13x19in Paper) I've cleaned the heads, ran a test print, realigned and then reprinted - I keep getting the same white lines in exactly the same places.
    I’m printing an AI file in Illustrator and the lines don't show up on my screen. Is there something wrong with the data? I am going to do more experiments to try and identify exactly what conditions cause this problem.
    Thank you for your help!

Maybe you are looking for

  • How can i draw a outline around an object in a picture

    I am trying to draw around an object in a picture to show the different values and defined edges.  Can anyone help?

  • EJB with ms SQL server 2000

    how to connect to sqlserver 2000 from ejb on sun application server

  • Incredibly SLOW picture import!!!

    Hi Everyone! I'm running a Macbook OSX 10.4.11. I recently bought a new camera (Panasonic lumix DMC-FS20) which i bought specifically because it's know to be compatible with Macs (and iphoto). But, the import speed for both iphoto and just transferri

  • Trimming decimal places on a textfield

    I have a program that calculates a double and puts it into a textfield. The problem is when i calculate it it reads all decimal places and i cant see the first few numbers. How can i trim it so that it cuts off after say 3 decimal places, or just at

  • Can i downgarde iOS 5..1.1 on the iPhone 4s ?

    i have iphone 4s and ios 6.0.1 i wanna downgarde the software because i wanna jailbreak my iphone so i wanna downgard the iphone should downgarde its?