Flash Compression

I just started using Flash 3 days ago... (still got 28 days
left.. lol) Any
way I have some compression questions:
I have made a clip of me morphing into my son with another
program, and
exported each frame as a jpg, then I imported jpg's into
flash. I know have
made a flash movie/document that morphs back and forth by
editing each of the
24 frames used me to morph me into my son, then I could not
find a play
backwards command or action so I just copied and pasted the
frames, then
reversed the second set. I am wondering since the asset is
same for two frames
in the file, if flash added the same asset twice wile
compressing the file.
Second question: I have tried every thing I can find inside
of flash to get a
smaller file size. I started out with the defalt jpg
compression set at
something like 80, and moved it to 15 and that didn't do it.
I changed the
quality from high to low and still no change in file size
what so ever.
Thank you for your time,
Eric

From what you're describing I guess you're changing the jpeg
compression in the Publish Settings-Flash dialog box, right? Did
you check whether your jpegs are set to use the default document
compression?
To do this, right-click them in the library and choose
Properties....
Make sure that "Compression: Photo(JPEG)" and "Use document
default quality" are selected.
Good luck
Wolfg

Similar Messages

  • Why does Flash resize images coppied from Photoshop?

    Hi Everyone,
    I have images in photoshop that are exactly 700 X 298 pixels.
    However, when I copy and paste them into Flash, Flash actually
    changes the dimmensions to 700.1 X 297.6.
    I don't understand. I have all my Flash compression set to
    100% and best, 32 Bit, etc. Do you know why this happening?
    Thanks :)
    John Bruso
    Web Designer
    Sheridan College

    copy and paste is never the best option between programs -
    try File > Import. What's the dpi?
    Chris Georgenes
    Animator
    http://www.mudbubble.com
    http://www.keyframer.com
    Adobe Community Expert
    *\^^/*
    (OO)
    <---->
    jbrusosheridan wrote:
    > Hi Everyone,
    >
    > I have images in photoshop that are exactly 700 X 298
    pixels. However, when I
    > copy and paste them into Flash, Flash actually changes
    the dimmensions to 700.1
    > X 297.6.
    >
    > I don't understand. I have all my Flash compression set
    to 100% and best, 32
    > Bit, etc. Do you know why this happening?
    >
    > Thanks :)
    >
    > John Bruso
    > Web Designer
    > Sheridan College
    >
    >

  • JPEG2000 problem in Flash

    Hi!
    I export from Photoshop a JPEG2000 file and when I import it
    in Flash it becomes darker (around 6% darker). And this is a
    problem because the background color doesn't match.
    http://i12.tinypic.com/2cqleeh.jpg
    When I open the same JP2 file in Photoshop the colors are OK.
    Any ideas what is going on?
    Bad JP2 file settings? Bad JPEG2000 support in Flash?
    Thanks for help in advance.

    There is no reason to use JPEG2000
    Best to export as a pixel-perfect BMP and let Flash compress
    it.
    Or, if you have a particularly clever JPEG compression
    program .. there are
    some specialized ones around .. use that (as long as its
    non-progressive and
    produces uses RGB), and import the JPEG and use imported
    data.
    Or (if you need transparency) use GIF or PNG (although PNG
    can cause
    problems due to issues with color-spaces)
    Jeckyl

  • Flash encoder

    Hi everyone,
    I am pretty new around here and have a question/problem.
    When I try to encode wmv file about have way done it shuts my
    computer down, what can it be? The video is exactly 1 minute long
    that needs to be encoded to flash

    Thanks for the help!  I am looking for a plug in for compressor, so Sorenson squeeze is stand alone, I believe...
    Anyway, I have the Flash (from Adobe?) plug in wich is also On2...probably a version of the Flix one that doesn't work.  I have come to some conclusions:
    1. Wildform, which took over On2 Flix says they will respond to tickets but they don't.
    2. My version of FCP, Compressor  (FCS3) doesn't recognize the Flix interface or codec the way it used to. It is just not compatible anymore. I found a 'work around' which I won't go into, because it worked, but produced problematic results...horizontal artifacts.
    3. I should let go of trying to make Flix work.
    4. The On2 codec that emerges on the drop down menu in my interface for Flash compression in Compressor is probably the best codec I will find.
    5. I like the option of simply changing the .mov extention to .flv but that option, h.264 encoding for Flash will work for me in a year or so... It's my understanding that older Flash players won't play the h.264 clips. It is essential for me to have the lowest common denominator for this purpose (since we have 9 options for our viewers anyway)
    That's the result of my research and testing, for anyone who is similarly banging their heads against the wall.
    Thanks! 

  • Sound Compression

    Hi, i just wanted to know if there is a way not to let flash
    compress the quality of audio file when SWF is published.
    When i import an audio file (size 135 KBs, sample rate 32
    KBPS) and i publish the file (with settings, 32KBPS, Quality Best),
    the published SWF file size is 127 KBs and the quality of the sound
    is lower than the quality of the orignal sound file.
    Is there a way to make flash not compress the sound file?
    Thanks,
    Uzair Rahim

    As far as I have been able to determine the answer is no. It
    seems like there should be, but it doesn't seem to work.

  • Using External .swf Linkage Audio

    Because flash doesn't loop external mps file correctly, there
    is always a pause in the loop. The work around is to load the AIFF,
    or WAV, file into the .fla and let Flash compress the audio file,
    then the loop works without the pause. The problem with this is
    that when I have many music loops it takes a long time to publish
    and test, so in AS 2 I would publish .swfs that compressed the raw
    audio file and gave the audio file a linkage. Then I would load the
    .swf into the main .swf and access the loaded .swfs linkage file.
    The code looked like this:
    _root.createEmptyMovieClip
    ("soundsMC",_root.soundsMC.getNextHighestDepth ());
    instructionsContainer = _root.soundsMC.createEmptyMovieClip
    ("instructionsContainer", _root.soundsMC.getNextHighestDepth ());
    instructions = new Sound (instructionsContainer);
    instructions.attachSound ("instructions theme");
    This worked perfectly. But this method does not work in AS3.
    This is what I've tried in AS3:

    by just moving code around I got it to work. I changed this
    line:
    var FishHoleOldMusicMCClass:Class =
    libMedia.loaderInfo.applicationDomain.getDefinition("FishHoleOldMusicMC")
    as Class;
    To this:
    var FishHoleOldMusicMCClass:Class =
    loader.contentLoaderInfo.applicationDomain.getDefinition("FishHoleOldMusicMC")
    as Class;
    this is the code:
    public function initView ():void {
    loader = new Loader ();
    targetStage.addChild (loader);
    loader.contentLoaderInfo.addEventListener (Event.INIT,
    loarderLoaded);
    loader.load (new URLRequest("sound/fishhole_old.swf"));
    private function loarderLoaded (event:Event):void {
    trace ("loarderLoaded");
    loader.contentLoaderInfo.removeEventListener (Event.INIT,
    loarderLoaded);
    var FishHoleOldMusicMCClass:Class =
    loader.contentLoaderInfo.applicationDomain.getDefinition("FishHoleOldMusicMC")
    as Class;
    var music = new FishHoleOldMusicMCClass();
    music.play(0, 1000);

  • Images with clean lines show up with steping

    I'm building some site content with flash and having a heck
    of a time with "stepping" or pixelized looking edges on
    very good quality crisp images. How can I stop this from
    happening?
    I have also found this when creating flash galleries through
    Lightroom.
    So I'm guessing it has something to do with either the
    default way flash compresses or handles the image.
    How can I resolve this?
    There must be a way to stop flash from doing this.

    No there is no rotation applied to any images.
    However many of the shots are architectural images and have
    lines which are not 90 or 180 degrees.
    these are the ones that show problems. Jagged edges which are
    not cool and degrade the images
    that are a very large part of the visual user experience.
    Any ideas as to why this is happening and how to fix
    it?

  • Decreasing JPEG quality sometimes works

    I've done about a hundred flash files with imported jpegs and
    have had no trouble getting the global jpeg quality setting to
    affect them. Now I've got a similar project of ten fla files that a
    contractor did and I can't get the Jpeg quality setting to affect
    the published files.
    The point is that I know this setting can have an effect on
    imported jpeg bitmaps because I've done it so many times now.
    Now, in my own projects, all the jpeg bitmaps are set to "use
    document default quality" and the global setting affects them. The
    contractor's projects have the same settings but the global setting
    has no effect.
    The one thing I'm suspicious of is that her bitmap properties
    point to originals that are on her computer, not mine. Could the
    fact that her sources are unavailable have anything to do with
    this?
    Rob Mack

    Okay, here's the answer. My previous several thousand jpeg
    images had been saved with the progressive switch turned on.
    Evidently, Flash compresses bitmaps in non-progressive jpeg
    format. If the asset is already in this format then flash defaults
    to using the original file as is. However, if the jpeg asset is in
    progressive format then Flash has to recompress it.
    The effect is that progressive jpeg files can be affected by
    the project's global jpeg quality settings but non-porgressive
    jpegs can't be affected by the settings.
    How this affects a user depends on what you want to do. In my
    case I'm doing dozens and dozens of files that are much like slide
    shows and it's most convenient to adjust compression in the project
    settings to get the file size down. For most other users, they've
    gone to a bit of trouble to get a jpeg image "just right" and don't
    want the global setting to affect it. In most users cases they'd
    want to save non-progressive jpegs, in fact since the project
    setting will skip them this is the better way to go when mixing
    jpeg and png bitmaps.
    For someone in my position where you need to be able to
    recompress the bitmaps, you either save jpegs with progressive
    switched on or you save the bitmaps in PNG format. Overall, using
    PNG will probably cause less overall image damage but it increases
    your storage requirements quite a bit.
    So, what if you saved the jpegs in the wrong format? Maybe
    the best choice would be to go back to photoshop and set up a batch
    action to resave everything with Progressive on or off. Then in the
    FLA file you can select all the bitmaps and update them in bulk.
    Rob Mack

  • Converting .flv in MPEG Streamclip - video 'fuzzy'...

    Hello - I converted my flv files in MPEG Streamclip, to DV; Qtime; AVI -- also downloaded Perian, so that I could use downloaded w/videos from YouTube, etc... I then imported them into Final Cut, however, I noticed the video quality isn't as good, and a bit pixilated/fuzzy. Is there a way to make the video more crisp/clear, when converting flv in MPEG Streamclip? Thanks!

    For flash compression i would recommend you use On2 VP6 codec, instead of the sorrenson spark codec. As far as making them clearer, unfortunately you get what you put in. So taking a FLV which is a delivery format and converting it to a video format you are not going to get any better quality then the original clips.
    For a conversion setting in mpeg streamclip, i recommend Apple DV/DVCPRO-NTSC, Quality 100%, Sound Uncompressed.

  • Audio is off sync towards end of exported film

    I am having an issue which makes no sense so here goes... I animated a short piece which some lipsync in it. I exported it via the Media Encoder. It works perfectly at the beginning but the last two lines of dialog are off a number of frames which makes no sense. The preview in Flash works fine but when I render it the lines are off whether it's swf, flv, mp4 or any format Flash can spit out. Both CS 6 NAD Flash CC do this yet like I said if you play it in the timeline it's dead on sync.
    The frame rate is the same in the file and the exporter so that's not it. I can't figure out why. Any thoughts? It was animated in Flash CS6 and then rendered in Flash CC because Flash CS6's rendering is a bucket of poo at best. Any help would be greatly appreciated.

    Thanks for the tip but I was trying to avoid having to put the clips into a video editor because that tends to cause it's own problems with sync as well. I actually found my answer via an obscure link to some comment on a forum detailing that .wav files (which I was using) will NOT stay in sync in Flash (regardless of the version) due to the particular way Flash compresses them. I switched all the audio to .aif and bam... instant sync. It sure would be nice if the default sound format Adobe uses in thier own Audition program would be compatible with ther own software! After all, wasn't that what the whole unification of the Creative Suite was about? So that all of their 'suite' would work with each other seamlessly?

  • Only some audio is off sync after Quicktime export

    I am cutting simple man-on-the-street interviews together to build a narrative. I am shooting on a Sony HVR-V1U in HDV. I import everything fine, edit it, then export to QT using the following settings:
    H.264
    Video bitrate: 1372 kbits/sec
    Frame rate: 29.97 for 25fps
    Frame size: 640x360
    Multi-pass
    Quality: High
    Sound: Format: AAC
    Sample rate: 44.1 kHz
    Stereo channels
    128 kbps bitrate
    When I play the QT, some of the voices are fine, but others the video is off sync from the audio by around 15 framse, and I have NO IDEA WHY. I've tried messing with the settings, re-importing, and nothing works. And the fact that it happens to some clips and not others, has left me just baffled. I've had to just re-export manually adjusting the audio. Anyone else have this problem? Any solutions or advice that I could at least try?
    Thanks!
    Mike

    Thanks for the tip but I was trying to avoid having to put the clips into a video editor because that tends to cause it's own problems with sync as well. I actually found my answer via an obscure link to some comment on a forum detailing that .wav files (which I was using) will NOT stay in sync in Flash (regardless of the version) due to the particular way Flash compresses them. I switched all the audio to .aif and bam... instant sync. It sure would be nice if the default sound format Adobe uses in thier own Audition program would be compatible with ther own software! After all, wasn't that what the whole unification of the Creative Suite was about? So that all of their 'suite' would work with each other seamlessly?

  • SWC PNG's invisible when compression is set to JPEG in Flash Builder 4.7/AIR 3.4

    Moved my ActionScript Mobile Project game from Flash Builder 4.6 / AIR 3.2 yesterday to the new release of 4.7 / AIR 3.4. One side effect was that when my PNG's in my assets SWC were set to use JPEG compression instead of PNG, they are invisible at runtime. I haven't found any mention of this when searching so far. I can just use PNG compression for now, but it's nice to have the choice. Anyone else run into this problem?

    I haven't seen this come up, however you might want to give our latest AIR 3.5 build a try (12/11/2012 - AIR 3.5 Runtime and SDK Update).  If it still occurs, could you please open a new bug report on this over at bugbase.adobe.com?  Please post back with the URL so that others affected can add their comments and votes.

  • Some of Photo (JPEG)-compressed images by Flash Pro are not shown in AIR app (3.7/3.8)

    Does anyone see this issue happening? In Flash Pro it's OK, but in AIR, it's broken.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3558175
    Problem Description:
    Some JPEG-compressed images in swc produced by Flash Pro CS6 is not shown in AIR.
    Steps to Reproduce:
    1. Create a fla with Flash Pro CS6
    2. Put a png image in it and open the property of the image to make sure its compression option is Photo (JPEG)
    3. Produce an swc out of the fla
    4. Create an AIR app that shows the contents in the swc
    Actual Result:
    All images are shown
    Expected Result:
    Some of the images are not shown (nothing is shown where they are supposed to be)
    Any Workarounds:
    Use Lossless (PNG/GIF) for all images

    i was able to get it to work from a suggestion in another thread: if you write a JSFL that goes through all your bitmaps and makes sure they do not uset he default compression of the document, but instead use custom compression (it can match the default however). this worked for me

  • I'm getting green flashes when I compress my mpeg2 files....

    Does anyone know why I'm getting green flashes when I compress my movie for DVD Studio Pro? It plays (relatively) fine in FCP, but when I compress it (using Compressor) for DVD output I got a movie full of green flashes.
    It's really annoying and I can't figure it out. I've had nothing but problems with FCP.
    Thanks,
    Vince
    17" PowerBook G4   Mac OS X (10.3.9)  

    Does anyone know why I'm getting green flashes when I compress my movie for DVD Studio Pro? It plays (relatively) fine in FCP, but when I compress it (using Compressor) for DVD output I got a movie full of green flashes.
    It's really annoying and I can't figure it out. I've had nothing but problems with FCP.
    Thanks,
    Vince
    17" PowerBook G4   Mac OS X (10.3.9)  

  • Flash file 1920x1080 (touchscreen) compressed to website version 945x532

    Hi
    We have create a flash file for both Touchscreen TV and Website.
    The document frame is is 1920x1080 however we would like to export the project so it can be seen on the website at the correct compression.
    Is there a way to export the SWF to the required 945x532.
    I know how to export it in the HTML however this reads the same SWF that is still too large in file size (not web friendly).
    I could pull the compression down to say 10% before exporting the SWF however there must be a better method.
    Thanks
    Craig

    Thanks Iranten however my problem is not scaling the swf size as I can change that in dreamweaver or directly from flash by specifying the frame size.
    I am trying to find out what the best method for scaling down the frame size and compression with in flash.
    My current project is 1920x1080 and the images are all high resolution so they look good on the touchscreen.
    I am wondering if you can reduce the frame size in flash and export the SWF file out compressed as a web version.
    In short to avoid having to recreate the whole project in a smaller version for the web.
    I hope this makes sense.. been working all day and my head is starting to spin out...

Maybe you are looking for

  • Can't find certain music on Zen Style

    %?Hello! My partner has a Style and whilst most of it works fine, one particular album we have loaded onto it cannot be found when trying to play it on the device. The computer recognises it (both WinAmp and Creative MediaSource Organiser, as well as

  • Blue Ray Burn

    Please excuse me if I am not in the correct forum for this question. I have been trying to burn a blue ray movie with toast and I keep getting an error stating "interface error 4, the connection is not stable". I have a Pioneer blue ray 205 burner. I

  • Error MEPO000

    Hi friends , When i am saving the PO , the system showing error message " Purchase order still contains faulty items Message no. MEPO000" , so what should be the problem . When give tax code in invoice tab then only it appear . Please reply , Raghu

  • CUPS 8.0 end user login issue

    Hi All, I am having CUCM 7.1.5 and CUPS 8.0(4) installed. The problem is when I tried to login the CUPS user page the it says "login failed". The CUPS intergration with CUCM seem to be fine because all the end users can be seen in CUPS. But I am not

  • Interactive 3D

    I have been tasked with creating an interactive moulding page like the one that I'm listing below. I was hoping that someone on these forums would have some idea about how it was created. I could really use a push in the right direction with this. Th