ByteArray.uncompress() problem

Hello
Does the uncompress method of ByteArray only supports level 3
compressed streams? Because I have a valid zlib compressed file but
compressed in level 2, and Flash always throws me the 2058 error
message.
I've also tried using the DefaultCompressionAlgorithm class
for AIR with its two compression methods, but with no success.
Doing some quick tests with python using the same file gets
uncompressed with no problems.

I am having problems with uncompress as well. See my
code.

Similar Messages

  • AS API(ByteArray.uncompress) doesn't work as expected in flash player 15.0.0.189 .

    This API is work well in flash player 15.0.0.167 and other previous player version.
    In the flash player 15.0.0.189 debug version, it will alert Error message:
    RangeError: Error #1506: 指定的范围无效。
      at flash.utils::ByteArray/_uncompress()
      at flash.utils::ByteArray/uncompress()
      at ?/bytesLen()
      at ?/init()
      at flash.display::DisplayObjectContainer/addChildAt()
      at PreLoader/onComplete()
    The same situation also occurred in ActiveX version, plugin version and Chrome PPAPI version.

    It's possible that this is the result of a security change.
    Please file a bug at http://bugbase.adobe.com/.  Include a SWF that demonstrates the example so that we can debug it.
    If you post the bug number here, I will get a notification and will ensure that it gets routed to the right engineer.
    Thanks!

  • Bytearray uncompress filestream wirtebytes error

    Hi,
    I'm developing an app for iPad in which I'm trying to load a zip file from a remote url, save that zip file on device and then trying to unzip it.
    It works fine both on laptop(while testing as AIR app) and also on the device(iPad) if zip file size is around 20 - 25MB, with it's internal file being around 140 - 170MB. But if the zip file size is larger (beyond 50MB) then it crashes while uncompressing the zip file on the device. It still works fine on laptop though.
    I'm compiling the code with Flex 4.6 overlayed on AIR 3.6
    iPad iOS version is 6.0.1
    Using following code :
    private function unzipFile():void
                progress = progress + fileName +' unzipFile started\n';
                saveLog();
                var zStream:FileStream = new FileStream();
                var bytes:ByteArray = new ByteArray();
                var fileName:String = new String();
                var flNameLength:uint;
                var xfldLength:uint;
                var offset:uint;
                var compSize:uint;
                var uncompSize:uint;
                var compMethod:int;
                var signature:int;
                progress = progress + fileName +'before zStream.open\n';
                saveLog();
                zStream.open(fileLocal, FileMode.READ);
                progress = progress + fileName +'after zStream.open\n';
                saveLog();
                bytes.endian = Endian.LITTLE_ENDIAN; 
                while (zStream.position < fileLocal.size)
                {  progress = progress + fileName +'before zStream.readBytesbytes, 0, 30\n';
                    saveLog();
                    zStream.readBytes(bytes, 0, 30);
                    progress = progress + fileName +'after zStream.readBytesbytes, 0, 30\n';
                    saveLog();
                    bytes.position = 0;
                    signature = bytes.readInt();
                    if (signature != 0x04034b50)
                        break;
                    bytes.position = 8;
                    compMethod = bytes.readByte();
                    offset = 0;
                    bytes.position = 26;
                    flNameLength = bytes.readShort();   
                    offset += flNameLength;    
                    bytes.position = 28;    
                    xfldLength = bytes.readShort();
                    offset += xfldLength;   
                    zStream.readBytes(bytes, 30, offset);
                    bytes.position = 30;
                    fileName = bytes.readUTFBytes(flNameLength); 
                    bytes.position = 18;
                    compSize = bytes.readUnsignedInt(); 
                    bytes.position = 22;  
                    uncompSize = bytes.readUnsignedInt();
                    progress = progress + fileName +'before zStream.readBytes(bytes, 0, compSize)\n';
                    saveLog();
                    zStream.readBytes(bytes, 0, compSize);
                    progress = progress + fileName +'after zStream.readBytes(bytes, 0, compSize)\n';
                    saveLog();
                    if (compMethod == 8)
                        try
                            progress = progress + fileName +' before bytes.uncompress\n';
                            saveLog();
                            bytes.uncompress(CompressionAlgorithm.DEFLATE);
                            //bytes.uncompress(CompressionAlgorithm.LZMA);
                            progress = progress + fileName +' after bytes.uncompress\n';
                            saveLog();
                            //outFile(fileName, bytes); 
                        catch(error:Error)
                            progress = progress + fileName +' bytes.uncompress catch\n';
                            saveLog();
                  //write bytes to a file locally here
    It fails on this line:
    bytes.uncompress(CompressionAlgorithm.DEFLATE);
    and gets inside catch block.
    To avoid this problem, I also tried to load the file which was there in the zip file, directly using remote url(file size and download time will be more), but in this case, after loading the file, reading the bytearray data of it, when I try to write this bytearray to a filestream, it crashes again!
    Just wanted to know if there is any file size limit on mobile\iOS devices, while unzipping a file and while writing bytearray data to a filesystem or am I doing something wrong here?
    Kindly help, as I'm stuck with this and cannot really proceed on this project using Flex AIR if this doesn't work.
    -Deepak

    Hi Brent,
    Yes, for unzipping, we really have to split the zip files, as uncompress doesn't work for larger zip files(it crashes on device).
    Since my file size would range from 200-400MB, for now, I'm planning to load the raw file directly(running out of time to deliver it :| ). This too was failing, when i tried to readByes\writeBytes, after loading the file completely(since it runs out of memory). But I came across a solution right here:
    http://stackoverflow.com/questions/14583247/air-as3-download-large-file-trough-ipad-applic ation
    It basically writes data to the disk, as and when data gets downloaded in chunks. I felt it was a great idea! Apparantly, there won't be any memory issues too with that approach
    And yes, as you have mentioned future plan would be to load and unzip zip files.
    Thanks Brent, that helped too

  • GZip uncompression problem

    Hi,
    I use java.util.zip package to compress and uncompress the gzip files. Code works fine but I have a problem as follows;
    I get a tar file with tftp from the ASAM and in this tar file there exists a gzip file. My program is not able to uncompress this file. However, I am able to decompress this file with GNU zip (gunzip filename) and compress it again (gzip filename). The last file that I compressed can be handled by my program.
    The interesting thing is the size of the file decreases when I compress it with GNU zip. I have no idea about the compression used at the ASAM side but it is declared as GNU zip.
    Is there anyone have any idea about the problem?
    Thanks

    Have you tried GZIPInputStream? If so, I think Apache or maybe Gnu have a zip file class set that should have no problem opening the file. I ran into the same problem at one time. I didn't have time to follow up because I switched groups at work.

  • ByteArray.uncompress() Error

    I'm attempting to compress a string on the server and uncompress it in Flex.  I'm getting a generic error when calling uncompress() and I assume it is because I'm encoding the string incorrectly.  I'm using C# on the server, and Flex 2 on the client (so only zlib compression).
    Does anyone have a code example on the server of this working?

    Hi Brent,
    Yes, for unzipping, we really have to split the zip files, as uncompress doesn't work for larger zip files(it crashes on device).
    Since my file size would range from 200-400MB, for now, I'm planning to load the raw file directly(running out of time to deliver it :| ). This too was failing, when i tried to readByes\writeBytes, after loading the file completely(since it runs out of memory). But I came across a solution right here:
    http://stackoverflow.com/questions/14583247/air-as3-download-large-file-trough-ipad-applic ation
    It basically writes data to the disk, as and when data gets downloaded in chunks. I felt it was a great idea! Apparantly, there won't be any memory issues too with that approach
    And yes, as you have mentioned future plan would be to load and unzip zip files.
    Thanks Brent, that helped too

  • [locked] adobe flash player plugin not working in FFox 3.6.8

      I run Windows XP Home fully auto-updated, have IE8+ latest FFox browser 3.6.8, and have installed (as Admin) your Shockwave Flash Player
    and plugin Ver. 10.1.53.64.  FFox Plugin Check says "Up to date".  At least 10 times per day, I get a Javascript alert of "script error" when I try
    to view Flash Content. I have thoroughly researched this prob on your site, but find no answer to my prob, hence this thread.
      Please tell me:
    1. How to fix this, and
    2. Why I should not COMPLETELY block ALL Flash content with freeware tools.
      It would be a pity, because I have 5 MILLION hits on my YouTube (and other .flv/swf- hosted vidsites)....  but I have no option now but to consider
    your latest update unusable and incompatible with my Firefox-secured sys. I did sucessfully dodge your slyly unethical attempt to default-install
      McAfee junkware, as I am responsible for securing quite a few computers in my law firm. I use and regularly update & scan w/:
      AVG Antivirus, Spybot S&D+Teatimer resident, and the free Zonealarm firewall. I have updated my Java and Javascriptscript and always keep
      Javascript turned on. I also run SpywareBlaster and occasional free Kaspersky, Panda, and F-secure Virusscans. I am virus/spyware free.
      I wrote my first line of code in 1968.
      The only problem I and my users have is with YOUR Flash product updates/plugins in FFox,  crashing and generating  a Javascript errmsg.
       You have even completely locke up my computer, which NEVER happens to me unless gates does it. I fear I have fallen for the old trick of
       getting v. 1 of an existing ware, to be patched later, in the evil M$oft way.  If your products only work with M$oft OS's and browsers,
       you are violating the well-known Google Success maxim of "don't be evil!"  And the common-sense rule that content-delivery Netware
       should be Browser- independent. I know you code mostly for intrusive-adware, and have allowed for that. But I am getting VERY tired of seeing
       a Javascrpt errmsg and the words on my FFox browser "The Adobe plug-in has crashed. Send crash report"- which I always do.
       I know Open Source wares are pressing you hard, but yes, the .PDF Reader WAS designed to be the first common format other than ASCII.
       You are falling far short of user-acceptance comapared to days past. Your products are WAY overpriced bloatware. PLEASE don't be the
        Bill Gates of served-out pictorial content, where "it's ALL proprietary". That will kill your sales and inspire freeware-writers more than you can
        believe.  If you fail to fix this bug speedily in your freeware, you will suffer the Fate of Vista. I NEVER buy into a ver.1.0, but you have forced me to,
       and it doesn't work.  Fix it- put out a hotfix or patch, or the WHOLE OPEN SOURCE/SHAREWARE Community of Users like me will not even
       CONSIDER buying your products.  I write for your benefit, not mine. .PDF and Word/.wmv files are NEEDED by users. DON'T BE EVIL!
        HELP me! I've already installed OpenOffice and my next sys's OS will be a flavor of UNIX..  You do business in the WRONG way for 2010-users!
        Or are you copying the outdated, universally hated-by-pros M$oft business-model? In less than a decade of Internet time, there won't even BE a
        Microsoft- except for those who are complete Net-Noobs and can be victimized easily. IE8 is a constantly-patched virus magnet. Please
        DO NOT go down that road.....for your own good.
        The De-Crasher

         Uhhh, whatever, ednob. Take offense at whatever you want to- it's your constitutional Right.
        Yes, it's pretty hard to make all these deep-rooted proggies work together. But I think that's the Coder's job to anticipate, not mine.
         All the secuityware I use is pretty popular.  AND-
         I'm too busy in the courtroom to spend much time as a TOTAL what's-new $product$ nerd.
        I JUST EXPECT MY SYS TO WORK. AND IT IS OBVIOUS THAT ADOBE PLUGIN UPDATE TRIGGERED THE SEVERE PROBLEM
         This answer is that I'd just like my sys to be able to access my weather site Intellicast.com , which my NEW! BETTER! Flash 10
         installation just froze hands-down in the best, latest, most secure browser- FFox. For 15 minutes. That's all I have for you.
          Adios!    You can go away now.  I billmy tim at $200/hr and have lectured by invitation to NASA, DECUS and a whole lot of other folks.
         Been using the Net since 1991- when you HAD to learn UNIX.
        =======================================================================================
        For the man who really tried to HELP me, Syncwulf, here is some error-data I could capture- even with a frozen browser
        I had to kill with Task Manager.
         The message the INTELLICAST SITE reported to me was
       ADOBE FLASH ERROR V. 10
      Error: Error #2058: There was an error decompressing the data.
        at flash.utils::ByteArray/_uncompress()
        at flash.utils::ByteArray/uncompress()
        at MethodInfo-1()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
      And naturally it froze before I could even send off a Crash Report to help Adobe.
      Too bad for that other window I had open to a client, eh? Had to end the whole FFox run, all tabs.
      All help appreciated, but all snotty lectures from guys who were wetting their diapers when I was using
      Princeton's IBM 360/91 in 1969 to program in ALGOL 60 will be ignored.
      Thanks, SYNCWULF! Your reply arrived at the speed of electrons thru copper = 9 inches per nanosecond.
      - The DeCrasher

  • Error 2032 in communication between Flex Client and WCF

    Hi All,
    I'm trying to establish communication between Flex Client
    and WCF service.
    WCF service accepts gZip compressed data and returns gZip
    compressed results.
    So I used Flex ByteArray.compress() and
    ByteArray.uncompress() for this purpose. However, it throws error
    2032.
    The gZip compression/decompression uses MemoryStream class in
    C#. Based on my previous experience, memory stream communication
    between Flex and C# gives erro 2032.
    Is there a work around for this?
    Thanks,
    Vishal

    I read some thread in the forum, and found somebody had the similar problem with me. Just want to know how to settle this problem.
    In the client/server program. Client is a JAVA program and Server a
    VC++ program. The connection works, and the problem appears after some time. The Client sends a lots of requests to Serverm, the server seems receive nothing. But at the same time, the server is able to send messages to Client. The Client also can get the messages and handle them. Don't understand why there this problem and why it appears when it wants.
    The client is a Win2k platorm with JDK1.3.1 and the server is also a Win2K platform with VC++ 6.0.
    In the Client, using:
    inputFromServer = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    outputToServer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);
    Hope can get your help.

  • 8/7/2012 - Flash Player 11.4 Beta 2

    This beta release provides access to the Flash Player 11.4 runtime for Windows and Mac OS desktop environments. The key features and benefits of Flash Player 11.4 are:
    Concurrency (ActionScript Workers) — This feature enable developers to off-load certain tasks like high-latency operations and long-running computations to “workers”. These background workers run concurrently in order to leverage more machine resources and avoid things like UI freezes and allow content to be more responsive.
    Stage3D constrained mode — A new parameter to Context3D has been introduced called "constrained profile".  Constrained profile allows Stage3D content to run hardware accelerated on more hardware, especially the Intel GMA chipsets. The Starling framework has been updated to be constrained mode ready.
    StageVideo.attachCamera — Provides webcam support for StageVideo. This allows developers to leverage GPU acceleration to render webcam video streams.
    Camera.copyToByteArray/Camera.copyToVector — Allow efficient copy of the video frames pixels to an existing ByteArray or Vector.
    LZMA support for ByteArray — In addition to zlib compression of ByteArray, we are introducing an additional compression type based on LZMA to compress data inside a ByteArray through ByteArray.compress() and ByteArray.uncompress().
    In addition to new features, we continue to address stability and performance issues with Flash Player.  We would like to recommend that everyone that installs the beta releases opts into the automatic updates.  We will be delivering regular updates via the update service during the week, some of these releases will be exclusive to this service.  Please see this post for more details:  8/6/2012 - Flash Player 11.4 Beta Updates
    You can find instructions for getting started with this release here: Flash Player 11.4 Labs Page
    Finally, we encourage you to let us know what you think over on our 11.4 Labs forums

    This beta release provides access to the Flash Player 11.4 runtime for Windows and Mac OS desktop environments. The key features and benefits of Flash Player 11.4 are:
    Concurrency (ActionScript Workers) — This feature enable developers to off-load certain tasks like high-latency operations and long-running computations to “workers”. These background workers run concurrently in order to leverage more machine resources and avoid things like UI freezes and allow content to be more responsive.
    Stage3D constrained mode — A new parameter to Context3D has been introduced called "constrained profile".  Constrained profile allows Stage3D content to run hardware accelerated on more hardware, especially the Intel GMA chipsets. The Starling framework has been updated to be constrained mode ready.
    StageVideo.attachCamera — Provides webcam support for StageVideo. This allows developers to leverage GPU acceleration to render webcam video streams.
    Camera.copyToByteArray/Camera.copyToVector — Allow efficient copy of the video frames pixels to an existing ByteArray or Vector.
    LZMA support for ByteArray — In addition to zlib compression of ByteArray, we are introducing an additional compression type based on LZMA to compress data inside a ByteArray through ByteArray.compress() and ByteArray.uncompress().
    In addition to new features, we continue to address stability and performance issues with Flash Player.  We would like to recommend that everyone that installs the beta releases opts into the automatic updates.  We will be delivering regular updates via the update service during the week, some of these releases will be exclusive to this service.  Please see this post for more details:  8/6/2012 - Flash Player 11.4 Beta Updates
    You can find instructions for getting started with this release here: Flash Player 11.4 Labs Page
    Finally, we encourage you to let us know what you think over on our 11.4 Labs forums

  • Update says, FP 10 ax debug . Is this correct?

    Hi,
    I went to the adobe site to update my flashplayer
    to the 10.1.82. It installed that but the file on my dsktop says -FP 10 ax debug-  Is this right? Is that the update name?
    I dont know alot about this but im learning quickly. my flashplayer has been not letting my daughter in to her virtual pet site and i
    thought maybe the flash needed updated, which it did but i dont know if i downloaded the right thing. Any help would be soo great!
    FYI- my computer is on dial up and it takes sosososo long to download and run anything. Also I have Windows xp 2000,
    IE 7, 

    Does anyone know what this ax debug is or what it does? Now when i got to the online game an "action script error has occurred" comes up.
    What is that and how do i fix it? it says Error 2058 Error decompressing the data 
    at flash.util: : ByteArray/_uncompress
    at flash.util: : ByteArray/uncompress
    at com.mindcandy.utils.colouriser: : Colouriser/prepare Colourise
    at com.mindcandy.utils.colouriser: : Colouriser/colourise
    at com.mindcandy.utils.colouriser: : Colouriser/handleswfloadcomplete

  • Problems with large frame uncompressed AVI files in QT 7 player

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

    I have just recently gone from QT Pro 6.5.2 to QT Pro 7, mainly because of the HD support.
    I have a dual boot system with QT 7 on Windows 2000, and QT 6 on Windows 98SE.
    I am having problems playing uncompressed AVI files in the QT 7 player, apparently if the frame size is large (in the example case 688 x 516).
    Sometimes I just get "error 108 unknown error" pop up when I try to load the file. Sometimes the file loads but will not play except in short bursts of movement every now and again as it moves along the timeline. Sometimes the file plays, but with one or more broad black lines across the image!
    All the problem files play perfectly in QT 6.5.2, but will not play in QT 7, which should surely play them better, not worse!
    Can anyone make any suggestion as to what's happening?
    I've uninstalled and reinstalled QT 7, which made no difference. I'm sure I don't need any extra codecs, as QT has always played RAW AVIs without anything extra before.
    Thanks in anticipation, Dave.

  • Digital noise using Apple 10-bit uncompressed codec for NTSC, BIG PROBLEM!

    I hope someone from Apple or the Shake team can shed some light on this problem we're having so we can take the appropriate corrective action ASAP to meet our strict deadlines on this current project.
    We're compositing all the EFX (over 1000 EXF shots) for a massive video game project that needs to be delivered to the client by the end of May. Let me preface the following comments by saying that overall, we're very pleased with Shake and the end results we're getting, but one problem in particular has us very worried about making our deadline:
    The project is entirely bluescreen with CGI plates, shot on anamorphic Digibeta and captured into FCP as uncompressed 10 bit. 4:2:2 through a Blackmagic HD Extreme card (via SDI).
    All the 4:2:2 material exhibits (for lack of a better desciption) digital "noise" that runs along the right-hand edge of the video, with frequent drop-out "looking" sparkles that can appear anywhere in the video image. These artifacts ONLY appear when the video clips are imported into Shake, and rendered out of Shake. They play perfectly fine in FCP and QT player.
    If we force the FILE-IN node to 8 bit, the problem goes away, but keying suffers - so this is not an option.
    The problem ONLY occurs on our Intel Mac's, not on our older G5's. The reason we invested in the Mac Pro's for this project was to reap the performance boost we desired in order to get the project out the door by our deadline, plus the G5's are busy offlining upcoming episodes - so turning the compositing over to the G5's is also not an option.
    We're already well down the road, and while we realize that at Shake's current price-point it seems silly to complain at all, we gladly would have paid more for a compositing tool if we knew we were going to run into a situation like this. Unforunately, our initial evaluation of Shake was done on our G5's which don't suffer from this issue.
    If anyone from has any recommendation for an efficient way to solve or work around this issue, we'd love to hear from you.
    Best regards,
    Michael Buday

    Not sure the exact answer, but some options to try:
    1) have you tried converting the clips to image
    sequences? Perhaps it's a QuickTime error.
    2) How about using 2 FileIns - one at 10 bit to
    generate the keys and one at 8 bit for the fill?
    Patrick
    <img</div>
    Hello Patrick and thanks for your suggestion:
    We're going to experiment with different codecs and image sequences this week to see what happens.
    RE: using different FILEIN's for key/fill, is something I hadn't thought of but unfortunately the 10bit FILEIN would still be affected by the noise which would in turn affect the alpha channel created by Keylight or Primatte.
    I'll let you know what we find out as things progress.
    Again, thanks.
    Michael
    G5 Dual 1.8 GHZ   Mac OS X (10.4.3)   FCP 5.03, STO 1.01

  • Problem while sending ByteArray from as3 client through netconnection call method to red5 server

    Hi to all,
    I'm trying to send from as3 client a ByteArray of more or less 3 MB using NetConnection's call method but I am unable to do it, cause I get a timeout on the server and the client get disconnected (I have also increased the timeout limit in red5.properties but nothing changed). If I try to send a smaller ByteArray I don't have problem, even if the trasfer is really slow.
    Any solution?
    thanks

    put it in code tags so it's readable
    CLIENT
    public void sendLoginData(String data)
    int c=0;
    byte loginData[]=new byte[data.length()];
    loginData=data.getBytes();
    try
    out.write(loginData);
    System.out.println(client.isClosed());
    // here i want 2 receive the 1 byte data whch i hv sent frm server's RUN() method
    //following code is not working :( it gets hanged
    while((c=in.read())!=-1)
    System.out.print(c);
    System.out.print("hi");
    catch(Exception e)
    System.out.println("Caught:" + e);
    finally
    out.close();
    }SERVER
    public void run()
    boolean flag;
    try
    flag=verifyLoginData(ID); //this function verifies the login data by connecting to DB
    System.out.println(flag);
    if(flag==true)
    //send login valid
    bos.write(1);
    bos.close();
    else
    //send login invalid
    bos.write(0);
    bos.close();
    catch(Exception e)
    System.out.println("caught " + e);
    }

  • Problem when uncompressing using GZIPInputStream

    i uploaded a 2.7MB gzipped byte array into MySQL database. The original file size before compressing was 9.3MB. When I retrieve the file from the database, everything works fine, but after uncompressing it using GZIP, it's only 9.2MB. I compared both the files, both look same in the beginning, but the last bytes are missing in the retrieved file. Here is my code.Can somebody give me some insight?
    byte[] bytes=getFile();
    ByteArrayInputStream bStream=new ByteArrayInputStream(bytes);
    GZIPInputStream iStream=new GZIPInputStream(bStream);
    File file = new File("/home/antn/file/testfile.cel");
    OutputStream oStream=new FileOutputStream(file);
    byte [] buf = new byte[512];
    int len = 0;
    while ( (len=iStream.read(buf))!= -1 )
    oStream.write(buf,0,len);
    iStream.close();
    oStream.close();
    bStream.close();
    Also I am getting this exception whenever I run the program.
    Exception in thread "main" java.io.EOFException: Unexpected end of ZLIB input stream
         at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:216)
         at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:134)
         at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:87)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
    at service.RetrieveFile.main(RetrieveFile.java:93)

    Hey guys,
    Thanks for your help. The problem was in writing to the database. Eventhough I closed all the input and output streams, I didn't flush the output stream and close it immediately. So now its working and thanks again for the great help.

  • Uncompressed 8-bit Preset problems

    Hi,
    I'm trying to solve a jaggy text problem by creating a new uncompressed 8-bit sequence (which I've never used before).
    I try using the preset for Uncompressed 8-bit and click OK... but then I get the following message:
    "Video Compressor Uncompressed 8-bit 4:2:2 was not found. Please check that the hardware is present and enabled for this compressor. Setting the video to Animation."
    I'm not sure what this means. Do I need a better Video Card? (My friend has FCP 5 on his old 867MHz Powerbook and it works fine on that... so I can't see how my dual 1 GHz doesn't have the right hardware...).
    Please advise if you have encountered this error...
    Thanks.
    G

    The file... it's not a file but an edited sequence... I "captured" it using firewire DV preset... miniDV consumer camera.
    Edited the whole show into a 30 second sequence.
    Was trying to put superimposed title graphics which were "jaggy"
    Someone suggested creating an uncompressed sequence and then cutting in the DV sequence and graphics into it...
    But I couldn't create the uncompressed sequence.
    I tried creating a brand new project using the uncompressed preset... and got the same error message.
    G

  • Problem exporting uncompress AVI

    Problem exporting uncompress AVI. The output file will have in-between frames that appear like this:
    Help!

    Thanks for response! It's not the player's problem (it's mpc btw), I import it into Premiere for post editing and it's disaster to see the failed rendering.
    Mmm need time/Everest to find out the system info. Generally render setting is just straightforward AVI lossless/best quality with no codec assigned.

Maybe you are looking for

  • Factory unlocked GSM phone - is there any way to make this work?

    Hi, I just bought a random off-brand phone from Amazon, not realizing there was a difference between GSM and CDMA.  I know, I know.  Anyway, I have my Verizon SIM card and the phone is working fine on wifi, but no dice in activating my Verizon accoun

  • Error while releasing document.

    hi to all, while releasing document through vf02 error is coming "tax code does not appear in any g/l account" i have made a new tax code and copied condition type jlst and created new condition type.respective gl is also assigned in ob40.still error

  • Web application processing terminated

    Hi Fellow SDNers, My user is trying to execute a report from a portal. He is getting the below error while executing the report: Web application processing terminated Diagnosis The system had to terminate processing of the Web application. The reason

  • SIII S3 How do I send a long text message conversation to my email account?

    I have a need to put my text message over the course of the past 4 months into an email to give to my attorney. How do I tell my phone to send me the conversation? I do not want to copy each piece and mail it as it is a discussion over over 4 months

  • Hardware test question re:FCP4.5 on 10.4.3

    Upgraded to 10.4.3 - QT 7.0.3 running FCP4.5 In DV25 sequence, loaded a few clips on single layer [video 1] the time line (plenty of handle, all clips) applied a transition between ALL clips, dissolve. On a NTSC monitor. Safe RT - Playback HIGH - Out