Advice for modifying a compressed file without expanding its size?

Hello. Fairly new to video editing, so your advice is appreciated.
I've got a 720x480 WMV3 .AVI video clip which runs about 1/2 hour at a rate of 666kbps. The file size is about 75MB.
In trying to adjust the brightness/contrast on the file and resave it, the file sizes for different formats all shoot way up. The file has a heavy amount of compression to start with. My thinking is that 'high-quality' settings within a codec will actually store too much information, while 'low-quality' settings will further compress the file and result in loss of quality.
Is there any rule of thumb to dealing with an already-compressed file, editing it, and resaving it (without a significant loss of quality) and without greatly increasing file size?
Thanks in advance,
John

John,
You are starting with a heavily-compressed file, the WMV, so original data has been lost.
When you output your Timeline, you will again need to apply heavy-compression, to keep the file size down, and also experiment with the Bit-Rate.
The only aspects, that will address file size, is Duration (pretty much already set), and Bit-Rate. The lower the Bit-Rate, the smaller the file, BUT at the expense of Quality. As you have already taken a hit on Quality, with the initial WMV compression, and you will loose even more Quality, when your re-compress, you need to study the output files, to make sure that they are still satisfactory for delivery.
If you can do the editing required in Windows Movie Maker, it might be a better program to use, as it is built around the WMV specs. Not sure if it has the Effects and control that you need, however.
Good luck,
Hunt

