How to view local videos on iOS mobile device

How do I view local videos on my iOS device running an Adobe Air app? I know how to view the CameraRoll for iOS in Flex on Adobe Air, but the CameraRoll class only brings up photos, no videos.  When I use:
if (CameraRoll.supportsBrowseForImage) {
                                                  var roll:CameraRoll = new CameraRoll();
                                                  roll.browseForImage();
                                        } else {
  trace("Camera Browsing not available");
The cameraRoll instance that is brought up only shows photos, no videos.  Any ideas?

+1  I need this as well.
It looks like it's simply not available in CameraRoll - is support planned?  What are other possibilities - File?  Navtive extension?
Would AIR even be able to play typical phone video formats?  From a quick search, it seems that the iPhone captures h.264 in a mov container, while at least one Android phone captures MPEG-4 in a 3gp container.  I'll try transferring such videos to my computer and embedding them in a test app just to see if they play.
Thanks for any insight!
ETA: The docs for NetStream list h.264 and 3gp as supported formats.  From my testing, however, NetStream does play the iPhone .mov file, but does not play the Android .3gp file.  A Loader plays neither.

Similar Messages

  • How to view Crystal report under iOS ?

    Hello,
    I'm new with Crystal reports.
    In  BI 4.1 SP2 Patch 3 LaunchPad I have in " Preferences / Crystal report / View format":
    (x) Web (no downloading required)
    Yet, when I try to view Crystal reports on iOS mobiles, I've a message saying I have to install "Flash Player 11" !?!
    => impossible with iOS !
    Is it a bug ?
    Do I actually need Flash plugin to view Crystal reports ???
    If yes, "no downloading required" is not true...
    What is the best way to view Crystal reports on iOS mobiles ?
    In fact, I use Crystal reports provided with auditing Universe.
    They don't seem to be available in WebI format like with previous versions of BO.
    Regards,
    Stéphane.

    hello Stéphane,
    the prompt / parameter dialogue is the piece that uses flash.
    you can still view reports without the prompt dialogue but if you need parameterized reports then you have to build an html front end containing the controls to target the report. you can do that with webelements. please see this blog post here.
    your other choice is to get / purchase the mobile add-on for crystal reports server or businessobjects enterprise.
    -jamie

  • Video playback on mobile device

    Hello,
    I'm new here and probably this was asked before me, but I spent a lot to search on the net and actually couldn't find much.
    I'm developing a web based application dealing with video - it should be controlable and have to interact with other elements of the app. The client now asks mobile apps - for Android and iOS, that should have same features.
    I looked for solutions to play video on mobile device using Flex and building mobile apps but nowhere could find a proper explanation and results about framerates and performance. The other problem I think will be that the mobile device should play streamed video (which can be encoded in any suitable format) as well as native video - usually h.264, that as far as I understood, is not possible on iOS (I coudn't find out about Android).
    On my Android device I can play very smoothly even web videos (in the browser) that are not "optimized for mobile" as it pops up during playback. I made a test and build a simple app that just plays a remote video using the Spark's VideoPlayer and its framerate was OK but the picture was terrible - some strange coloured lines appeared.
    Is there anybody who has more info about video playback on mobile device, codecs, components etc. I need that info to make the choice to stick with Flash development for all the apps or to go for native development with platforms' SDK.
    Thanks

    Can you say even more about what it is you want to do? I mean, what will the application do, not what are the technical aspects of how it will work?
    For a point of comparison, look at this thing I did:
    http://www.cartoonnetwork.com/mixit/
    If you try out the Make page, both the template ones and the from scratch one, as well as the View page to see the playback unit in action. Is what you're going to do anything like that?
    I have tried the playback part of this as a mobile app, and it so very nearly works ok! Amongst the many problems are that the overall data rate needed is quite high, and mobile devices aren't as consistant or high bandwidth as desktops, the external swfs often need code in them, so that rules out iOS, and to do the layering involved rules out H.264.
    At some future time there will hopefully be StageVideo that can use H.264, but I don't know when that will be, or whether it will be responsive enough (FLV is much faster to connect to and play than H.264).
    Incidentally, even in the Objective-C world you can't lay things on top of the standard iOS H.264 player. To do that you have to use the AV Foundation class, so it's fairly low level programming. Using FLV in Flash is a lot easier!

  • Streaming audio-video on the mobile device

    Please, I must do the streaming audio-video on the mobile device using a server standard.
    I must to program the application for the server using j2se:in this case how i can send the file audio/video?This file have specifies classes?
    For the client i must using the j2me:in this case how can receive the file audio and creating the player?
    Thanks.

    Hi, please help,
    I have problem in this area also,
    am intending to stream audio and video data to mobile phone using j2me for my bs project.,
    is that true, midlets can only 'plays back' one file at time specified by url?
    I want to store many files in database( e.g ms access), and call them to midlets, to make some how interactive and real,because i have tomcat server installed in my pc.
    is this possible?
    How can i call file stored beyond path of WTK ?
    can i store audio/ video file in ms- access?
    Please, please help !
    thanks in advance.
    Message was edited by:
    nbkamani

  • IOS Mobile Device Management - The SCEP server returned an invalid response

    I am in the process of writing an open source iOS mobile device management module in Java. For this I am referring the Apple provided Ruby code at [1]. I have set this up and it works fine for me. Now I need to convert this code to Java. So far I have accomplished to do that up to PKIOperation. In the PKI operation I get "The SCEP server returned an invalid response" which I believe is due to wrong response I sent to device upon PKIOperation.
    However when I do search on the internet I get this is something to do with the "maxHttpHeaderSize" as I am using the server as Apache Tomcat. Although I increase that since still it does not get resolved.
    Here is the code I need to convert - taken from Apple provided Ruby script
    if query['operation'] == "PKIOperation"
        p7sign = OpenSSL::PKCS7::PKCS7.new(req.body)
        store = OpenSSL::X509::Store.new
        p7sign.verify(nil, store, nil, OpenSSL::PKCS7::NOVERIFY)
        signers = p7sign.signers
        p7enc = OpenSSL::PKCS7::PKCS7.new(p7sign.data)
        csr = p7enc.decrypt(@@ra_key, @@ra_cert)
        cert = issueCert(csr, 1)
        degenerate_pkcs7 = OpenSSL::PKCS7::PKCS7.new()
        degenerate_pkcs7.type="signed"
        degenerate_pkcs7.certificates=[cert]
        enc_cert = OpenSSL::PKCS7.encrypt(p7sign.certificates, degenerate_pkcs7.to_der,
            OpenSSL::Cipher::Cipher::new("des-ede3-cbc"), OpenSSL::PKCS7::BINARY)
        reply = OpenSSL::PKCS7.sign(@@ra_cert, @@ra_key, enc_cert.to_der, [], OpenSSL::PKCS7::BINARY)
        res['Content-Type'] = "application/x-pki-message"
        res.body = reply.to_der
    end
    So this is how I written this in Java using Bouncycastle library.
    X509Certificate generatedCertificate = generateCertificateFromCSR(
                    privateKeyCA, certRequest, certCA.getIssuerX500Principal()
                            .getName());
            CMSTypedData msg = new CMSProcessableByteArray(
                    generatedCertificate.getEncoded());
            CMSEnvelopedDataGenerator edGen = new CMSEnvelopedDataGenerator();
            edGen.addRecipientInfoGenerator(new JceKeyTransRecipientInfoGenerator(
                    receivedCert).setProvider(AppConfigurations.PROVIDER));
            CMSEnvelopedData envelopedData = edGen
                    .generate(
                            msg,
                            new JceCMSContentEncryptorBuilder(
                                    CMSAlgorithm.DES_EDE3_CBC).setProvider(
                                    AppConfigurations.PROVIDER).build());
            CMSSignedDataGenerator gen = new CMSSignedDataGenerator();
            ContentSigner sha1Signer = new JcaContentSignerBuilder(
                    AppConfigurations.SIGNATUREALGO).setProvider(
                    AppConfigurations.PROVIDER).build(privateKeyRA);
            List<X509Certificate> certList = new ArrayList<X509Certificate>();
            CMSTypedData cmsByteArray = new CMSProcessableByteArray(
                    envelopedData.getEncoded());
            certList.add(certRA);
            Store certs = new JcaCertStore(certList);
            gen.addSignerInfoGenerator(new JcaSignerInfoGeneratorBuilder(
                    new JcaDigestCalculatorProviderBuilder().setProvider(
                            AppConfigurations.PROVIDER).build()).build(
                    sha1Signer, certRA));
            gen.addCertificates(certs);
            CMSSignedData sigData = gen.generate(cmsByteArray, true);
            return sigData.getEncoded();
    The returned result here will be output in to the servlet output stream with the content type "application/x-pki-message".
    It seems I get the CSR properly and I generate the X509Certificate using following code.
    public static X509Certificate generateCertificateFromCSR(
            PrivateKey privateKey, PKCS10CertificationRequest request,
            String issueSubject) throws Exception {
        Calendar targetDate1 = Calendar.getInstance();
        targetDate1.setTime(new Date());
        targetDate1.add(Calendar.DAY_OF_MONTH, -1);
        Calendar targetDate2 = Calendar.getInstance();
        targetDate2.setTime(new Date());
        targetDate2.add(Calendar.YEAR, 2);
        // yesterday
        Date validityBeginDate = targetDate1.getTime();
        // in 2 years
        Date validityEndDate = targetDate2.getTime();
        X509v3CertificateBuilder certGen = new X509v3CertificateBuilder(
                new X500Name(issueSubject), BigInteger.valueOf(System
                        .currentTimeMillis()), validityBeginDate,
                validityEndDate, request.getSubject(),
                request.getSubjectPublicKeyInfo());
        certGen.addExtension(X509Extension.keyUsage, true, new KeyUsage(
                KeyUsage.digitalSignature | KeyUsage.keyEncipherment));
        ContentSigner sigGen = new JcaContentSignerBuilder(
                AppConfigurations.SHA256_RSA).setProvider(
                AppConfigurations.PROVIDER).build(privateKey);
        X509Certificate issuedCert = new JcaX509CertificateConverter()
                .setProvider(AppConfigurations.PROVIDER).getCertificate(
                        certGen.build(sigGen));
        return issuedCert;
    The generated certificate commonn name is,
    Common Name: mdm(88094024-2372-4c9f-9c87-fa814011c525)
    Issuer: mycompany Root CA (93a7d1a0-130b-42b8-bbd6-728f7c1837cf), None
    [1] - https://developer.apple.com/library/ios/documentation/NetworkingInternet/Concept ual/iPhoneOTAConfiguration/Introduction/Introduction.html

    I am in the process of writing an open source iOS mobile device management module in Java. For this I am referring the Apple provided Ruby code at [1]. I have set this up and it works fine for me. Now I need to convert this code to Java. So far I have accomplished to do that up to PKIOperation. In the PKI operation I get "The SCEP server returned an invalid response" which I believe is due to wrong response I sent to device upon PKIOperation.
    However when I do search on the internet I get this is something to do with the "maxHttpHeaderSize" as I am using the server as Apache Tomcat. Although I increase that since still it does not get resolved.
    Here is the code I need to convert - taken from Apple provided Ruby script
    if query['operation'] == "PKIOperation"
        p7sign = OpenSSL::PKCS7::PKCS7.new(req.body)
        store = OpenSSL::X509::Store.new
        p7sign.verify(nil, store, nil, OpenSSL::PKCS7::NOVERIFY)
        signers = p7sign.signers
        p7enc = OpenSSL::PKCS7::PKCS7.new(p7sign.data)
        csr = p7enc.decrypt(@@ra_key, @@ra_cert)
        cert = issueCert(csr, 1)
        degenerate_pkcs7 = OpenSSL::PKCS7::PKCS7.new()
        degenerate_pkcs7.type="signed"
        degenerate_pkcs7.certificates=[cert]
        enc_cert = OpenSSL::PKCS7.encrypt(p7sign.certificates, degenerate_pkcs7.to_der,
            OpenSSL::Cipher::Cipher::new("des-ede3-cbc"), OpenSSL::PKCS7::BINARY)
        reply = OpenSSL::PKCS7.sign(@@ra_cert, @@ra_key, enc_cert.to_der, [], OpenSSL::PKCS7::BINARY)
        res['Content-Type'] = "application/x-pki-message"
        res.body = reply.to_der
    end
    So this is how I written this in Java using Bouncycastle library.
    X509Certificate generatedCertificate = generateCertificateFromCSR(
                    privateKeyCA, certRequest, certCA.getIssuerX500Principal()
                            .getName());
            CMSTypedData msg = new CMSProcessableByteArray(
                    generatedCertificate.getEncoded());
            CMSEnvelopedDataGenerator edGen = new CMSEnvelopedDataGenerator();
            edGen.addRecipientInfoGenerator(new JceKeyTransRecipientInfoGenerator(
                    receivedCert).setProvider(AppConfigurations.PROVIDER));
            CMSEnvelopedData envelopedData = edGen
                    .generate(
                            msg,
                            new JceCMSContentEncryptorBuilder(
                                    CMSAlgorithm.DES_EDE3_CBC).setProvider(
                                    AppConfigurations.PROVIDER).build());
            CMSSignedDataGenerator gen = new CMSSignedDataGenerator();
            ContentSigner sha1Signer = new JcaContentSignerBuilder(
                    AppConfigurations.SIGNATUREALGO).setProvider(
                    AppConfigurations.PROVIDER).build(privateKeyRA);
            List<X509Certificate> certList = new ArrayList<X509Certificate>();
            CMSTypedData cmsByteArray = new CMSProcessableByteArray(
                    envelopedData.getEncoded());
            certList.add(certRA);
            Store certs = new JcaCertStore(certList);
            gen.addSignerInfoGenerator(new JcaSignerInfoGeneratorBuilder(
                    new JcaDigestCalculatorProviderBuilder().setProvider(
                            AppConfigurations.PROVIDER).build()).build(
                    sha1Signer, certRA));
            gen.addCertificates(certs);
            CMSSignedData sigData = gen.generate(cmsByteArray, true);
            return sigData.getEncoded();
    The returned result here will be output in to the servlet output stream with the content type "application/x-pki-message".
    It seems I get the CSR properly and I generate the X509Certificate using following code.
    public static X509Certificate generateCertificateFromCSR(
            PrivateKey privateKey, PKCS10CertificationRequest request,
            String issueSubject) throws Exception {
        Calendar targetDate1 = Calendar.getInstance();
        targetDate1.setTime(new Date());
        targetDate1.add(Calendar.DAY_OF_MONTH, -1);
        Calendar targetDate2 = Calendar.getInstance();
        targetDate2.setTime(new Date());
        targetDate2.add(Calendar.YEAR, 2);
        // yesterday
        Date validityBeginDate = targetDate1.getTime();
        // in 2 years
        Date validityEndDate = targetDate2.getTime();
        X509v3CertificateBuilder certGen = new X509v3CertificateBuilder(
                new X500Name(issueSubject), BigInteger.valueOf(System
                        .currentTimeMillis()), validityBeginDate,
                validityEndDate, request.getSubject(),
                request.getSubjectPublicKeyInfo());
        certGen.addExtension(X509Extension.keyUsage, true, new KeyUsage(
                KeyUsage.digitalSignature | KeyUsage.keyEncipherment));
        ContentSigner sigGen = new JcaContentSignerBuilder(
                AppConfigurations.SHA256_RSA).setProvider(
                AppConfigurations.PROVIDER).build(privateKey);
        X509Certificate issuedCert = new JcaX509CertificateConverter()
                .setProvider(AppConfigurations.PROVIDER).getCertificate(
                        certGen.build(sigGen));
        return issuedCert;
    The generated certificate commonn name is,
    Common Name: mdm(88094024-2372-4c9f-9c87-fa814011c525)
    Issuer: mycompany Root CA (93a7d1a0-130b-42b8-bbd6-728f7c1837cf), None
    [1] - https://developer.apple.com/library/ios/documentation/NetworkingInternet/Concept ual/iPhoneOTAConfiguration/Introduction/Introduction.html

  • View a website on a mobile device

    Could anyone point me in the direction of tips/tutorials / APIs etc. that will help me
    view/render websites on a mobile device?
    I have connected successfully to the internet and effectively read the HTML and then appended it to the
    form on my emulator, obviously this gives me the raw HTML so my form has at the end something like:
    <p> Here's my webpage</p>
    <p> Thanks for visiting etc....</p>How does one go about turning this into a same as it is displayed on the internet.
    Am I trying to reinvent the wheel, thinking about it I'm trying to write a browser... aren't I?
    Won't that be horrifically complex?
    How do existing phones do it?
    Thanks
    Dan

    Thanks for that.
    That is exactly what I need.You're most welcome. Happy to be of service.
    Although I notice the platform request opens the website on Firefox on my computer rather than in the emulator.
    Is there anyway to get it to open within the emulator?Ahem, no. The request is after all to the platform, and the default browser is activated -- in the case of your computer, Firefox.
    I assume on a real phone it would use whatever browser is installed on the phone.Spot on. The default browser -- usually the one that came preinstalled, not any added later (like Opera Mini).
    But be aware, the API warns that the device "MAY wait to handle the URL request until after the MIDlet suite exits."
    Cheers
    DanBack atcha, Darryl

  • How to embed JavaFx Script application into mobile devices

    Hi,
    I had created small JavaFX script application.How can i embed this application into mobile devices.I got the information that JavaFX Mobile is java mobile operating system.How can i set up this.

    Look into the Adobe AIR runtime.  This can do what you are looking for (no embedding of acrobat necessary, its built-in)

  • I would like know how to view a SharePoint Page from mobile browser or app.

    I work for a company that sell products and then offers aftermarket support.  On our external SharePoint site, I created a page to link to Wiki pages that contain knowledge sharing entries.  The goal is when a member of the company learns something
    that they feel would be good to share, the can take a video, post it to Vimeo, and then embed the video with applicable text to the SharePoint site.  The SharePoint posts can also contain PDFs, other document links, and embedded pictures.  
    I have the page essentially finished, I am ready for some more contributors at the company to start adding content.
    One of the goals of the site is to be viewable via a mobile application.  I have tried apps such as SPConnect, and SharePlus from Infragistics.  Their mobile apps view SharePoint as a list, and do not view any of the embedded pictures or Vimeo
    videos.  
    My questions are:  
    Will SharePoint 2010 support mobile web browsing with the same functionality as the standard web browser?
    If 2010 will not, will SharePoint 2013 offer the support?
    If it is possible, what features do I need from a server and what settings do I need to enable to make it happen?  Currently on our site, it is not viewable.  I use "Forms Authentication" to log into the site.
    If it is possible, do you suggest finding an app?  Is there an app that will do it, or can I just log in and view from the mobile web browser the same way I do from a standard web browser?
    Overall, I need to know what I need to do to get this to work.
    Thank you for reading.  I look forward to your responses.

    Hi,
     Its possible to achieve the functionality which you are looking here. To enable mobile support please follow the below link which will guide you,
    http://www.aiim.org/community/blogs/expert/sharepoint-2010-mobility-browser-compatibility-compliance-and-its-continued-dominance-in-the-marketplace
    http://blogs.technet.com/b/office2010/archive/2010/03/09/configure-sharepoint-server-2010-for-mobile-device-access.aspx
    if its not helping you please let us know.
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • How to view large videos on BB 8800

    Hello Everyone,
    I need help in viewing large videos on my BB 8800. I know only Videos - Up to 320 x 240, up to 800 kbps, up to 30 frames per second are compatible, but all large videos have a higher resolution. It shoots an error when tried playing.
    I want to view files with ext .avi, .wmv and .mpg files with higher dimensions. somewhat like this :
    Media type: .avi
    Video size: 480x360
    Audio: 32000hz, 16bps, 2ch
    Length: 0:15:23
    Bitrate: 495kbps
    Please help.

    The KB that documents the supported formats is here:
    KB05482 Media types supported on the BlackBerry smartphone
    And here is a KB that discusses how to install Media Manager:
    KB12926 How to install or remove Roxio Media Manager for BlackBerry smartphones
    And all of the downloads are available here:
    https://www.blackberry.com/Downloads/entry.do?code=A8BAA56554F96369AB93E4F3BB068C22
    And here is the KB for how to transfer files using MM:
    KB05456 How to transfer files to the BlackBerry smartphone using the Media Manager
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to view youtube videos from iphone 4 to tv using composite AV cable

    Hi,
    Can any one please help me as to how to view youtube online videos on TV through my iphone 4. I tried connecting the iphone 4 and TV with a composite AV cable however I can hear only the audio but am not able to view the videos.

    It seems so stupid that you cant sort videos by date. Some please tell is that we are idiots and tell us how? And if u simply cant, well a big shout out goes to google for being right on top of things. I hate google! Company is too big and they cant keep up apparently. Sooo much junk on you tube and they cant give us filter and sort options on the most widely used tablet on the market.? Gawd pleeeeze tell me im an idiot!

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • How to view download videos from the sony HDR cx160 to Mac (Lion)?

    I am not sure if this is the correct forum for my question. I just bouhgt a Sony HDR CX160 camcorder and need to download/view the videos on my Mac (Lion). Could you please help me with this issue or direct me to the correct forum? Sony's answer is to contact Apple...? Thank you very much in advance!

    I am not sure if this is the correct forum for my question. I just bouhgt a Sony HDR CX160 camcorder and need to download/view the videos on my Mac (Lion). Could you please help me with this issue or direct me to the correct forum? Sony's answer is to contact Apple...? Thank you very much in advance!

  • How to "trim original" video in iOS?

    When iOS first came out I remember there being an option to "trim original" video where the entire video would be replaced with only the part that you wanted to keep (the trimmed parts of the video would be deleted permanently). You also had the option to "save as new clip" which would keep both the original video and a new file with the trimmed parts removed.
    Where has the "trim original" feature gone? It does not show up in the latest version of iOS 8 but it is still referenced in the iPhone User Guide for iOS (see attached picture).
    The picture below shows the options I get when attempting to trim a video in iOS 8. You can see that the only option I get is to save as a new clip.

    I think I just figured out the answer... If iCloud Photo Library is turned on, I only get the option to save as a new clip. Thus, trimming video creates two files that take up cloud storage (for which Apple charges if you want more than 5 GB). If I disable iCloud Photo Library, the option to trim original returns. If this is intentional on Apple's part, it is very clever of them to try to get people to fill up their iCloud storage faster. Of course you just go back and delete the original if you don't want it, but this extra step seems unnecessary when Apple operating systems are supposed to be "intuitive" and "just work."
    Apple, please add the "trim original" feature for those who have enabled iCloud Photo Library. There is no reason this should be any different with iCloud Photo Library enabled other than to try to trick people into filling up their iCloud storage (and subsequently paying for more) faster.

  • How to view YouTube video through search engines

    Hi.
    Since upgrading it IOS5 I have been unable to view YouTube videos if searched via a search engine and then clicked on the link. It gives However if searched for the videos in youTube it seems to play. Any ideas?
    Yas

    Flash Player version 10.1.102.64 is the last version available to PPC Mac users. However, this Flash version won't work for many videos on Facebook, YouTube and other sites. Adobe's latest version, 10.2.x or later, is only for Intel Macs. Adobe will not provide a newer Flash version for PPC Macs.
    The message requesting that you download Adobe Flash Player takes you to Flash Player requiring an Intel processor. Doesn't work on a PowerPC processor. I found a hack, installed it & it works with Firefox, TenFourFox & Safari.
    Download this http://www.steelbin.com/FPforFBPPC.zip to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.
    Hack Allows PowerPC Macs to Access Flash 11 Content
    http://lowendmac.com/ed/royal/12sr/flash-11-and-powerpc.html
     Cheers, Tom

  • Video latency on mobile device

    I am working on an application that connects two peers in audio/video using rtmfp.
    When a peer wants to talk with another, first it exchanges peer-id and stream-name with the other and then publishes its microphone/camera (in “live” mode) and plays the other peer stream. As usual in Flash platform. Message exchange in my application is server directed (I am using FMS 4), stream connection is peer-to-peer.
    Now, all works fine when the two peer run on Adobe AIR for PC. But when one or both run on a mobile platform (iOS 4.3.3 for example) I experience a strange random latency. Sometime latency on the mobile side is near zero, sometime it grows to 3 even 5 or more seconds. So the communication is not really possible.
    I tried to narrow down latency by testing different values of bufferTime both on incoming and on outgoing stream: bufferTime = 0 does not work fine on mobile side; using bufferTime = 0 in the output stream and bufferTime=0.3 on incoming stream works better.  With this values when video is not involved all works fine. But when one of the two peer attaches a camera then the result is not always the same: sometime latency is acceptable sometime it is not: bufferLength of the incoming stream (playing stream) grows to 3 or more seconds and then it goes up and down. Using bufferTimeMax do not improve latency. On the pc side bufferLength is near zero.
    I noted that on the pc side sometime I got a NetStream.Buffer.Empty on the incoming stream so I am thinking that the problem is related to cpu resources on mobile side (I am using an iPhone 4). To lower resource consumption I set Camera.setQuality(0,100) and Camera.setMode(80,60,3). Microphone is configured to use Speex with encodeQuality = 6. But the problem remains.
    Is the video playback of Flash Air on mobile device fast enough?
    The two peer in my test are on the same LAN and the mobile device use Wi-Fi access. I use Flash CS 5.5 and AIR 2.7.
    Does anyone have an explanation of this behavior?
    Thanks
    Michelangelo

    Hi,
    after a month of tests I stopped looking for a solution.
    In the last test I tried to split (desynchronize) audio stream and video stream so I had two different play buffers on which I tested different bufferTime values. I was hoping to have a low predictable latency on audio playback (that is more important for my application) and a different not specified latency on video. But my test failed: this solution works as the solution where audio and video have the same buffer and this is very revealing.
    I don't know if this problem is related to:
    a my error in configuring audio/video stream
    a flash player bug (on iOS) in live mode
    a high resource consumption of the Sorenson Spark codec implementation on AIR for iOS
    I posted my initial question to learn from someone anything useful to distinguish among those alternatives. I tend towards the third.
    Michelangelo

Maybe you are looking for

  • Import from card doesn't seem to work

    I am watching a training video from Lynda.com on FCP X and in that video it shows that when importing media from a card as soon as the card is connected an import window pops up with many useful features.  The trouble is that that window never appear

  • Error in Quota

    Dear Experts. For some employees Got less instead of 19.25 and for some employees got more instead of 19.25 but, by doing forced recalculation it is coming correctly client would like to generate without using the forced recalculation Please help me

  • Oracle Net Configuration Assistant failed. While Installing

    HI , I was getting an Error while installing Oracle11g on Redhat linux 5.4. The Error was 'Oracle Net Configuration Assistant failed.' I am attaching the Last few lines of the Install Actions Files , INFO: Updating Transient Parameters for oracle.sys

  • Error when using recovery

    I get error when i try recovery my pc Recovery manager could not restore your computer using the factori image. Please contact HP support. Error Code: 0xe0ef0003 Model- Hp G62 Notebook pc Product number- XF287EA#ABU System-Windows 7 32bit Please hel

  • WebLogic 10.0 supports Java 6?

    Does anyone know if WebLogic server 10.0 supports Java 6? I am currently running Java 1.5 and I would like to run my application with Java 1.6. If not, what version of WebLogic I should upgrade so that I can run with Java 6? Thanks.