Where's the new video component?

I just installed the 9.0.2 update (on my Mac Pro) which is
supposed to have a new video component that allows the use of h.264
video. However, there doesn't seem to be any new components and the
old FLYPlayback component still doesn't recognize anything other
than a .flv file. Is there a problem with the updater or am I
missing something here?

> try using NetStream/NetConnect on a video object. I
haven't
> tried this yet, but give it a shot.
That's a good thought, and it certainly does work with a
Video object
and AS3. However, I did try this with the FLVPlayback
component and, well
... it works -- but it's not especially intuitive. Not an
ideal situation,
unfortunately.
For one, it's difficult to browse for the non-FLV file (in
my case, an
MP4). Why? Because the file filter only looks for FLVs. I'm
on a Windows
machine, so I just typed *.* into the "File name" field of
the browse
dialog. That overrides the "Files of type" filter and that's
when I was
able to see my MP4s. After that, I selected my video file by
double-clicking on it. That updated the FLVPlayback.source
parameter to the
file path, as expected, but after I clicked OK (after a
verrrrrry long
pause), Flash gave me an error message, saying "Failed to
load FLV: [name of
file]." ("Hmm," I thought, "that would be because I didn't
ask for an FLV
file.") But I tested the SWF anyway, and the thing played
just fine. Which
means the IDE is now capable of using the latest Flash Player
to display (to
test, versus debug) SWFs. That part is good. I would have
expected the IDE
not to have such a hard time with it, though.
David Stiller
Adobe Community Expert
Dev blog,
http://www.quip.net/blog/
"Luck is the residue of good design."