Similar Messages

  • How to restore a control file without having its backup

    Hi,
    Can any one please suggest me how to restore a control file without having its backup.
    Thanks

    To add to what SB said, in years past the instructions for re-creating the control file manually were contained in the DBA Administration manual. It used to be and may still be common to be taking and saving a "backup control file to trace" for this purpose.
    If you lost only the primary copy of the control file and it is an OS file then while the database is shutdown you can copy the secondary over the primary and then use if to start the database. If the control file is stored in ASM then there should be a way to perform the copy via ASM.
    If you use rman for backups then a copy of the control file should be part of the backup process and you can retrieve it from the backup set then perform recovery using the backup control file though I do note the OP said something to the effect no backup exists. Still, I have knows of instances where the DBA did not realize that the backup set contained the control file and the spfile so I think this is worth mentioning just in case.
    HTH -- Mark D Powell --

  • Copy file without retyping its name

    I`m just starting to use Java (in school) so I need help even with simple things like this: I have to copy file without retyping its name in destination. I`ve tried to use substring method for extracting filename, but it gives me an error "The method substring() is undefined for type Copy". Any help?
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    public class Copy{
         * @param args
         public static void main(String[] args) {
              try {
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    //Entering the path to the file that I want to copy
                   System.out.println("Enter file path");
                   String filePath= br.readLine();
    //Entering the destination for copied file
                   System.out.println("Enter destination");
                   String destination = br.readLine();
                   FileInputStream fis = new FileInputStream(filePath);
                   FileOutputStream fos = new FileOutputStream(destination);
                   int c=0;
                   while((c=fis.read())!=-1){
                        fos.write(c);
                   fis.close();
                   fos.close();
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
    }

    cereal_killer wrote:
    No. I expected this (String fileName = substring(filePath.lastIndexOf("/")+1, filePath.length());) to workYou didn't provide a string reference on which to execute substring. As in:
    String str = "blah blah blah";
    String fileName = str.substring(...);
    {code}If you just say *substring(start, end)* how is it supposed to know *which* String object to operate on?
    Without the someStringReference. preceding it, calling a method--in your case substring--is like calling it on this object, i.e., like this.substring. Your class does not define a substring method, so it's a compile time error to try to call that non-existent method.

  • Compressing file without loosing size or quality

    Illustrator CS3 - AI 13.0 - need to compress a file or it's components to under 500K from a current 2.53 MB size and maintain full page viewing capabilities and quality. Will be placed on a real estate web site for broker/realtor viewing. Using a Dell PC, operating with Windows Vista.

    Ask a few more times, why don't you?
    The size of your Illustrator file is irrelevant to the size of the file you need to supply. EIther save your art using File > Save for Web (for a JPEG) or use File > Save a Copy (for PDF) and try different compression/resolution combinations until the size is under 500 KB and the quality is acceptable. For PDF also turn of Preserve Illustrator Editing Capability.
    It is odd that a website would ask for either a PDF or JPEG. the two formats serve different functions and are viewed differently on a website. JPEG images appear in-line with text within the layout of a web page. PDF files are either downloaded and viewed in a separate program or viewed in their own window entirely apart from the HTML of the website. The formats are not interchangeable, so you are probably misunderstanding the requirements.

  • Best contacts at Adobe professional services/advice for Flex/AS3 job boards without agencies.

    I've got a couple of questions I'd appreciate some advice on:
    1) I'd love to work with Adobe as part of their professional services arm, but attempts to get to account managers or the right h/r individuals with a view on upcoming projects that require staffing has proven elusive. Does anyone know a good contact here in the UK. My attempts to telephone Adobe directly have fizzled out. I never seem to be put through to the right contact.
    2) Alternatively. I'd rather deal directly with companies and not have to go through agencies. Are there dedicated Flex job boards that cater to the UK marketplace - or that have the ability to filter by geographic radius that anyone can recommend?

    hey, I'm not jocking.
    and please let me download an AIR socket network app able to work for days on my computers without any interruption. may I have a look to Adobe Unicom?
    rfr http://forums.adobe.com/thread/1405783?tstart=0
    thank you.
    mc

  • How to get the jar file without knowing its name and any class inside it?

    Hello, everybody!
    I would like to know if there's a way to get a reference programatically to the initial jar without knowing its name and any class contained in it. By "initial jar" I mean the jar that was called in the prompt, like this:
    java -jar jarfile.jaror in another way, in a graphical system. To be sincere what I really want is to get a reference to the jar's manifest, but I know if I can get a reference to the jar I can get a reference to its manifest file. Or if you know a way to get the manifest directly, it would also help. So, is there a way to do this?
    Thank you.
    Marcos

    jverd wrote:
    marcos_aps wrote:
    abillconsl wrote:
    Can you be more specific - IOW, can you cite a specific case?Absolutely. I want to access the jar in source code with the java.util.zip.JarFile class, for example.But why? You still haven't provided a use case or explained what you're trying to accomplish. As already pointed out, whatever you're trying to do, this is a brittle solution. If you explain what you're trying to accomplish with this, somebody may be able to suggest a better approach.jverd, I explained for baftos. Anyway, I will try to be more specific. I start my sytem like this, from, say, for example, jar1.jar:
    import br.product.System;
    public static void main(String[] args)
        System.start("NameOfTheSystem");
    }The System class is in util.jar, for example. This jar is used by all systems. I wouldn't like to pass in the name of the system, as above. I would like that the System class could read it from jar1.jar's manifest file. I just would like to have this:
    import br.product.System;
    public static void main(String[] args)
        System.start();
    }It is more elegant and I don't have the name of the system in two places: code and manifest file.
    Marcos

  • BOOT DRIVE ADVICE for MAC PRO.   How Big and Partition Size

    So new new Mac Pro (Quad) arrives this week.
    I'm doing a drive just for BOOT and another drive (or drives) for data.
    The big question is, what size drive should I buy for just BOOT/OS/APPLICATIONS and how much of it should I partition. I want to install everything on the boot drive to be on the outside area of the disc and ignore the inside.... So, do I get a 300GB drive and partition 100GB to use as the boot partition and ignore the rest?
    Any advise would be helpful!
    Thanks!

    If you have Final Cut, X-Plane and such, you'll find even 150GB to be small. You want to have plenty of free space for burning DVD-DL, temp space for programs and files, and so that free space never gets too highly fragmented.
    A 200GB partition on a 640GB drive seems to be a good choice and it will still maintain 80MB/sec. Still use the rest as an alternate for your data (put it on a sparse disk image).
    10K Raptor 300GB (Amazon, $229) is a nice, fast boot drive if you really need it, though most 640GB drives are more than adequate for most people.
    If you plan to install Windows, I'd dedicate a drive just for that purpose and not use your boot drive. Not sure if "BOOT" meant just OS/Apps or more.

  • [SOLVED] Acroread Modified All PDF File Icons To Its Icon

    Hey guys,
    I made the mistake of installing acroread and now that I've uninstalled it (yes, this happened after uninstalling acroread), it changed all the *.pdf file icons to its own icon.
    I'm not sure how to revert it back to how it was before (eg. ebooks have the front cover as the icon, white-ish for normal pdfs). Does anybody know how to fix this?
    I've also tried right clicking > open with other application in order to set the default application but the acrobat icon stays.
    Last edited by devrepublic (2013-02-08 16:56:27)

    Hi ConnorBehan, thanks for the help but I figured out what was wrong. Somehow the poppler-glib package got uninstalled so Thunar wasn't able to display thumbnails for PDF. Reinstalling poppler-glib back fixed the issue.
    And yes, just for future reference, the adobe icon is indeed part of the faenza icon theme.

  • Advice for keeping high quality files for archiving

    I'm contemplating archiving here. I love reference files because they are pretty small in file size and don't compress. However, I have to worry that all my files will remain in the same exact place forever. I have found that is not always the case for whatever reason. Then there is self-contained reference files. A great idea...I don't have to worry about moved files but the file size is enormous. I do long videos (sometimes an hour or so) so file size is really important to me.
    Is there anyway I can do a self-contained reference file but somehow reduce the file size or something? I know I'm throwing a bone here but I figured I would ask because my current scenario is not improving daily. I know I can put my hour or whatever to tape but that essentially is compressing it and I'm using valuable time. Any advice?

    HI Lowsky, I been down this road some time back and my opinion is that if you are working in any workflows associated with CMFs (contemporary media format) in a tapeless workflow then storing your LONG TERM content as CMF's on spinning disk will eventually lead to misery and a hopeless state of anger and heartache. Spinning disk is not the long term answer.
    refer here for lots of detail: I have post this detail in another forum at
    http://www.reduser.net/forum/showthread.php?t=21284&page=6
    *Archiving FCP Media Manager Projects, essence, import/transfer material.. etc*
    Aside from many testimonials about DISK being faster (more accessible?) and convenient, storing content on spinning disk is a like as a child having all the toys you could imagine but only playing with your 3-4 favourites. (replace with any analogy). Simply you only need the stuff around on disk that you actually use a lot or currently.
    I (and I'm not alone) don't trust and disk storage system unless you buy enterprise level disk arrays with some fault tolerance and smart disk array controllers AND that you have at least multiple instances of the content. I qualify ENTERPRISE disk systems - these at $USD5.00-$USD10.00/GB+. I mean those disk arrays from I,T. vendors, and M&E guys like Isolon, DDN, Apple, HP, Copan and their 40+ ilk.
    The affordable stuff most of us is around $USD0.25-$USD0.75/GB - SATA and lowest end HBA's or simple controllers. Basically just spinning +power soaking heat dissipating buckets+ to put our content into. (USB | FW or the external JBOD disk enclosues with an HBA or higher FC disk arrays)
    Most of these are enterprise disk storage systems that are out of the price range of many on this forum...
    Devices like DROBO™ are cute but they are way way too slow (29MB/s when not busy consolidating itself ) and are very limited on their architecture for VIDEO work (useless). I gave mine away after a week to a photographer.
    Alternatives like many sets of external and detachable and mobile spinning disks, leaving them spun down until use offer a great odea however unless the disk controller is savvy, you may as well have a bank of el cheapo Le Cie 1TB death disks and get on your knees and face the moon when you power them up.. (Good = luck with that!) mode=:rant
    *Viable Archive Solutions for CMFs?*
    After looking for viable solutions to by content storage problem after moving to a tapeless workflow with my HVX200 and P2, AND losing on two separate occasions a whole 1TB external disk (Le Cie).. losing most of the data of two drives (2 x 1TB over 4 months).. I have had it with disks!
    For me, Disk storage should only be used like a +kitchen table+ for immediate and current and frequently accessed work. Like the +toy analogy+, hen not in use, put the toys away somewhere where they will not be damaged (the content objects) (like a large toy box or cupboard) that you can access with ease. (not the garden shed out the back nor the attic else it will never be used). This is workflow is simple enough..
    My first thought for managing FCP media manager archives, P2 footage and final composites was to use BD's.. however the cost for the content that was wanted to archive was not cost effective. I had literally 100's of old video tapes, DV , HDV and ye old video8 rubbish that I needed to move to a CMF, all accessible via proxies and metadata (a la CATDV™ a mam from squarebox.co.uk). The restriction was COST of BD or DVD-DL media and worse the time of write and then access the material ESSENCE when I needed it.
    I even looked for a while at many 100's of DVD-5's which in Hong Kong are as cheap as free beer coasters in a bar. I would buy them in canisters of 100's at a time. Simply these are cost effective using TOAST to make multivolumes self extracting archives, but are SOOOooooo slow to write and then access.
    So I turned to looking at the economies and workflows of using LTO4 Ultrium data tape drive. I was quite surprised at the reasonable cost.
    The cost of Ultrium LTO4 data tape media of to 800GB native for prices that are as cheap as $USD1.40/GB as pure media (the tape cartridge itself).It depend where you buy them and at what quantity. Of course there are the necessary offset/initial costs of the data tape drive AND the SAS HBA you will need for your mac. (LTO4 Ultrium @ $USD2700 and $USD150+ for SAS HBA). Much cheaper fo Ultrium LTO3 but lower data rates and capacities.
    NExt year HP et al will have Ultrium LTO5 out at 1.5TB RAW/native capacity as their roadmap suggests.
    THe uncompressed / RAW data rates of LTO4 Ultrium data tape drives for ARCHIVING material is for me between 105MB-109MB/sec (that's megabytes).. simply BLOWS any firewire 800 interface out of the water. There are many variables however essentially for people like us whose business is content creation or even the part timer who doesn't want to lose stuff, this is really worth a look. Again it will depend on the software you utilise. I use Tolisgroups BRU.
    Just do the sums on the time it takes you to archive (or copy to another disk system [BD or DVD-5, DVD 9, et or a spindle) lets say 4 hours of DVCPROHD 1080P (110Mbs or just over 1GB/minute). You can see that this is a lot of content and will take a great deal of time.
    This works out at roughly 240GB.
    I think this will take over 500 minutes (6 hours? @ 2min/GB)+ to COPY on a FW400 interface and slightly less on a FW800 interface.
    However it takes a mere 2200 second or 36 minutes using an LTO4 SAS Ultrium tape drive (with no tape mount/dismount timeloadlocate)!
    On a lesser scale, a look at DDS tapes for the low end. These are despite rumours/myths are quite stable and work well with the right software on the mac and the mac laptop.
    I am having great success with this archive and recall system using Tolisgroups BRU that is NATIVE for OSX.
    I have posted some very recent information on the two SAS PCIe HBAs I am using (ATTOTECH and LSI) and the two tape drives I am using (HP and QUantum).
    For LTO4 Ultrium SAS tape drives I would recommend only HP and ATTOTECH EXPRESSSAS as this is reliable and very stable and very fast for OSX.
    I am very happy with this archive/recall workflow using LTO4 Ultrium data tape for FCP.
    I have post this detail in another forum at
    http://www.reduser.net/forum/showthread.php?t=21284&page=6
    hth
    w
    HK

  • Convert Selection for Apple TV produces file without video

    Good morning. I have a .MP4 file (H.264 codec) that plays just fine in iTunes. However, it won't sync to my Apple TV, saying it's not compatible. When I run "Convert Selection for Apple TV," iTunes hums away for a few minutes and then produces a file with the proper length and clean sound, but a blank picture. Any ideas?

    I've had the same type of problem. A 720p video that plays fine in QT is accepted by iTunes but will not transfer to my AppleTV. I used the convert for Apple TV option and the resulting file would download to the Apple TV but the playback is just a whitescreen with sound.
    When I convert videos sometimes iTunes or AppleTV won't accept them but I've yet to figure out why - resolution, bitrate, and complexity are the same yet some work and others don't.

  • IMovie HD - any advice on problem solving Quicktime files without audio?

    Hi,
    I'm trying to import several Quicktime video files into iMovie HD and the audio is missing. I know this is because the files are in MPEG-1 Muxed format, which only imports the video portion of movies. My question - are there any ways around this? Can I save the video files in another format so I can access the audio?
    Thanks!
    ibook G4   Mac OS X (10.4.8)  

    Hi KCSunshine!
    Welcome to discussions!
    Can not hear audio in iMovie when I import an MPEG clip
    http://www.danslagle.com/mac/iMovie/tips_tricks/6030.shtml
    :)Sue

  • Modifying the HTML files for a service

    Hi All:
    We are in SAP R/3 4.6c and EP 6.0.  We will be using the standalone ITS for our ESS Services.
    We would like to modify the standard delivered service for edit skills - PZ31_EWT.
    What is the procedure for modifying the HTML files.  Where can we see the HTML files associated with a service ?
    Is it on the ITS side or via SE80?
    Thanks
    Rachel

    Hi Rachel,
    You've just about reached the limits of what I know about changing ESS ITS services I'm afraid.
    I didn't see PZ31_EWT listed under Internet services either so Im guessing the ITS service PZ31 name remains unchanged. If you double click on the top level folder in the tree, called PZ31, the details of the ITS service are displayed. Its not obvious that you can do this as it just looks like a folder, but if you do and select the Parameters tab you can see if lists TRANSACTION=pz31 and WEBTRANSACTIONTYPE =EWT which sounds suspiciously similar to what you were expecting.
    You could test this by putting some text in the PZ31 HTML template, publishing, and checking it is displayed.
    You can (copy and) modify the templates with straight HTML and the Business HTML macro language, which is a bit of a black art but you can access the help via the 'Business HTML overview' button on the toolbar.
    I found a sentence in my handover notes from an ESS guru that reads 'Customization to ESS page layout are not easily done. You need to copy and modify the ITS service and edit the business HTML templates'.
    The only other way I know to modify ESS is through the SPRO transaction.
    Thats about all I can tell you about ESS Im afraid!
    Cheers,
    Steve

  • Expanding the size of the export file

    Hi everyone. I notice that when i export  jpg files they seem to grow in size. For example in the inspector in Aperture, the file size says 2.58mb. when i export it as a jpeg-original size it comes out as 7 mb.
    File\Export\Version\Export Preset: JPEG - Original Size
    why is this happening? How can i export edited photos (jpg files) without expanding file size?
    Many Thanx in advance
    Mac OSX 10.9.2 (iMac)
    Aperture 3.5.1

    why is this happening? How can i export edited photos (jpg files) without expanding file size?
    To elaborate on Ernie Stamper's advice:
    Check the settings for the "JPEG Original Size" export preset.  When you export a JPEG, set the export preset to "edit", and inspect the settings for the preset in the panel.
    Is it the "Size to" parameter still set to "Original Size" or to a different value?
    Is the Image quality slider set to a maximum value? Try to lower this value, if your image is exported with a larger file size than the original.

  • Unable to view Multi-page Tif G4 Compressed files

    Is any one aware of a product(free would be best); that will permit Mac (various operating system versions) desktops to view Tif image files?
    Tif file format we are using, the viewer must be able to view:
    G4 compression;
    Multi-page tif,
    Interestingly enough the Ipad's are able to view our compressed files without additional software, but the Preview application that comes on Mac's we have in house and employee's who have Mac's at home that tryingto use for work are not able to view our highly compressed images.
    We have software for our PC systems that permit the viewing/editing of our images without problems. Unfortunately, the software is not compatible with Mac's.
    No, their is no option to convert out TiF to a different compression, with our high volumn of scanning we need the high compression for our scanning of documents as is.
    The only work around we have is for staff that are using Mac's in order for them to view documents at home, internal staff must take the time to convert the files to PDF format.

    It's an HP P3005dn (duplex+network) printer. OS X simply recognized the printer on the network and set itself up accordingly (without the option of selecting PCL or Postscript). The Windows computers in the office, though, - ugh - it was ugly getting them set up. None of them would recognize the printer on the network, and couldn't even browse for it and find it. I wound up having to download Bonjour for windows, and set it up that way. I downloaded the drivers from HP.com, and believe I set them all up to print using PCL.
    It sounds like PCL v. PostScript may be the issue; is it possible to print using PCL on Macs?

  • Compressing Files -Stuffit ?

    Recently, I had problems with Mail because I was trying to send large files to a number of people - essentially, I must have exceeded my limits, Mail didn't like it and decided to cut me off for 24 hours or so, and anything I tried to send by Mail would just sit in the Outbox. Anyhow, I seem now to have been readmitted to the world of Mail and all is okay !
    However, it's set me thinking about the future if I need to send largish files (eg 3 MB). And compressing them.
    I'm thinking of getting Stuffit, which most of us know as an expander, but I believe also does compression. So, I've downloaded the trial version and done a few trial runs. But I'm confused.
    The file I have trialed with is a 3MB .pdf of a newsletter that I want to send the rounds. If I run it through Stuffic compressor by using DropStuff it produces a compressed file in whatever format I ask it to (.zip or .sitx) But, if I look at information about this newly created compressed file (apple and i) it tells me that it is still 3MB !
    So, is it compressed or not ? If it gets sent is it still sent as a 3MB file? If so, what is the point of compressing, when the original file was 3 MB also? Or is it a smaller 3MB than the real 3MB file?
    Some info and help would be gratefully accepted !
    Thanks.

    Hello Christopher,
    As Barbara pointed out, you can create a standard ZIP file by just right-clicking (or "Control"-Clicking with a single-button mouse) and saying Create Archive.
    But, to answer your question about the lack of compression:
    Regardless of the compression method used, not all files will benefit from compression.
    Compression only works by clearing up wasted space, and often by substituting symbols for frequently repeated words or other items that are large or repeated.
    As an example, some compression methods might use some single-character symbol to replace a recurring phrase or word in a document. Likewise, it might do the same thing in a program to abbreviate longer strings of commands or text in the file.
    Think of it as creating short-hand like a court stenographer to allow a larger file to occupy less space. Then, when it is decompressed, the short-hand is translated back into it's original form.
    Additionally, any wasted space is removed and documented in short-hand.
    So, if a particular file has a lot of wasted space in it, or is written using a less compact form (in it's native format), then compression will make a significant difference in file size.
    However, if the program stores it's files in a format that is already compact and efficient, then you might only save a couple of character spaces (if that much) when you compress it.
    As a simple method of proving this, take a large file that will compress down to a smaller form. Once it is compressed, try to compress it again. The program will do this, but you'll notice that the second compression is either not effective or very minimal.
    This is because the wasted space was already removed from the file. So, there was no additional improvement to be made.
    Also, as noted, there are different methods of compression. So, the type of compression you choose will affect the end size of some file types.
    For example, a ZIP file may differ in size from a TAR file, which may differ in size from a SITX file, etc. This is because every format has it's own method of creating short-hand. So, some methods may compress certain file types more.
    Hope this helps.

Maybe you are looking for

  • Regarding report s_alr_87012082.

    Hi all,         I want the output of standard report s_alr_87012082 in alv format ... is there any relevant standard report available ??         Also if i want the output values of report s_alr_87012082, from which tables i can get vendor no, vendor

  • CS3 cannot open original TIF file after "save as" Photoshop PDF

    Mac OS X 10.4.11, Photoshop CS3 (10.0.1), 2.5 GB RAM, and the files are saved to the afp file server (Windows Server 2000 SP4 running Services For Macintosh). When saving a TIF file as a PDF the original TIF file cannot be opened again. Once Photosho

  • Restored from Time Machine now some songs in itunes not authorised to sync

    I started using Time Machine recently (2 to 3 weeks ago). Everything was working before, including my iTunes library. No authorisation issues, no syncing issues to my iphone or ipad. Last night I did a full restore from Time Machine backup and now I

  • Data Migration Legacy data date

    Hi, I have the following query with regard to the data migration of the Employee Master data: The legacy data of the employee starts from the date 01.01.1970. During the data upload do I need to create the employee record in SAP backdated to 01.01.19

  • Font Selection laggy in InDesign CC

    27" iMac 3.4 GHz Intel Core i7, 16 GB 1600 MHz DDR3 RAM, OSX 10.9 Adobe InDesign CC 9.1 Suitcase Fusion 5 Version 16.0.5 (603) Since installing Mavericks have had terrible issues using InDesign on my less than 3 month old iMac. Font selection is pain