.flv file is too large

How do I reduce the size of a 100MB .flv file so it will
stream better from my web site?

That depends greatly on what format the original clip is, and
what software you have access to. Hopefully you have AfterEffects
CS3. You can render the original clip from AfterEffects as an flv,
and decrease the physical dimensions of the clip, the frame rate,
and the bitrate. Just from personal experiences, I'd say you could
cut the 100M down to probably about 60M.......maybe a little more.
If you have AfterEffects, just play with the settings and see what
you can come up with. If you don't have AfterEffects or Premier
then there really is nothing you can do that I know of.

Similar Messages

  • .flv file size too large

    I recently purchased the Premiere Pro CS3 upgrade in order to produce flash video for our website because I was told Flash is the way to go for video delivery. We have used Real Media for a while to provide our audience with both the option to stream the video or to download it, but for several reasons I wanted to move away from that format.
    However, I have to say I am disappointed in the results I've gotten with my first .flv encoded movies. The file sizes I'm getting for decent quality video are around approx 140 MB compared with approx 75 MB for the same clip when exporting to Real Media (.rm file). That's nearly twice the file size and the quality is even a little worse than the smaller Real Media file.
    I am running Win XP and exporting finished high quality 80 minute .avi clips (yes, very long, but shortening the clips is not an option)to Adobe Media Encoder>Adobe Flash Video (I'm using the "NTSC Source to 256kpbs" preset, using the "On2 VP6" codec, with a bitrate of 200). Our priority is High Quality video but at the same time it would be nice to have a reasonable file size too. I simply don't understand why the file size is so large compared with Real Media when the quality is roughly the same. Am I doing something obviously wrong. Please help.

    It's worth playing with keyframes, possibly increasing the number between them by a substantial amount. I'm also a little surprised that a 256k preset would have a video bit rate of 200. That strikes me as a little high by the time you add in audio and try and cram it down a congested 256k line.
    Do you have the settings you're using to export the Real files? Real 10 is a great codec as far as quality/bit rate. It's just a pity it lacks in other ways.

  • ERROR : OpenDoc CR to PDF - File is too large for attachment.

    We are getting the following error in 3.1 using an OpenDoc call when we call a large Crystal Report to PDF format...
    Error : 52cf6f8f4bbb6d3.pdf File is too large for attachment.
    It runs OK from BOE when given parameters that returned 44 pages. (PDF = 139 KB)
    We get the error on a parameter-set that returns 174 pages when run via CR Desktop or as a SCHEDULED Instance. (PDF = 446 KB).
    Client application can't use the SDKs to SCHEDULE Instances - only configured for OpenDoc calls.....
    The BOE server is running on SOLARIS - and it's is a 2 Server CMS-Cluster.
    The problem is SPORADIC, so I am thinking the issue is related to a specific setting on one of the servers.
    Any thoughts on where to start looking...?

    Problem is _not _with the number of Rows returned - it is an issue with the size of the PDF file that it is trying to move.
    Found a possible WINDOWS solution on BOB - need to find if there is an equivalent for SOLARIS...
    Check the dsws.properties on web server D:\Program Files\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\classes
    See if you can change any parameter to remove size limitation.
    #Security measure to limit total upload file size
    maximumUploadFileSize = 10485760

  • ReportExportControl  -- File is too large for attachment

    Hi all,
    Back with a exception again.
    Few reports deployed on BOXIR2 SP4 comes with an error as following
    com.crystaldecisions.report.web.viewer.ReportExportControl
    15bf5ea9377e1c1.rtf File is too large for attachment.
    Few reports take date range as input and generates result based on that. When date range is small report is generated without any problem. If is large and has large set of records(approx above 10K records) then comes up with the above error.
    Another set of reports whatever be the case throws this error.
    But when the parameters are set in CMS console and run in console report is generated without any problem what ever be the date range.
    After searching a lot no solutions in hand!!
    Please suggest solutions/possible scenarios / checklist to solve this issue.
    Thanks & Regards
    lnarayanan

    It turns out the report was so large it was basically overloading everything (disk space, cache sizes, timeouts, etc.) ... Here's the solution from the case:
    1) For page server and cache server
    Make sure location of Temp Files/Cache files has enough free space (more than 500 MB)
    2) For page server and cache server
    Minutes Before an Idle Connection is Closed = 90
    3) For page server
    Minutes Before an Idle Report Job is Closed = 90
    4) For cache server
    Maximum Simultaneous Processing Threads = automatic
    5) In the command line of page server and cache server, add
    "-requestTimeout 5400000" [without " "]
    6) Maximum Cache Size Allowed (KBytes) = set it to an appropriate value (for e.g. for 500 Mb, value should be 500*1024 = 512000)
    (This setting limits the amount of hard disk space used to store cached pages. If we need to handle large reports, a large cache size is needed. Maximum allowed is 2048 GB)
    After all this, an "Error 500 - Java heap space" happened.  The amount of memory allocated to a JVM application can be set using the options -Xms (the initial size) and -Xmx (the maximum size).
    Regards,
    Bryan

  • How can I insert a number of photos in a numbers doc without the file becoming too large?

    How can I insert a number of photos into a numbers doc without the file becoming too large?

    Use smaller photos.
    Seriously, reduce the file size of the photos in Preview, PhotoShop, iPhoto or other application before inserting tehem into the Numbers document.
    Regards,
    Barry

  • My mac will not copy more than one file at a time and gets locked up if the file is too large, my mac will not copy more than one file at a time and gets locked up if the file is too large

    my mac will not copy more than one file at a time and gets locked up if the file is too large, my mac will not copy more than one file at a time and gets locked up if the file is too large

    So now that you have repeated the same thing three times that doesn't make things any clearer at all.
    You are copying files from where to where?
    How are you attempting to copy files, software or click and drag?
    Any other detail would be helpful.
    Allan

  • "File is too large for attachment." using the Viewer SDK

    Post Author: CBurger
    CA Forum: JAVA
    I'm using the Viewer SDK to retrieve a report from BOE XI 2 SR2.
    This is done via the a piece of Java code ...
    ReportExportControl exportControl = new ReportExportControl();
    ExportOptions exportOptions = new ExportOptions();
    IReportSourceFactory psReportSourceFactory = (IReportSourceFactory) enterpriseSession.getService(ReportConstants.REPORT_PSREPORT_FACTORY);
    Object reportSource = psReportSourceFactory.openReportSource(report.getID(), Locale.ENGLISH);
    exportControl.setReportSource(reportSource);
    exportControl.setURI(reportPath.toString());
    exportControl.setExportOptions(exportOptions);
    exportControl.setExportAsAttachment(true);
    exportOptions.setExportFormatType(exportFormat);
    exportControl.setParameterFields(reportParameters);
    exportControl.processHttpRequest(request, response, getServlet().getServletConfig().getServletContext(), null);
    exportControl.dispose();
    The report is generated as an Excel file.
    If I call for a small Excel - no problem: a dialog pops up asking me to "save as ..."
    If I call for a larger Excel (about 20MB) - PROBLEM "File is too large for attachment."
    Unfortunatly I don't find any information in the log files.
    Any ideas?

    Has this ever been resolved?  We are having a similar issue.
    Thanks!

  • The flash builder 4.5 export released webapp file is too large

    now i am starting a web project of realizing live webcast. i developed a videoplayer based on OSMF.
    the problem is when i deploy my web app on BlazeDS, the released file is too large.
    below is the file list in my BlazeDS server.
    then what shall i do to futher reduce the total size of the webapp released file or what is the unnecessary swf file for my webapp?

    OK. Then it's not an Android sim but just an AIR sim...
    I wish it's possible to debug on the Android emulator. Flash Develop can do that.

  • "This text file is too large to edit" for a very small file

    Hi all,
    I uploaded a small JS script file, less than 2K,  into the Shared Components/Static Files. When I was trying to edit it, I got the error "this text file is too large to edit".
    Anybody experiences this ? Any solutions ?
    My Apex version is 4.2.2.00.11.
    Thanks,
    Vu

    Interesting. I have an SQL file that is about 4K. I copy this file to two files, one with extension .CSS and one JS then upload these three files into the Shared Components/Static Files. I can then edit the SQL and CSS, but I cannot edit the JS file.
    I guess this has something to do with the extension ?
    Thanks,
    Vu

  • .War file size too large on Sun One WebServer 6.1

    We are using Sun One Web Server 6.1. I am trying to deploy a .war file thru the admin interface, and it fails due to the .war file being too large (over 10 megs). I am new to this server and have been looking around to see if there is a config setting somewhere I can modify, but I can't find anything.
    Can anyone tell me if I can change the max size, and if so where?
    Thanks very much.

    Try this:
    Go to $SERVER_ROOT/bin/https/webapps/admin-app/WEB-INF/web.xml file and make a backup copy. Edit this file and in the servlet webappdeploy, insert an init param named maxUploadSize with a value in bytes specifying the maximum upload size. Example:
    <init-param>
    <param-name>maxUploadSize</param-name>
    <param-value>20000000</param-value>
    </init-param>
    Let us know how it goes.
    Thanks
    Manish

  • HT5731 how can I cancel or delete a movie i downloaded to my iPhone?  The file is too large and it is hung up during the download process

    How can I cancel or delete a movie I tried to download to my iPhone?  The file is too large and iTunes is hung up during the process of downloading.  I've tried to swipe from right to left but that doesn't produce a delete button....

    Slide your finger across the videos' listing in your iPhone Videos App and tap the red "Delete" button that appears.

  • What can I do for "File size too large"?

    Spent 9 hrs creating a slideshow that I saved.  Closed PSE 11 and reopened and can no longer find the slideshow.  When I select Find, Media type, Project, nothing appears, but there is a gray box in my grid that says "File size too large".  Is this my slideshow and if so how can I recover it?  I am sick as this was a large time investment for my daughter's wedding which is very soon!  Please help if you can.

    I don't know anything about slide shows but if a picture is too large this is just a warning message, if I click a pic with this message it does show up. Have you tried clicking the thumbnail?

  • The jar file is too large..........

    sorry^^|
    I have a problem....
    when I use the wtk to postting my code to be a .jar file.
    I detect the .jar file is too large (184k)
    it's include all midp package but i was not use all of them
    how can i do to solve this problem^^"

    Remove what you don't need, use smaller files/images/sound files etc. And of course try to use obfuscator - it can decrease size of the file to 1/3 in some cases.

  • Error: f14627469cba51.pdf file is too large for attachment

    Hi,
    Recently we migrated lot of crystal reports from BO XI R2 environment to BO 3.1 SP2 FP 2.5 environment, these crystal reports are integrated with the application.
    Input parameters are given through the application using the Open Document URL and the report will open through the infoview.
    This particular error arises when we try to open the report as PDF using Open Document URL,
    Please find the URL below
    http://bodev.com/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=AUwcueYTQwtLhWDlil29Nvc&sOutputFormat=P&lsS@INVOICEDATE=1/31/2010&lsS@REFSERVICEID=1&lsS@BILLINGCYCLE=1&lsS@INVPREFIX=SC1001&lsS@GUID=99b18bcb-9470-4a49-948d-73961c149f5e
    But we are getting the following error
    "f14627469cba51.pdf file is too large for attachment"
    Please help me out to resolve the issue.
    Thank You,
    Palani Kumar
    +91-9840865865

    Hi Jeff,
    Did you figure out the solution to this problem?
    I also getting the same problem while refreshing crystal report from 3rd party tool using dswsbobje service session
    "Failed to retrieve binary view of the report. 14546ada1c151418.pdf File is too large for attachment. (WRE 02527)"
    Please let me know if you find any solution.

  • File is too large for attachment - BO Integration Error

    I developed Crystal reports (using Universe)in CR XIR2 and deployed in BO XIR 2 Repository.
    Reports database is -DB2.
    I am able to preview the reports in CMC/Infoview.
    But when we are integrating our Application(Called GBS) to BO ,and when I am trying to open CR reprots from BO repository,it is throwing error " File is too large for attachment " .
    The report is not too big even ,it is having only 100 records.
    I am not sure why it is throwing this error?Did anyone faced the same error ever?
    Please let me know any resolution for this,as it is blockign for me.
    is it something related to the application (GBS) or  any Pagerserver/Cacheserver issue ?
    Will wait for any response.
    Nitin

    Has this ever been resolved?  We are having a similar issue.
    Thanks!

