Trying to UNZIP SEG1  file format

Hello there!
I am trying to unzip a SEG1 video file format. Everything I've seen shows that StuffIt will work but I've had no luck. Any ideas?

Might give a try with Unarchiver...
http://www.apple.com/downloads/macosx/systemdiskutilities/theunarchiver.html

Similar Messages

  • Not in GZIP format error while trying to unzip the file

    I'm using GZIPInputStream in order to read data from zipped file.
    It worked perfectly from command line. I have to execute the same code from crontab and it gave me the exception:
    java.io.IOException: Not in GZIP format
    It tries to check the GZIP_MAGIC number and for some reason failed.
    The stack trace I'm getting points to GZIPInputStream constructor.
    GZIPInputStream input = new GZIPInputStream( new FileInputStream( fileName));
    Any help will be highly appreciated.
    Thanks,
    Arnold

    This may be a little late for you, but I am having the same problem. I am using an encryption package as well. I created input and output streams to wrap my encryption package. (javax.?? has something similar)
    Anyway, my algorithm goes: data -> gzip -> encrypt --------- ->decrypt -> gzip ->data
    If I used encryption without the gzip everything works fine, and if I use gzip without the encryption it works fine as well. But if I use them in conjuction, bad thing happen.
    I copied versions of the GZIPInput and output stream classes from java.util.zip and made my own so I could put in debug code. Then I saw what was happening. GZIP writes a header of 8b1f. It does this by writing a first to 1f as a byte (this is 31 in decimal) and then the 8b (this is 139 unsigned byte or -117 signed byte).
    My debug code shows that it writes 31,-117 to the stream, but reads 31,139 when I don't use encryption and 31,-117 when I do. Another strange thing about this, though, is that everywhere I have debug code, this is the only byte that prints out unsigned in my debug messages... When encryption is turned on this same debug message prints -117.
    I have no idea why this is happening. To test things some more, I changed my copy of the gzipinputstream to compare this header value with the GZIP_MAGIC number (35615) and with -29921. Now everything works perfectly. There has to be a better solution for this, but I don't know what it is yet.
    GZIP_MAGIC is 8b1f sent as two bytes 1f and then 8b, and then shifting the 8b.
    -117, using the Integer.toString(-117,16), gives a hex of -75. Using the same methodology as above, we can get -751f which is -29921.
    The header check is essentially:
    if ((int)readUByte(in) << 8) | (int)readUByte(in) != GZIP_MAGIC)
    your screwed
    So change this store the value in a variable and compare it to GZIP_MAGIC and -29921 and your problem will disappear.
    I am not sure what they were thinking. readUByte is a simple read. There is nothing unsigned about it. There is probably some casting somewhere along here that is causing the error, but nothing I am doing seem incorrect.
    Hope this helps. Actually, I hope you have solved your problem by now, but if not,... If you have any insights, I would appreciate hearing them.

  • Unable to unzip a file.

    Dear All,
    I was trying to unzip a file which is in the format gz. I used the command gunzip <filename> and gunzip -a <filename> (tried in ASCII format also). But it is giving an error - Invalid Compressed data format Violated. How can I overcome this error and install the software on to Solaris 8.
    And also I am unable to find patches 108940-48 and 108827-35. If anyone has got those two patches kindly let me know.
    Thanks in Advance.
    Girish Prabhakara.

    If this is for a file you downloaded, try downloading again. Be sure to use binary mode with ftp transfer.
    David

  • Problem in unzip a file

    hai,
    Iam trying to unzip a file but its not working.
    //Unzip a file
      final int BUFFER = 2048;
      String zfname=application.getRealPath("/") + "temp/Bulk.zip"; 
           File  zf=new File(zfname);
      try {
             BufferedOutputStream dest = null;
             FileInputStream fis = new FileInputStream(zf);
             ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));
             ZipEntry entry;
             while((entry = zis.getNextEntry()) != null)
                                       System.out.println("Extracting: " +entry);
                     int count;
                     byte data[] = new byte[BUFFER];
                    // write the files to the disk
                    File outFile=new File(outPath);
                    //FileOutputStream fos = new FileOutputStream(outFile);
                    FileOutputStream fos = new FileOutputStream(entry.getName());
                    dest = new BufferedOutputStream(fos, BUFFER);
                    while ((count = zis.read(data, 0, BUFFER))!= -1)
                        dest.write(data, 0, count);
                    dest.flush();
                    dest.close();
             zis.close();
          } catch(Exception e) {
             e.printStackTrace();
    Bulk.zip folder has the following files:
    Bulk/test.txt
    Bulk/fm.jsp
    I get the following exception
    java.io.FileNotFoundException: Bulk\test.txt
    (The system cannot find the path specified)
    Iam i making mistake in this line
    FileOutputStream fos = new FileOutputStream(entry.getName());
                    dest = new BufferedOutputStream(fos, BUFFER);Thanks,
    Thanuja.

    ok vijay iam so sorry for not mentioning how i rectified it. somehow i missed it. may be was bit excited when i got the result.
    anyways below code worked.
    //Unzip a file
        String zip_fname=request.getParameter("zfilename")!=null?request.getParameter("zfilename"):"";
        String fromZip=zip_fname;
        //out.println("FromZip:"+fromZip);
        File zipFname=new File(newFileName);
        String toLocation=newFilePath; //path to unzip the file
        String seperator = System.getProperty("file.separator");
        System.out.println("unzipping zip file to "+toLocation);
        try
            BufferedOutputStream dest = null;
            File zipDir = new File(toLocation);
             zipDir.mkdir();
            ZipFile zip = new ZipFile(fromZip);
            final int BUFFER = 2048;
            FileInputStream fin=new FileInputStream(fromZip);
            ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fin));
            ZipEntry entry;
            while((entry = zis.getNextEntry()) != null)
                     //System.out.println("Extracting: " +entry);
                     int count;
                     byte data[] = new byte[BUFFER];
                     String zip_Fname=entry.getName().substring(entry.getName().lastIndexOf("/")+1);
                        if(!zip_Fname.equals(""))
                            zipFiles.add(zip_Fname);
                  if(!zip_Fname.equals(""))  
                     FileOutputStream fos = new FileOutputStream(toLocation + seperator + entry.getName().substring(entry.getName().lastIndexOf("/")+1));
                     dest = new BufferedOutputStream(fos, BUFFER);
                     while ((count = zis.read(data, 0, BUFFER))!= -1)
                        dest.write(data, 0, count);
                    dest.flush();
                    dest.close();
             zis.close();
        catch (Exception ex)
            unZipResult++;
            System.out.println(ex);
        }Thanks,
    Thanuja.

  • Unicode file formats ( open dataset)

    Hi,
    We are sending Unicode file with encoding as UTF-8( open dataset) containing Greek character to Legacy system. Legacy system( Sql server) is not able to understand this file format. As a workaround legacy side team coverts the file to Unicode UCS-2 using notepad ( by selecting encoding option as Unicode) and then uploading it to SQL server..
    Is there anyway to convert the UTF-8 file to other Unicode file format ( say UCS-2 )within SAP or generate the desired file format.

    Hi Martin,
    Thanks for the help!!!
    I tried  to convert the file format from UTF-8 to UCS-2  using the methods of the class mentioned but it didn't fulfill my requirement.  I have Greek character in UTF-8 format and when I convert it to any other other format then Greek character are displayed as #.
    Problem is legacy SQL server don't support UTF-8 format.  I tried open data set with binary mode & also legacy text mode with all available code pages but result were not fruitful.
    ( Program RSCP_CONVERT_FILE to convert code page - I used target code page as all possible UTF* , UCD* & Greek code page but no luck ).
    I am just wondering whether SAP can convert UTF-8 to UCS-2 or not. Other option I am thinking is to have the file converted by Unix script  that is application server external command which can be executed via FTP.

  • Can't unzip downloaded file

    I've downloaded a pdf file, and the site required it to be a zip file. I can't open it! Please assist me.

    If you're trying to zip a pdf, control-click it and choose to compress or archive it.
    If you're trying to unzip a file and the Archive Utility won't open it, try using The Unarchiver.
    (116464)

  • 1099 misc file format not able to get for multiple WHT code??

    Dear Experts,
    I am trying to download the file format for 1099 misc IRS reporting for e-filling, i am getting the file for one WHT code 07. but when i am executing this transaction S_P00_07000134 for multiple WHT Code 01 to 14, in the file format, Amount entries are available for all the WHT Code but In the Record "A" only Account code "C" is coming. i have implemented the SAP Note 1666672 version 3 before executing this transaction. Please let me know this is a configuration issue or i am missing to apply other SAP Note. this is very high priority issue now.
    Any comments on this are highly appreciated.
    Thanks in Advance
    Saurabh Saxena

    I am seeing the same issue. This worked for us last year. But this year the A Record indicates that we only have Withholding code 7, yet our detail records have withholding amounts in columns 1, 6, and 7.
    IRS rules state that multiple withholding codes should be concatenated in ascending order in the Header 'A'Record. This must be an issue with the 2011 DMEE file, IDWTFILE_US_1099.xml as this is the only thing that changed in the 2011 note.
    Actually, I've just compared last year's IDWTFILE_US_1099.xml file with this year's, and in the part of the transformation where the withholding amount codes are concatenated, it appears a bug was introduced. I'm going to hand-edit my copy of the file to see if it resolves the issue, and I'll cross my fingers that SAP produces a 4th update to note 1666672
    Edited by: Timothy Conama on Jan 19, 2012 1:45 AM

  • What exact file format for exporting AVCHD to HDD of Sony HDR-SR12E (AVCHD) Handycam?

    When you are finished editing AVCHD files with Adobe Premiere Elements 11, what is the correct file format for exporting back to the hard drive of the Sony HDR-SR12E handycam?
    I used Sony Play Memories software to import AVCHD (.m2Ts) files at 1920x1080i PAL resolution. I tried rendering to several file formats after editing, but the files could not be exported in high definition back to the hard drive of the AVCHD camera. 
    I WAS able to import files from camera in Play Memories and then export them straight back to camera WITHOUT any editing, but of course you wouldn't bother doing this normally.
    I grew to love using Premiere Elements 10 for editing sd footage from my mini dv camera. However,  I've just purchased the AVCHD handycam and expect to receive my newly purchased copy of Premiere Elements 11 in a couple of days.
    Can anybody suggest the correct file format to produce for exporting AVCHD footage edited in PE11 originally captured on the Sony HDR-SR12E back to the camera?
    - Regards, Phil

    Phil
    Premiere Elements 10 has the Share/Tape (Record to DV). And, even that is for just DV, not HDV. There is no such choice in Premiere Elements 11 and 12.
    So, you are going to have to match up the properties of the original with Export settings and try to get the file exported onto the camera's hard drive if that is possible. Does the Sony user guide give instructions for how to import one of your video to its hard drive?
    The theory depends on how close you want the export of the edit to match the camera's original. There is no .m2ts file extension in any of the Publish+Share/Computer/AVCHD choices. If the .m2ts file extension is a must..
    One scheme to get a AVCHD.m2ts 1920 x 1080i25 for your camera's hard drive - lots of ifs
    1. Publish+Share/Disc/AVCHD and burn to folder using presets = H.264 1920 x 1080i PAL Dolby.
    (The preset cannot be customized so you will go with the Adobe bitrate.for the preset)
    2. Then go to the folder saved to the computer's hard drive, open the BDMV Folder, then the STREAM Folder of the BDMV Folder, and use the 00000.m2ts file there as your file destined for your camera's hard drive.
    If the hard drive will accept ..m2t, then you could use Publish+Share/Computer/AVCHD with Presets = M2T - H.264 1920 x 1080i25 and customize the export settings under the Advanced Tab/Video Tab and Audio Tab.
    Please review and then let us know if any of this works for you.
    Thanks.
    ATR

  • Probelm to unzip bin files during upgrade of oracle

    Hi All,
              We are doing upgrade from 9i to 10g and we are trying to unzip bin files but strange,we are not able to unzip files.Can any one let me know how to unzip and what might be the problem,
    O.S:UNIX
    Thanks in advance for the help,
    Thanks,
    chandra

    Hello Chandra,
    you can not unzip the *.bin files directly.
    You have to concatenate them before with "cat" and then you can unzip it.
    The procedure is described in sapnote #509314
    To get the original zip-file back, use the following commmands for:
    UNIX       cat <prefix>aa.bin <prefix>ab.bin ... >> <prefix>.zip
    Regards
    Stefan

  • IMovie 09 has trouble importing large video files from my JVC HD-40. I am trying to edit files such as these in 09. What should I do? Would buying iMovie 2011 help? I am shooting AVCHD files instead of the other mpeg2 file format.

    Hi,
         I am new into the Apple Community. I have a camcorder known as the JVC GZ-HD40 US and I currently am trying to use iMovie 2009 to edit my movies. With my camcorder, I have the choice to use two different video formats: AVCHD or Mpeg2. All my videos are shot in the AVCHD (HD) file format. This camcorder also has a 120 G Hard Drive built into it. When I plug in the camcorder through USB to my MacPro, the Hard Drive of the camcorder shows up as a icon on the desktop. Many of my video clips are at least thirty minutes in length, inside the camcorder. When I try to import in iMovie my video files, it only imports around ten minutes of the video and skips to the end of the clip. I would greatly prefer to use my MacPro desktop to edit movies instead of my Windows 7 computer which seems to work fine. Is there a solution to this problem? Would the new iMovie 2011 application solve this problem? I also have the Final Cut Express to work with, and also, can't get it to work. What should I try doing?

    Hi all,
    I have the exact same problem. I've just been to Thailand with my girlfriend, and we recorded a lot of stuff with my brand new Sony HD camcorder. And whenever the we ran out of camcorder memory we just emptied everything onto my HP laptop using the supplied Sony software, which produced m2ts files. When we got home, I realized that my Mac Pro/iMovie09 was not able to import this format. What a huge disappointment! Especially considering the fact that I just bought my mac back in March (my first mac ever) only for video editing and music composing (no problems with music composing, however!).
    Well, I needed a solution, so last week I just bought the Voltaic HD converting software (35$), and it works great. No problems. Only thing is that my Mac Pro (quad intel core) had to work 24 hours a day for four straight days/nights in order to finish the converting job - resulting in 434 GB worth of mov-files. This is no problem as such, and the quality is great. BUT it seems rather stupid that this converting has to take place. If I use Sony Vegas on my PC, it works out of the box with my original m2ts-files. And I would really appreciate if Apple would implement a simple import function of m2ts-files in their software - one that would (if necessary) automatically convert the files to mov. Or even better: would work natively with the m2ts-files.
    Best,

  • How do i change .pages to a .doc without microsoft? I've tried going to file format .doc but all of the selctions are grey as in i can't even click on them?

    How do i change a .pages to a .doc format when i don;t have microsoft. I've tried file>format>.doc, though all selections are grey as in a cant't select them? Please help.
    I can't afford microsoft yet and this is a new macso im very new to this and have had so much trouble with this sort of stuff. ive googled it but nothing seems to work!!
    Thanks in advance

    Export the document...there are several formatting options.
    Barry

  • Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized.

    Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized. I see how to do it one at a time with the "download" button in Dropbox but that's so cumbersome for lots of photos.

    Have you tried these avenues?
    Contact us - Dropbox
    Dropbox Help Center
    Dropbox Forums
    Submit a help request - Dropbox
    OT

  • I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file

    I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file me be open in another application."Please help I really need to get this file open.

    Since you've shown us the folder contents it's a good bet it isn't in use (no lock file). And it doesn't look like the file is mis-named as there doesn't seem to be anything else there that would be the .indd file (but just in case, open it in TextEdit and paste the first few lines here so we can see what the file header says), so the most likely case is the file is damaged. Is that on a removable device of some sort?
    You can try the tool at Repair corrupt InDesign Adobe files on Mac OS X  or send me a link to the file by private message and I'll try the recovery tool I have for Windows.

  • HT4796 I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    Send it as a PDF.

  • Tried to "Open As" in PS a NEF file I modified in LR.  Got the following error message:  "Could not complete your request because the file format module cannot parse the file."  I can "Open" the file in PS, but then the changes I made in LR (and saved in

    Tried to "Open As" in PS a NEF file I modified in LR.  Got the following error message:  "Could not complete your request because the file format module cannot parse the file."  I can "Open" the file in PS, but then the changes I made in LR (and saved in the associated meta data file with the "Control S" command) are not applied to the opened PS file.  HELP!

    If you are working with a file you modified in Lightroom, you should go to the Lightroom Photo menu and choose Edit in... and the version of Photoshop you want to open it in.
    There a dialog will ask if you want to transfer the LR settings you made to your photo when you open in Photoshop.
    Gene

Maybe you are looking for