Making a .flv file and retaining quality

I have a completely finished movie in Final Cut. I need to create a .flv version that is really small in file size (less than 10mb) but retain the quality.
What is the best way to do this?
I have a friend who had a quality .mov file of 18 mb that was converted in to a .flv file of 4.6 mb and it still looks amazing.
Any help would be much appreciated
Tim

There is no magic button that will work for all videos. A lot depends on how many pixels are changing between frames and this can be drastically affected by long, slow dissolves - particularly if dissolving between motion-intensive scenes. And, of course, quality is a subjective term that must be ironed out with several review steps with you/your client.
That said, I've been very happy with results I've gotten from Sorenson Squeeze (and similar products) from Sorenson Media over the years.
http://sorensonmedia.com/
Its interface offers quite a lot for tweaking the quality/size of the output files.

Similar Messages

  • HT3775 what is a flv file and why can't I play it?

    what is a flv file and why can't I play it?

    It's flash. Do you have a flash player installed?
    Not sure, but try VLC

  • HT204382 I can't open .flv files and I have OS X Lion 10.7.5

    I need to open .flv files and store on my computer for presentations.  How can I do that? The message when I try to open from Safari "The document "GetClean_400.flv" could not be opened.  The movies' file format isn't recognized." I have Adobe Player and I have Quick Time but for some reason it will not recognize and open.   Do I need to upgrade to Mountain Lion?  If so, will my Mac support? 
    Processor 3.06 GHz Intel Core 2 Duo
    Memory 4 GB

    You need to install Perian.
    (81092)

  • Unable to opn FLV files and more with newest Quicktime vs 7 Pro

    Hi and thanks in advance -
    Suddenly I cannot open FLV files and I have the Flip4Mac etc plugins. NO LUCK. This is a waste of money patience and time ... or does anyone know of a way to create harmony in the cacophanous quicktime wannabe world. I have a new macbook which I adore and I am ready to throw it down the loo.
    PLEASE help. It's much appreciated.
    Sandy
    macbook dual core intel os 10.4.9   Mac OS X (10.4.9)  

    FLV is Flash Video. QuickTime isn't used (normally)
    to view them and most of use use the free Flash
    Player and its browser plug-in.
    The free Perian http://perian.org/ component may help
    you.
    hi and many thanks for the advise - stupid of me not to see that the flv = flash. I have had the perian plugin installed and running 100 percent for some time.
    I'll give it another go nonetheless and again thanks for the input! BTW the flash player has been running fine too. Perhaps a conflict?

  • Add layers from other psd file and retain text layers (Batch processing)

    I want to batch process a large number of portraits adding text info from the filename (year_name_number.jpg) to existing text layers. I want to make a template psd file containg the correct labeled text layers formatted and adjusted (With bleding effects and more) How can i add layers from an other psd file to the active document and retaining the text layers editable. The place command in PS5 adds the file as a smart object, no use.
    Any ideas?
    I tried the combined action/script way, but no joy so far. Right now i am making the text layers with a action, then calling the script from the action. It works but its difficult to make different templates from adjusting a action.
    The code i am using now (in combination with a action creating the 3 text layers and other grapchical elements)
    var docRef = activeDocument;
    // strip the extension off
    var fileNameNoExtension = docRef.name;
    fileNameNoExtension = fileNameNoExtension.split( "_" );
    if ( fileNameNoExtension.length > 1 ) {
                    fileNameNoExtension.length--;
    fileNameNoExtension = fileNameNoExtension.join("_");
    var myString = fileNameNoExtension;
    var mySplitResult = myString.split("_");
    var textLayer = docReflayers['Year']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T1 = textLayer.textItem;
    T1.contents = mySplitResult[0]
    var textLayer = docRef.layers['Name']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T2 = textLayer.textItem;
    T2.contents = mySplitResult[1]
    var textLayer = docRef.layers['Number']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T3 = textLayer.textItem;
    T3.contents = mySplitResult[2]
    Thanks
    Eivind

    norway_photo wrote:
    Here is my intended workflow:
    - A set of same size portraits labeled "year_name_number.jpg"
    - A template.psd os same size with graphical elements and text layers (named "year", "name" and "number")
    - A script or action copy/pasting og adding all layers from the template.psd file to the open portrait file, retaining text layers editable.
    - A script (The one i have working) changing the text layers added from the template to text from the filename.
    - A action saving this as a PDF ready for print.
    This way i can process a large number of portraits, add names and other information and save it as a file ready for print.
    I can image it is much easier to edit a template than writing a script or an action creating all the graphical elements.
    And even better, to change this template for different customers/departments/logos.
    Basically i need a way to add layers to an open file using a batch file or script.
    Eivind
    OK I understand what your trying to do and now I do not agree with your conclusion you made in you first append about place being no good for you.  Its is I think a perfect solution for you. I feel you need to address the process from a new angle.
    I am very familiar with templates I use them all the time for collages which I populate with an actions.  However I do not batch this process and my process is interactive.  If you look at what your trying to do from the angle of creating a collage.  You will see what you are trying to do is automate the population of a single image collage using a single template in a batch process.  An example of one of my single image collage populated by one of my actions that has been saved as a jpeg image file.  My actions are played in Photoshop with no document opened.  After my action is play there is a single collage document in Photoshop that contains layers that can be tweaked all text is in text layers the can be edited.
    If I wanted to automate the batch population of a single collage template I think all I would need to know is three thing.
    1.) The location of the input images
    2.) The full Path of the PSD template file.
    3.) The location to store the output  file
    Looking at some of the recent threads in this forum I could almost cut and past the script you want to put  together.  There was a recent thread that had javascript code to process files in a folder and process only a list of file types.   There also was a thread that had a place function in it to place images into the current document or create a new document to place the image into.  The image was read from the web using a URL.  This thread has code to change a text layer.  At first I though you may need to open these image file to get at its meta-data to get the Portrait image Exif creation data.  But see all you need is the Filename for it has the data you want the year and name.  So the function that get the image files from the folder will give you that. The   Script needs to Open the Template PSD file and retrieve the prototype text layers text content  then the scrip needs a loop that get the next image file to be processed from the folder get filename function. In the loop the image files are place into the open template above a place holder layer like the Background layer. Then using the prototype text contents and the filename are used  create the new content for the text layer and then change the text layers content to it.  Follow that up with a save as for the output file.  Once the output file is saved delete the placed smart object layer.  When this loop ends the script will close the document with no save and end. As for the three inputs you need  the script could either have a dialog like the images processor or simply prompt you for the folders and template file.

  • Exporting and retaining quality

    Hi there.
    I'm having some issues exporting from Premiere Pro CS5 and retaining image quality. Rather than retype the problem could I ask you to have a look at the following blog post where I break down the problems I'm having and give some examples.
    http://www.pauljoy.com/2010/12/hdslr-encoding-wars-premiere-pro-vs-final-cut-pro/
    I know there are a lot of options / settings during the encode process that effect the quality of the output and I have tried various combinations including both 1 pass and 2 pass VBR encodes as well as MXF and other transfer protocols but so far have not achieved an export that retains the quality thats shown within the NLE. I guess my ultimate question would be, what codec / settings would you use to achieve maximum export quality?
    Any thoughts or tips on ways to retain more quality in the encoded files would be greatly appreciated.
    Best regards
    Paul.
    EDIT: Should also give some system specs
    Mac OS10.6
    12 core 2.93
    16GB RAM
    SSD Drives
    Nvidia Quadro 4000 (MPE Hardware enabled)
    Latest update for PP CS5 installed

    what codec / settings would you use to achieve maximum export quality?
    Uncompressed, Lagarith, UT or any other lossless codec.  Anything else will incur some amount of degradation.

  • Any way to embed a text file and retain the link?

    Hi everyone,
    I am embedding the contents of a text file using "Insert > Choose...". This works wonderfully, but it appears to just insert the contents and gives me no way to update the text if the original text file changes. In Word, I can insert the text file and have it retain the link, then I have the ability to update the field (or all files in the document) with updated wording from my source files.
    In case you're wondering, I'm exploring using Pages for authoring the user guides for my company's software. We include command usage statements in our documentation and we have a workflow that runs each command, capturing it's help output into a text file, then we include this in the user guide document. Obviously, having the ability to update the user guide document with updated usage syntax is a required piece of functionality. I would like to use Pages instead of Word, but I'm not sure it can do this.
    Thanks in advance!
    Brian

    No, Pages can't do it. It doesn't keep a link to the original text document. You have to replace the text when you have made changes.

  • FLV files and editing them in FCE HD

    is this possible....like at all? the new real player allows you to d/l any web video and i noticed that FC will not let me import the flv file. so what can i do so that i can edit the videos i d/l from youtube, etc?

    Use Mpegstreamclip (www.squared5.com) and convert it into a QuickTime movie with a standard format that FCE can handle.
    Regards,
    Armando.

  • Rename files and retain portions of the original filename

    I posted a thread about this a while ago, but no solution was given:
    http://discussions.info.apple.com/thread.jspa?threadID=2564646
    The issue is this: I can't figure out how to rename imported files while also retaining part of the original filename. The images come off of the camera like this:
    DSC_3497.nef
    I need to do the following:
    +- Retain the unique number that the image already has. I don't want to rename the files by date, location, lunar phase, or some other esoteric identifier. I think having a unique ID for each image (one that shows up in standard OS-level searches on both Mac and PC systems) is useful.+
    +- Replace "DSC" with the camera model (D3X), since I use multiple cameras with different resolutions and also need to be able to search for images from a certain camera outside of Aperture (i.e. tags/keywords would not help).+
    +- Add a digit prior to the four-digit string to indicate the true numeric sequence of the file. Since Nikon cameras reset the number sequence every 10,000 files, I want to indicate the true sequence number directly in the filename. This will also avoid filename overlaps. It also lets me know how many images I've shot with each camera.+
    The intended final result would look like this:
    D3X_63497.nef
    Showing the 63,497th image taken with my D3X.
    In Aperture's "File Naming" dialog, I don't see a way to split the existing filename in this way. It looks like I can only append or prepend a Custom Name to the Version/Master name. I don't see a way to split the existing filename at the underscore, for example, so that portions of the original filename can be selectively replaced.
    This is not about finding a workable naming scheme for Aperture and then renaming all existing files. I spend time on the PC side for various things and also work with a number of people who don't use Aperture but need access to my image library. I also have hundreds of references to existing filenames in various print and web design projects, as well as my Flickr account with 3000+ photos.
    Going back and updating all that stuff is not going to happen. But using a System Service to rename files after every import is also pretty tedious.
    Any solutions that meet the three criteria outlined above would be greatly appreciated.

    sempervirent,
    You're asking for some pretty advanced file naming. Most people aren't going to need that sort of function, so I doubt there will be a hook into Aperture to do such a thing. I suggest using a shell script or Applescript along with EXIFTool to rename files before you import them into Aperture. http://www.sno.phy.queensu.ca/~phil/exiftool/
    Retain the unique number that the image already has
    If you're not afraid of the command line, it's easy enough to use a tool like awk or maybe perl to parse that sequence number from a well-formatted string like the picture name
    Replace "DSC" with the camera model (D3X)
    You can use EXIFTool to extract the camera model from the EXIF dat ain the photos
    Add a digit prior to the four-digit string to indicate the true numeric sequence of the file.
    Good luck with this one. You'll have to do a filename search through all of your previous files to find out what 10,000 you're on. It's possible, but you'd have to do some specialized coding in AppleScript or shell script.
    nathan

  • Embed a flv file and create a snapshot

    Hello all,
    I would like to use OSMF to play an embedded .flv video file in my mobile application project (AIR 2.7), but I haven't find any example. Could you please provide one ?
    I've also seen that creating a bitmap of a video (with BitmapData.draw()) fail with a sandbox error. Is it going to work if the video is embedded ?
    Many thanks

    goto youtube.com. They give the html source code for each
    video they have in order if somebody like to embade them to their
    sites. Check that code and you may find answer to your
    question.

  • 3d File loads blank after crash despite still being a large file and retaining a thumbnail - is it possible to fix this?

    I was working on texturing a 3D model with Photoshop CS6 Extended when photoshop crashed. Now my file loads completely blank for anyone with CS6 Extended. Other people without an extended version of photoshop are able to load the file as it appears in the thumbnail, but the file automatically rasterizes due to lack of 3D function. The file is still 42gbs (much large than a back up which loads fine) and shows a thumbnail of the 3D model, so SOMETHING is still there. My autorecovery function doesn't work; there's no recovery files available, only a file I saved shortly before the crash.
    Any idea how I can fix this (if it's even possible)? I urgently need access those layers and to save out my texture.

    Thanks! SetFile does exactly what I wanted.
    Drag and drop didn't work because Quicken adamantly refused to accept what it considered a plain text file. That's why I wanted to restore the file type back to Quicken data.
    Alas, Quicken now valiantly tries to open the file but can't due to what it calls a damaged resource map. (Or maybe a missing resource file?)
    Nevertheless - thanks for your help!

  • How do I protect my FLV files? or How to encrypt and decrypt FLV files using AIR?

    Hi,
         I am working on an AIR application, which is developed on eLearning concept. The application mainly deals with flv files. The application contains a video player component, which will stream flv files from an Apache Server and played in my application. Here my concern is I would like to protect my flv files some how against users who may stream them from Apache Server and use them without my application.
         I thought of with an idea to do it. But I don't know whether it will work or not. So I am requesting for your suggestions and better ways to do this with a sample.
    Here is my thought:
    I would like to place the encrypted FLV files at Apache Server side [ Need to know how to encrpt the FLV files using Flex]
    As my AIR application send a request for a FLV file, the Apache server should send the decryption key and a stream of FLV file.
    AIR application should take the decryption key, stream of flv file and it should capable enough to decrypt the FLV file and play it in my application. [ But I don't know how to encrypt/decrypt FLV files through flex]
    I can do encryption of FLV files using Mac Address of Apache Server system and using Java. But I don't know how can I decrypt the same FLV file ( Encrypted using Mac Address and java ) at AIR application side.
    So I would be greatfull If any body help me in encrypting and decrypting of FLV file with a sample using Flex 3.0.
    Thanks
    Sudheer Puppala

    russellfromblackburn south wrote:
    Is it because the portable drive is NTFS format and the Mac wont recognise this? If so what do I do?
    Yes, this is exactly what is causing the problem. Macs cannot write to NTFS formatted drives, only read. You must move the documents to the internal HDD/SSD of the Mac to be able to edit them.
    Or, since you say you don't want to move the documents to the internal storage, you'll need to format the external HDD as FAT32.

  • Quicktime and flv files

    I have just bought quicktime pro because research suggested it would open a flv file and convert it. Having gone through a painful process of having to redownload and reinstall various add ons it is still not working only opening the first few seconds of the file. Can anyone suggest a solution?

    Quicktime X is a great little piece of software. However, Quicktime X is very finicky on which codec/file format it can decode/play.
    Luckily, there are DOZENS of alternative video/media players and extensions available for the Mac. Some of them are even FREE. Some of the better FREE ones include...
    PERIAN (quicktime extension)
    http://www.macupdate.com/app/mac/22923/perian
    QUICKTIME 7.6.6
    http://support.apple.com/kb/DL923
    VLC Media Player
    http://www.macupdate.com/app/mac/5758/vlc-media-player
    NICEPLAYER
    http://www.macupdate.com/app/mac/15136/niceplayer
    ... And if none of those work, there is a possibility that, that video file may be corrupted.

  • Why won't an FLV file created by Premier Pro open and Play?

    As the title states...I exported a sequence as a flv file and my computer won't play it... It is strange that the amount of Gigabytes used by Adobe ( I have the Master Version) won't open an FLV it created. Yes,
    I have Quicktime installed BTW. Is there something I need to turn on? Or do I need 'yet-another' download to make an .FLV play?

    @JtSmith- BTW I put this ? in this area because I created the File in PremPro.. So I wondered why it would not play it back. However your idea of parking the file so a stand alone /embedded player made me think to try and open it with a Browser. Which indeed my .f4v file did open that PremPro created. Yet the FLV file would not open. IT seems FB (Flash Builder) has taken proprietary rights over it...
    @JSimon- I could not find the VLC Player you mentioned, if you can tell me where I can find that or which or what program that is in...?
    Anyhow FWIW, Prem Pro did a great job on creating a Lossless FLV file from a file that was 330mb to 11mb and still looks pretty good for web use. BTW.. Hence the Prem Pro post. After all we web users would like the smallest, cleanest file we can produce from our PremPro exports. Right? Thanks for the idea JT and J Simon if you get a chance to let me know if that VLC player came with my suite or must I download the Open Source VLC player..The one that turns every icon into an 'orange construction cones'
    Thanks
    Happy New Year. 13

  • SWF and FLV file  sizes

    Hello,
    I have an flv file and the same flv file in an swf file. Both
    files are the same size. So, it seems that it doesn't matter,
    whether you import an flv file or an swf file, to keep your file
    size small. Is this correct ?
    Thanks,
    Paul

    > I have an flv file and the same flv file in an swf file.
    Both files are
    > the
    > same size.
    That's just a coincidence.
    There is different baggage / overheads with FLV vs SWF. So
    you will usually
    get some differences .. sometimes SWF smaller, other times
    FLV. However,
    the actual video payload is the same in both, and the audio
    is similar too,
    and they are the bulk of the file size. So there shouldn't be
    a huge
    difference in file size between SWF an FLV.
    Jeckyl

Maybe you are looking for

  • How to Configure iCloud with multiple iCloud accounts and one apple id

    I need some help from the icloud experts. I almost have my arms around this, but not completely. What I want to end up with is the following: One account that both my wife and I use for shared contacts, calendars, photostream and find my device. Sepa

  • Wrong timeshift of +1:00h after daylight savings activation

    Since the change to daylight savings last Sunday, March 26th, the dates of files displayed in my Finder window are +1:00h newer than the corresponding reference files on my Linux-server. This holds only for files that were actually last modified betw

  • Editing XML File

    Any idea or url around for an example how to edit XML files with ASP.VB ? thanks fpr any reply Sebastian

  • Installing from a download

    trying to install from a download but program askes for a CD. Had this problem before, but can't remember the fix

  • Adobe CS2 is no longer supported, so

    I downloaded the updated CS2 from the Adobe website. The instructions that came with it for uninstalling my existing CS2, which included Acrobat 7, included uninstalling Acrobat 7, so I did. When I reinstalled the new CS2 download, it did not include