Similar Messages

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • Where is the new Facebook integration on Mountain Lion?

    Where is the new Facebook integration on Mountain Lion?

    Welcome to the Apple Support Communities
    First, you have to add the Facebook account. Go to System Preferences > Mail, Contacts and Calendars, select Facebook and type your email address and Facebook account, so you will be able to post videos or photos on Facebook directly from OS X, post on Facebook on Notification Center, and receive notifications on Notification Center

  • Does the new Video iPod scratch as easily as the old?

    I'm thinkig aobut getting a new 80gb Video Ipod to replace my "old" 30 GB video iPod. Does the new version scratch as easily as the old?

    I've been to Bestbuy and Circuit City also, no scratches on any of the new video iPods yet. They must have switched to a scratch resistant plastic for the screens. I've looked at the new video iPods at the Apple store, Bestbuy, and Circuit City and none show the slightest scuff after a few weeks. The only scratch I saw was where someone intentionally damaged one of the screens with a knife or something.
    PC   Windows XP  

  • How can I add new content in iDVD to a DVD-RW disc which has ample remaining free space? After preparing the new video for burning and clicking on Burn to iDVD, I get a window saying the disc's already recorded and that I can either Erase or Eject.

    How can I add new content in iDVD to a DVD-RW disc with a video previously successfully recorded on it? (The disc has ample remaining free space.)
    After preparing the new video for burning and clicking in the File menu on Burn to iDVD, I get a window saying the disc's already recorded and that I can either Erase or Eject. My assumption has been that iDVD would automatically find the free space and continue with the new recording from there. I'd be grateful if anyone can shine light on this.

    There are, but not with a DVD written as a movie disk. It must be closed when completed, or it doesn't work.
    Apple's built in Burn utility also automatically closes any data CD, DVD or Blu-ray disk you burn. Doesn't matter how much space is unused, you can't use it. You'd have to use a more advanced disk creation app, such as Toast Titanium. I then have the option of choosing to write the data as a session:
    I can keep doing this until the disk is full. If I've written five sessions to the disk, when I put it in the drive, five CD/DVD icons will appear on the desktop since the OS will treat each session as if they are separate physical disks. At any point you choose Write Disk when writing a group of data, that means you're closing the disk, and again can't add anything after that. So if I had written two sessions, and the third was Write Disk, it's over. I can't put anything else on that disk.

  • Why is Apple not supporting Firewire on the new Video 60g or the Nano

    Does anyone know if there is a way to enable Firewire support on the new Video IPod or NANO. I cannot believe that Apple has released this product with only USB support. I am at 1 hr to upload 1000 songs out of 9000. Absurd.
    Is there an update or a way around this.

    I'm a big fan of Firewire myself but I guess it's just a lot easier to switch over to USB 2.0 as the standard.
    You're using USB 1.1, that's why your transfer rate is so slow.
    Do yourself an enormous favor and set your iPod to Manage Manually in iPod Options to avoid accidentally Auto Updating your iPod with USB 1.1
    http://www.apple.com/feedback/

  • Using the New Video Features in Photoshop CS6 | Photoshop CS6 Feature Tour | Adobe TV

    Adobe Digital Imaging Evangelist Julieanne Kost shows how to use the new video features in Photoshop CS6.
    http://adobe.ly/I5cUF2

    I am removing a dust spot from video clips taken during an aerial shoot. I have discovered that the only effective way to remove these spots effectively is to use PS6 and go frame by frame using the paint brush, clone stamp, and spot healing brush. It is very time consuming and mind numbing but the only thing that works with all tha movement of the aircraft and the ground below.
    My question:
    Right now to advance the clip one frame at a time - I must magnify the time line so to see the frame by frame lables. To advance to the next frame I must remove my cursor from the work area and go down to the time line and click on the next frame.
    How can I advance to the next frame with a keyboard stroke and not move my cursor out of the work area?
    Thank you in advance for any help.
    Tony

  • [svn] 3501: Adding the new CallResponder component.

    Revision: 3501
    Author: [email protected]
    Date: 2008-10-06 17:42:26 -0700 (Mon, 06 Oct 2008)
    Log Message:
    Adding the new CallResponder component. This is best used from MXML to implement
    a specific invocation of a specific RPC service operation. It separates the use of the
    RPC operation from its definition.
    QE: New class (and MXML component)
    Docs: Yes - see the asdoc for info.
    Checkintests: pass
    Reviewer: Pete, Seth, Ed, Sameer
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/rpc/manifest.xml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/CallResponder.as

    Did you import the 3 required SC:
    SAP-JEE,
    SAP_BUILD
    SAP_JTECHS
    the DC: sap.com/tc/ddic/metamodel/content is part of SC SAP_JTECHS
    You can brouse all imported DCs from CBS
    SAPs should be 161. The one you are looking for is N:31 in the SAP_JTECHS
    If you have problem with the local bild, than you havn't checked out all DC to your NWDS.
    Regards, Angel

  • Acrobat 8 - Where is the new link?

    I have to reinstall Acrobat 8 that was preinstalled on my laptop. It was reformatted due to malware and I have to reinstall everything. I have the disk and hte serial number but my laptop does not have a CD drive.  The link that was previous listed did not work.  Where is the new link?

    ProDesignTools has Acrobat 8 Pro for download here: http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html
    Note: Very Important Instructions
    You need to have a free Adobe account and be logged into it to use the links below, as Adobe sets a session cookie on your browser that allows you to access the direct download links.  Otherwise, you will receive an “access denied” or “resume your download” message preventing the connection.  So please follow these instructions carefully or the links will not work!
    Adobe recommends temporarily turning off any surfing restrictions you might have running, like site or cookie blocking, filtering, firewalls or antivirus software.
    Click «HERE» to visit this page and then select the “Download Now” button at the bottom.
    If asked, then sign in with your Adobe ID or take a minute to create one for yourself.
    Now close or cancel any windows that may pop up or any downloads that started.
    OK! Now you’re logged in at Adobe with the trials cookie set, so you can instantly download any of the software below.  Just make sure you have enough disk space.
    Download the files either by clicking directly on the DDL links, or by right-clicking and choosing “Save Link As…” on the popup menu – and save all files to the same place.
    Then follow the product installation instructions here.

  • Where is the new version of iTunes?

    Where is the new version of iTunes that allows ringtone purchases, etc?

    seanmcgpa wrote:
    Where is the new version of iTunes that allows ringtone purchases, etc?
    Jobs specifically said that it will be available tonight.

  • ABAP Sneak Preview SAP NetWeaver 04s: where is the new Editor?

    It's so nice to have NetWeawer 2004s up and running...
    Anybody knows where is the new ABAP Editor?
    As I know, it should be included but I cannot see it...
    I'm using the SAPgui 640 Final Release - Patch 8.

    i am not sure whether it was there in patch 8, but i upgraded to patch14 and activated the new editor from
    se38->utilities->settings->ABAP editor
    here choose radiobutton front-end Editor (New)
    warning:- dont apply gui patch 15 it has got some problem. when i applied patch 15 i couldnt event start the sap logon pad.
    Regards
    Raja
    Message was edited by: Durairaj Athavan Raja

  • The usual - Where is the new 10.5.8 for My Settings

    The usual … Where is the new 10.5.8 for My Settings

    Would it be possible to post a notice in this forum that a new OS version profile setting is available when the settings have been updated? This might help reduce the speculation but primarily it would serve as a reminder for users about keeping their profiles updated....

  • Where is the new update for N95 US Versions?

    Where is the new update for N95-3 and N95-4? i have this two phones and i fell disappoint and mad becuz i bought this expensive cellphone and we have no support from Nokia.. this is no fair we are consumers like any other in the world. And the european model of N95 has a lot of updates and we r exent of the updates and support.. thats no fair my cellphone cost a lot of money and no support? only one update for year?.. my cellphone N95-4 compared to the European model is a garbage. Because the European added many things with update.. like autorotate and improve speed.. im about not to buy another Nokia because we have no support !! Nokia set aside the American market.
    THATS NO FAIR !!

    Actually, it's the American market that set Nokia aside.
    Nokia initially refused to allow network operators to customize their phones' firmware. Consequently, American network operators all but stopped buying Nokia phones. Nokia has since relented and does carry out a certain amount of trade in America now, but they're nowhere near as popular over there as they are elsewhere in the world.
    Add their lower popularity in America to the fact that you all use different frequency bands from the rest of the world, which means a different set of hardware, and you begin to understand why the American market is a bit of a bugbear and why Americanised products are low priority. If American networks followed the same standards as elsewhere in the world you'd all benefit from the same updates.
    Note that this is just personal speculation and not necessarily Nokia's official standpoint. I am not a Nokia employee.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • The iPad is here, where is the new OS for the iPhone now?

    Where is the new operating system for iPhone to go with the iPad?

    My critiques of the iPad (in case Apple is listening)
    1) NAME
    iPad? Didn't Apple do research to see that iPad was already a skit on SNL for feminine hygiene products? Let the non-stop mocking begin. Cancer research firm Enero 6 Corp. owns the domain iPad.com. iSlate is a much cooler name and Apple owns the domain iSlate.com according to MacWorld.
    2) LACK OF BUILT-IN iPHONE
    If Apple wanted the iPad to be revolutionary, perhaps building the iPhone into the hardware would have made amazing jumps over other tablets and readers.
    3) MARRIAGE WITH AT&T
    Apple didn't learn from the disaster of marrying AT&T and are likely continuing that exceptionally short sighted relationship, limiting customer base and interest since millions simply loathe AT&T - and with great passion - and will not leave their carriers.
    4) TWO SEPARATE DATA PLANS FOR iPAD/iPHONE USERS
    Continuing with number three, Apple locks the iPad so that you must pay for wifi service. Is that in addition to your iPhone or part of the same package? Most likely different since AT&T charges per unit on the iPhone. Who really wants to pay for two different data plans to have an iPhone and iPad? I guess that's genius on Apple's part, they sell two items, though is there a kickback from AT&T for the data plans? Again, Apple limits their product line only to people willing to pay for one or possibly two data plans with one provider of service.
    5) MISSING FEATURES
    Camera/iSight, iPhone, iWork & iLife. If they're going to market this as great for travel, why not include these functional applications so people can do work while taking the commuter train from NYC to Boston or DC?
    What else am I missing?

  • Where did the Home Video tab go?

    I have a MacBook Pro (15-inch, Mid 2009) running Yosemite 10.10.2 and iTunes 12.1.50.  I also have about 900+ home videos taken by my various cameras and encoded using HandBrake or iMovie over the last 10 years.  30 of these movies have been on my phone for over a year and I regularly watch them.
    I updated my iPhone 4 to iOS8.2 last night by doing a restore as if a new device.  This was recommended by a tech at the Apple Store since so much of my phone's  16GB was taken up by the operating system.  After that, I suddenly had more than 3GB more free space.  Yay!
    But - right away, I noticed that only 3 of my 30 home videos had synched.  I had those 30 in a special playlist so I wouldn't have to sort through the other 870+.  I decided to remove them from the iPhone and try again, but it didn't work.  So, I decided to remove them from the playlist and add them again.  That's when I noticed that I cannot find the Home Videos tab in iTunes on my Mac anymore.  It was there earlier last night because I had just added new ones to iTunes (visual confirmed they were in the Home Video tab once added to library).  I tried to import all 900+ home movies, and it seemed to do something - but I still can't see them.
    I tried to search for "Home Video" in the iTunes help menu - no hits.  I always use "Home Movies Favourites" as the Genre for the 30 I put on my phone, so I tried searching for that in the movie search box.  Nothing found again.  I tried searching for individual file names.  Nothing.
    So - where did Home Videos go and how can I get it back?  My files are still on the hard drive, but I have spent hundreds of hours updating the tags in iTunes with irreplaceable info like dates, locations, memories, etc.
    Apple - please stop making such drastic changes to iTunes every time we just finish getting used to your other changes!

    Hello! I said... I want the ability to input analogue video into my camcorder so I can continue to transfer VHS and input and record video from other sources. The new HD cameras on the market will not allow you to record video from any source except for the lens.
    I have HD cable box. I want to record my HD programs from cable (HBO, Starz, etc) to my camera, download the video to my Mac from the camera and then edit them in iMovie and create professional looking movie DVD's in iMovie.
    iMovie HD can work with mini DV HD cameras and HD video. I was not aware of a system requirement for working with HD content.

Maybe you are looking for

  • Best way to format my 16GB flash drive for Mac and PC transferring large power point files?

    best way to format my 16GB flash drive for Mac and PC transferring large power point files?

  • Changing Media Start and End of Logged Clips

    This should be really simple, and I'm sure I'm just overlooking something. I am trying to recapture some clips in Final Cut Pro and it was fine until I came to a clip that gave me the "timecode error - pre roll, post roll, etc" message. The Media Sta

  • Can i use uncompressed waves audio in DVDSP

    I want to use uncompressed Wave audio along with my Mpeg2. When i do a built and burn to disc i don't want DVDSP to compress it to AC3 or whatever compressed format. Is there a way to tell it to keep exactly the original file you've use when authorin

  • IBook G4 - External Display - Sony HS75P

    Hiya, I am thinking of buying a new external display for my iBook G4 (bought some 2 years ago). The display I have chosen to buy is Sony HS75P which seems to have great reviews. My question is - will my iBook G4 be good enough to handle the big 17" m

  • Iphone wont restore after boot loop

    heres what happens i put the phone into recovery mode (with the home button and plugging cable in) because power button is broken, the connect to itunes screen shows and once in itunes i click restore then it says waiting for iphone, this is when the