Maybe you are looking for

  • Vendor return delivery for excisable goods

    Hi, I have few queries regarding vendor return delivery of excisable items. 1) MIGO is done- Part 1 is done     J1IEX_P- Part 2 is done.    MIRO is done/not done. 2) MIGO is done-Part 1 is done.     J1IEX is not done.     MIRO is not done. 3) In case

  • Installation PB on Virtual PC

    Hi All, I'm Trying to Install A solaris 9 I386 on a Virtual PC. When boot using the Installation CD Setup loop on configuration Assistant and installation is not possible. When I'm using installation softaware CD1 I'm hanging after the interactive (o

  • My Ipod doesnt play every podcast

    It' s my third ipod. The first had an error. The second also. I don't know if the third has also an error. There are some podcasts which do not work on my ipod. They work in itunes but when i try to copy them on my ipod he says: "this podcast do not

  • Deploy forms and reports on web

    i want to implement three tier archi. using oracle9i app.server.i want to build a project in which i want to reside my application on middle tier and do want to install forms and report runtime environment on my company network at client side. can an

  • Integrating the punchout catalogue with the SRM procurement system

    I am a supplier working on a project to integrate my punchout catalogue with my client's SRM procurement system. - Where can I find technical information on OCI punchout in general? - Where can I find documentation on the PurchaseOrderRequest SAP-XML