H.264 in AIR 3.2

Does AIR 3.2 support h.264 recording out of the box?
Or is this still in an incubator?
If yes, can anyone point me to accurate instructions.

Does this link help?
http://www.realeyes.com/blog/2011/10/31/new-in-flash-player-11-encoding-live-video-to-h-26 4avc/

Similar Messages

  • Will recording mic audio in mp3 codec be supported by FMS in the future

    I am newbb to flash. I am developping a mobile app for video chat using FL3. Then I realized that FL3.x only support mp3 streaming for now. So I turn to the server side and found that FMS3.5.1 doesn't support record or live mic audio in mp3. This causes a quite difficult situation. I am wondring if there's a solution/workaround for this? And mostly importantly, I am wondering if recording mic audio in mp3 is ever going to be supported. If anyone can answer this.

    Hi Bob,
    Regarding "when will flashplayer support mp3 encoding" ...
    Jay's lowdown is 100% correct.  And definitely don't hold your breath waiting  ;-)
    My sense is that internally Adobe fiercely guards against bloat in the size of the Flash Player installers.  Fiercely.
    But now they have AIR too.  And Acrobat.  (Both of which now include Flash Player in their current versions.)
    Personally, I would settle for MP3 encoding in AIR as a first step.  Plus, VP6 and H.264 in AIR.
    My sense is that the hurdle against bloat in the AIR installer size is dramatically lower.  And we definitely need these additional encoding capabilities built-in to some runtime.
    So, whenever you have a chance to lobby Adobe engineers or submit requests to their wishlist, just keep asking.
    g

  • Please clarify availability of H 264 encoding in AIR for iOS/Android

    Hello,
    I've written an app to send a live camera stream via RTMP in H 264/Nellymoser from mobile devices.  The app works fine on AIR when tested on my Win7 desktop, but when I publish to AIR 3.2 for Android or AIR for iOS, it seems that the H264VideoStreamSettings are simply ignored and the video ends up in Sorenson.  Is H264 supported for encoding/publishing on AIR for mobile devices?  If not, is this planned for the future?
    Thanks!

    Unfortunately, the release notes say H.264 encoding from AIR is for the desktop version only:
    http://helpx.adobe.com/x-productkb/multi/release-notes-flash-player-11.html
    H.264/AVC Software Encoding for Cameras (desktop) — Stream high-quality video from your computer's camera with higher compression efficiency and industry stanard support, enabling both immersive real-time communications such as video chat/conferencing and live video broadcasts.

  • Live Streaming H.264 Video on iOS using AIR

    We would like to build an AIR app that plays Streaming H.264 Live/VOD videos that would work through AIR on the iOS platform.
    I've seem some traffic on the forums that RTMP will work to iOS - but additionally heard that video applications that use RTMP streams will be rejected by the Apple App store.
    I have seen that progressive H.264 will work - but that's not streaming or live.
    HLS would work if we use the StageWebView object; however, that provides us little control/monitoring over the video inside of it; and it's not "really" integrated as a video player.
    For OSMF there seems to be a 3rd-Party plugin which will allow OSMF to read HLS streams - but (from what I've heard) is incomplete because it doesn't play adaptive nor is it completely updated for OSMF 1.6.1.
    I would love to be wrong here - but is there currently a way to play a Streamed H.264 Video to iOS that is non-RTMP?
    I've seem little information as to if F4M streamed files played via OSMF will work on iOS.
    Thanks for the info in advance.
    -Will

    I pasted a stripped down version of my test app below, that attempts to playback an m3u8 file. This works for me on an IPad2.
    Remember to test on the device itself otherwise wont work.
    Dependencies:
    1. Air 3.1
    2. OSMF 1.6.1
    3. Flex SDK 4.6.0
    renderMode="direct"
    HTH
    - Abey
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   backgroundAlpha="0"
                   backgroundColor="#000000"
                   addedToStage="onViewActivate(event)"
                   applicationDPI="160">
        <fx:Script>
            <![CDATA[
                private var nc:NetConnection;
                private var ns:NetStream;
                private var video:Video;
                private var currentVidUrl:String;
                protected function onViewActivate(event:Event):void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus, false, 0, true);
                    nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityErrorHandler, false, 0, true);
                    currentVidUrl = "http://fmsserver/hls-vod/sample.mp4.m3u8";
                    nc.connect(null);
                private function onNetStatus(evt:NetStatusEvent):void
                    switch (evt.info.code) {
                        case "NetConnection.Connect.Success":
                            ns = new NetStream(nc);
                            var client:Object = {};
                            client.onMetaData = onMetaData;
                            client.onCuePoint = onCuePoint;
                            client.onBWDone = onBWDone();
                            ns.client = client;
                            nc.client = client;
                            var v:Vector.<StageVideo> = stage.stageVideos;
                            if (v.length >= 1) {
                                var stageVideo:StageVideo = v[0];
                                stageVideo.viewPort = new Rectangle(0, 0, mediaContainer.width, mediaContainer.height);
                                stageVideo.attachNetStream(ns);
                            else {
                                video = new Video();
                                video.width = mediaContainer.width;
                                video.height = mediaContainer.height;
                                mediaContainer.addChildAt(video,0);
                                video.attachNetStream(ns);
                            if (currentVidUrl) {
                                ns.play(currentVidUrl);
                            break;
                        case "NetStream.Publish.BadName":
                            break;
                        default:
                            break;
                private function onSecurityErrorHandler(event:SecurityErrorEvent):void
                protected function onMetaData(item:Object):void
                protected function onCuePoint(item:Object):void
                protected function onBWDone():void
            ]]>
        </fx:Script>
        <mx:UIComponent id="mediaContainer"
                        height="100%"
                        width="100%"/>
    </s:Application>

  • Andorid AIR h.264 encoding support

    Will windows air 3.6 supports h264 hardware encoding it? android air 3.6 supports h264 encoding it? I write the following code in android:
    h264Settings = new H264VideoStreamSettings (); h264Settings.setProfileLevel (H264Profile.BASELINE, H264Level.LEVEL_2); / / H264Profile.MAIN, H264Level.LEVEL_5_1
    netStream.videoStreamSettings = h264Settings;
    But  netStream.videoStreamSettings is null.Consult reason for this result. Thank you

    I'll ask around and see if I can find any info about this, in the mean time, if you haven't voted already I'd like to encourage you to cast your vote for this feature request over at ideas.adobe.com
    H.264/AAC encoding from AIR/Flash player
    Thanks,
    Chris

  • AIR h.264 encoding support

    Is h.264 encoding in AIR at the roadmap of Adobe? I know Adobe is working hard on delivering the requested features, and thanks for the Echo Cancellation. It works great. H264 is now in flash player, but can we expect classes H264VideoStreamSettings, H264Profile, H264Level be available on the AIR in the future as well? I can't think of any technical issues regarding this, but is there any legal issues? It would be very important for us to know, to make a business decisions now.
    Thank you.

    I'll ask around and see if I can find any info about this, in the mean time, if you haven't voted already I'd like to encourage you to cast your vote for this feature request over at ideas.adobe.com
    H.264/AAC encoding from AIR/Flash player
    Thanks,
    Chris

  • H.264 vid in iOS app -AIR 2.6 only-

    A little workaround to video performance issues on iOS...
    http://forums.adobe.com/thread/827505?tstart=0

    A little workaround to video performance issues on iOS...
    http://forums.adobe.com/thread/827505?tstart=0

  • Adobe AIR will not Install

    I am having trouble running the packaged adobe Air installer (downloaded from http://get.adobe.com/air). The .dmg image mounts fine, then when I double-click or select the package nothing runs. I even tried to run the installer inside the package (from the gui and a shell) and nothing executes. I get no error messages either.
    I recently upgraded from OS X 10.3 to 10.4.11, and have tried all I can find on the web.
    A summary of what I've tried:
    - checked file permissions
    - run installer as administrator (every time)
    - downloaded the package several times and from several locations(adobe.com, cnet.com)
    - tried to run the installer on a terminal using sudo command
    - followed this similar thread (http://discussions.apple.com/thread.jspa?threadID=2024084) and tried everything on it (repair disk permissions with disk util, create new admin account to install - couldn't install it there either)
    - There are no packages in /Library/Receipts,
    - Nothing inside Applications, nothing inside Applications/Utilities
    - Also tried this fix with no positive outcome http://andrewapeterson.com/2008/08/os-x-adobe-air-installation-problem-solved/
    Please help if someone has any other knowledge!
    Thanks

    Thanks BDA, I launched the installer with the console open, and inside my user error logs I found "Adobe Air Installer.crash.log"
    As there is no attachment option at this forum here goes the contents of the .crash.log
    I dont understand it, maybe someone here can gather more from it?
    Thanks, really really thanks.
    Host Name: users-powerbook
    Date/Time: 1969-12-31 18:17:13.275 -0600
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Adobe AIR Installer
    Path: /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Parent: WindowServer [53]
    Version: 1.5.2 (1.5.2.8870)
    PID: 164
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x031b6c38
    Thread 0 Crashed:
    0 com.adobe.AIR 0x031b6c38 dyldstubxmlSubstituteEntitiesDefault + 42465396
    1 com.adobe.AIR 0x031b5658 dyldstubxmlSubstituteEntitiesDefault + 42459796
    2 com.adobe.AIR 0x030c3260 dyldstubxmlSubstituteEntitiesDefault + 41467548
    3 com.adobe.AIR 0x030b12f0 dyldstubxmlSubstituteEntitiesDefault + 41393964
    4 <<00000000>> 0x07033d90 0 + 117652880
    5 com.adobe.AIR 0x02b80d04 dyldstubxmlSubstituteEntitiesDefault + 35952960
    6 com.adobe.AIR 0x02b77f44 dyldstubxmlSubstituteEntitiesDefault + 35916672
    7 <<00000000>> 0x07033c58 0 + 117652568
    8 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    9 com.adobe.AIR 0x02b7a564 dyldstubxmlSubstituteEntitiesDefault + 35926432
    10 com.adobe.AIR 0x02b61888 dyldstubxmlSubstituteEntitiesDefault + 35824836
    11 com.adobe.AIR 0x02b95e60 dyldstubxmlSubstituteEntitiesDefault + 36039324
    12 <<00000000>> 0x01336bc8 0 + 20147144
    13 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    14 com.adobe.AIR 0x02b77f44 dyldstubxmlSubstituteEntitiesDefault + 35916672
    15 <<00000000>> 0x013335a8 0 + 20133288
    16 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    17 com.adobe.AIR 0x02b7a564 dyldstubxmlSubstituteEntitiesDefault + 35926432
    18 com.adobe.AIR 0x02b7737c dyldstubxmlSubstituteEntitiesDefault + 35913656
    19 com.adobe.AIR 0x02b9686c dyldstubxmlSubstituteEntitiesDefault + 36041896
    20 com.adobe.AIR 0x02b96a84 dyldstubxmlSubstituteEntitiesDefault + 36042432
    21 <<00000000>> 0x013326b0 0 + 20129456
    22 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    23 com.adobe.AIR 0x02b77f44 dyldstubxmlSubstituteEntitiesDefault + 35916672
    24 <<00000000>> 0x01332068 0 + 20127848
    25 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    26 com.adobe.AIR 0x02b77f44 dyldstubxmlSubstituteEntitiesDefault + 35916672
    27 <<00000000>> 0x013286c0 0 + 20088512
    28 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    29 com.adobe.AIR 0x02b77f44 dyldstubxmlSubstituteEntitiesDefault + 35916672
    30 <<00000000>> 0x0132722c 0 + 20083244
    31 com.adobe.AIR 0x02b7de88 dyldstubxmlSubstituteEntitiesDefault + 35941060
    32 com.adobe.AIR 0x02b7a564 dyldstubxmlSubstituteEntitiesDefault + 35926432
    33 com.adobe.AIR 0x02b7737c dyldstubxmlSubstituteEntitiesDefault + 35913656
    34 com.adobe.AIR 0x0302a530 dyldstubxmlSubstituteEntitiesDefault + 40841580
    35 com.adobe.AIR 0x0302a714 dyldstubxmlSubstituteEntitiesDefault + 40842064
    36 com.adobe.AIR 0x0296e9a8 dyldstubxmlSubstituteEntitiesDefault + 33781220
    37 com.adobe.AIR 0x029769a8 dyldstubxmlSubstituteEntitiesDefault + 33813988
    38 com.adobe.AIR 0x0297772c dyldstubxmlSubstituteEntitiesDefault + 33817448
    39 com.apple.Foundation 0x92beeb24 __NSFireDelayedPerform + 304
    40 com.apple.CoreFoundation 0x907f14b0 __CFRunLoopDoTimer + 184
    41 com.apple.CoreFoundation 0x907dde28 __CFRunLoopRun + 1680
    42 com.apple.CoreFoundation 0x907dd3dc CFRunLoopRunSpecific + 268
    43 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    44 com.apple.HIToolbox 0x9329b1b4 ReceiveNextEventCommon + 380
    45 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    46 com.apple.AppKit 0x9377fbc4 _DPSNextEvent + 384
    47 com.apple.AppKit 0x9377f888 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    48 com.apple.AppKit 0x9377bdcc -[NSApplication run] + 472
    49 com.adobe.AIR 0x02978bd8 dyldstubxmlSubstituteEntitiesDefault + 33822740
    50 com.adobe.AIR 0x02978fb0 dyldstubxmlSubstituteEntitiesDefault + 33823724
    51 com.adobe.air.Installer 0x00003e10 RuntimeAppMain(char const*, int) + 180
    52 com.adobe.air.Installer 0x00004014 main + 72
    53 com.adobe.air.Installer 0x00002190 _start + 760
    54 com.adobe.air.Installer 0x00001e94 start + 48
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.adobe.AIR 0x02b6c850 dyldstubxmlSubstituteEntitiesDefault + 35869836
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.adobe.AIR 0x03178b70 dyldstubxmlSubstituteEntitiesDefault + 42211244
    3 com.adobe.AIR 0x03116884 dyldstubxmlSubstituteEntitiesDefault + 41809088
    4 com.adobe.AIR 0x03178660 dyldstubxmlSubstituteEntitiesDefault + 42209948
    5 com.adobe.AIR 0x03178710 dyldstubxmlSubstituteEntitiesDefault + 42210124
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000031b6c38 srr1: 0x000000000008f030 vrsave: 0x0000000000000000
    cr: 0x24022224 xer: 0x0000000000000004 lr: 0x00000000031b5658 ctr: 0x00000000031b6c10
    r0: 0x00000000031b5658 r1: 0x00000000bfffc2d0 r2: 0x00000000a0001fac r3: 0x00000000bfffc350
    r4: 0x000000000033f990 r5: 0x00000000032ca094 r6: 0x00000000439c0000 r7: 0x0000000043888000
    r8: 0x0000000043c80000 r9: 0x00000000435e0000 r10: 0x00000000435e0000 r11: 0x0000000000000000
    r12: 0x00000000031b6c10 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000431d20 r17: 0x000000000127ea30 r18: 0x000000000127e0a0 r19: 0x000000000127f281
    r20: 0x000000000105d1c8 r21: 0x000000000129d7a0 r22: 0x00000000bfffc82c r23: 0x00000000010520b0
    r24: 0x0000000000000001 r25: 0x00000000012a4700 r26: 0x0000000000000000 r27: 0x00000000bfffc350
    r28: 0x000000000033f990 r29: 0x00000000032ca094 r30: 0x00000000004165e0 r31: 0x00000000031b55a8
    Binary Images Description:
    0x1000 - 0x7fff com.adobe.air.Installer 1.5.2 (1.5.2.8870) /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    0x296b000 - 0x34a8fff com.adobe.AIR 1.5.2 (1.5.2.8870) /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.8 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 4.0 (129.22) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d44fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d49000 - 0x91d4cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4e000 - 0x91e2cfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4c000 - 0x91e4cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4e000 - 0x91f33fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3b000 - 0x91f5afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc6000 - 0x92034fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203f000 - 0x920d4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ee000 - 0x92676fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a9000 - 0x929d4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a04000 - 0x92af2fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af5000 - 0x92b7dfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbe000 - 0x92de9fff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f16000 - 0x92f34fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3f000 - 0x92f99fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb7000 - 0x92fb7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb9000 - 0x92fcdfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe5000 - 0x92ff5fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93001000 - 0x93016fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93028000 - 0x930affff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c3000 - 0x930cefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d8000 - 0x93105fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311f000 - 0x9312efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93775000 - 0x93775fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93777000 - 0x93daafff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94137000 - 0x941a9fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e2000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942fa000 - 0x942fafff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fc000 - 0x944bcfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94506000 - 0x94543fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454b000 - 0x9459bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a4000 - 0x945b8fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x946cb000 - 0x946e7fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x946fb000 - 0x9473ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9477a000 - 0x94787fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947cd000 - 0x947e6fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947ed000 - 0x94a4ffff com.apple.QuickTime 7.0.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b22000 - 0x94b41fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96054000 - 0x960c5fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x97ab8000 - 0x97ac5fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    End of .crash.log file
    thnx again,
    gtb

  • Mac Air Security, Internet Issues: System Report Attached

    I don't know if it's my fault that my brand new Macbook Air is having so many problems. I am not in the know with the terms so I have attached a system report. Basically unable to keep users off of my internet network (private supposedly), On both my air and my iphone my emails keep getting deleted and application passwords are being changed like crazy. I'm frustrated. Don't feel bad if you realize that it is comepletely my fault, I just want to solve this problem. Please ask any questions for clarification, I just don't know where to start.
    Also, here are some screen shots showing how quickly my passwords and accounts are being tampered with:
    Here is an example of a log:
    syncservices.log:
      Description:          SyncServices Log
      Date Modified:          11/5/13 5:05 AM
      Size:          2 KB
      Contents:          2013-11-04 22:18:05:722|SyncServer|367|0x7fc99a40bf00|Logging|Info| Logging initialized, engine version 713.1 : log level 3
    2013-11-04 22:18:06:057|SafariSyncClient|366|0x7f9b2240c600|ISyncManager|Info| unregister com.apple.Safari
    2013-11-04 22:18:06:062|SyncServer|367|0x7fc99a40bf00|Server|Info| unregister client com.apple.Safari
    2013-11-04 22:18:06:067|SafariSyncClient|366|0x7f9b2240c600|ISyncManager|Info| register client com.apple.Safari from /Applications/Safari.app/Contents/SafariSyncClient.app/Contents/Resources/Safar iClientDescription.plist (bundleId = (null), bundleRelativePath = (null))
    2013-11-04 22:20:06:076|SyncServer|367|0x7fc99a40bf00|Server|Info| Cancelling all sync plans.
    2013-11-04 22:20:06:079|SyncServer|367|0x7fc99a40bf00|Server|Info| Goodnight, Gracie.
    2013-11-05 02:48:32:838|SyncServer|962|0x7feaa240bf00|Logging|Info| Logging initialized, engine version 713.1 : log level 3
    2013-11-05 02:50:40:537|SyncServer|962|0x7feaa240bf00|Server|Info| Cancelling all sync plans.
    2013-11-05 02:50:40:547|SyncServer|962|0x7feaa240bf00|Server|Info| Goodnight, Gracie.
    2013-11-05 03:00:37:751|SyncServer|1126|0x7f885040bf00|Logging|Info| Logging initialized, engine version 713.1 : log level 3
    2013-11-05 03:02:38:161|SyncServer|1126|0x7f885040bf00|Server|Info| Cancelling all sync plans.
    2013-11-05 03:02:38:171|SyncServer|1126|0x7f885040bf00|Server|Info| Goodnight, Gracie.
    2013-11-05 04:00:58:399|SyncServer|1373|0x7ffd13c0bf00|Logging|Info| Logging initialized, engine version 713.1 : log level 3
    2013-11-05 04:03:01:234|SyncServer|1373|0x7ffd13c0bf00|Server|Info| Cancelling all sync plans.
    2013-11-05 04:03:01:243|SyncServer|1373|0x7ffd13c0bf00|Server|Info| Goodnight, Gracie.
    2013-11-05 05:03:56:286|SyncServer|1548|0x7fb55840bf00|Logging|Info| Logging initialized, engine version 713.1 : log level 3
    2013-11-05 05:05:56:896|SyncServer|1548|0x7fb55840bf00|Server|Info| Cancelling all sync plans.
    2013-11-05 05:05:56:905|SyncServer|1548|0x7fb55840bf00|Server|Info| Goodnight, Gracie.
    system.log:
      Description:          System Log
      Date Modified:          11/5/13 5:20 AM
      Size:          4.6 MB
      Contents:          ...
                  "<MessageDetails: 0x7ff4d3678350> libraryID=230 uid=23349 flags=0",
                  "<MessageDetails: 0x7ff4d3678370> libraryID=231 uid=23350 flags=0",
                  "<MessageDetails: 0x7ff4d3678390> libraryID=232 uid=23351 flags=0",
                  "<MessageDetails: 0x7ff4d36783b0> libraryID=233 uid=23352 flags=0",
                  "<MessageDetails: 0x7ff4d36783d0> libraryID=234 uid=23353 flags=0",
                  "<MessageDetails: 0x7ff4d36783f0> libraryID=235 uid=23354 flags=0",
                  "<MessageDetails: 0x7ff4d3678410> libraryID=236 uid=23355 flags=0",
                  "<MessageDetails: 0x7ff4d36061d0> libraryID=237 uid=23356 flags=0x1",
                  "<MessageDetails: 0x7ff4d36061f0> libraryID=238 uid=23357 flags=0",
                  "<MessageDetails: 0x7ff4d3606210> libraryID=239 uid=23358 flags=0",
                  "<MessageDetails: 0x7ff4d3606230> libraryID=240 uid=23359 flags=0",
                  "<MessageDetails: 0x7ff4d3606250> libraryID=241 uid=23360 flags=0",
                  "<MessageDetails: 0x7ff4d3606270> libraryID=242 uid=23361 flags=0",
                  "<MessageDetails: 0x7ff4d3606290> libraryID=243 uid=23362 flags=0",
                  "<MessageDetails: 0x7ff4d36062b0> libraryID=244 uid=23363 flags=0",
                  "<MessageDetails: 0x7ff4d36062d0> libraryID=245 uid=23364 flags=0",
                  "<MessageDetails: 0x7ff4d36062f0> libraryID=246 uid=23365 flags=0",
                  "<MessageDetails: 0x7ff4d319e180> libraryID=247 uid=23366 flags=0",
                  "<MessageDetails: 0x7ff4d319e1a0> libraryID=248 uid=23367 flags=0",
                  "<MessageDetails: 0x7ff4d319e1c0> libraryID=249 uid=23368 flags=0",
                  "<MessageDetails: 0x7ff4d319e1e0> libraryID=250 uid=23369 flags=0",
                  "<MessageDetails: 0x7ff4d319e200> libraryID=251 uid=23370 flags=0",
                  "<MessageDetails: 0x7ff4d319e220> libraryID=252 uid=23371 flags=0",
                  "<MessageDetails: 0x7ff4d319e240> libraryID=253 uid=23372 flags=0",
                  "<MessageDetails: 0x7ff4d319e260> libraryID=254 uid=23373 flags=0",
                  "<MessageDetails: 0x7ff4d319e280> libraryID=255 uid=23374 flags=0",
                  "<MessageDetails: 0x7ff4d319e2a0> libraryID=256 uid=23375 flags=0",
                  "<MessageDetails: 0x7ff4d3ec2050> libraryID=257 uid=23376 flags=0",
                  "<MessageDetails: 0x7ff4d3ec2070> libraryID=258 uid=23377 flags=0",
                  "<MessageDetails: 0x7ff4d3ec2090> libraryID=259 uid=23378 flags=0",
                  "<MessageDetails: 0x7ff4d3ec20b0> libraryID=260 uid=23379 flags=0",
                  "<MessageDetails: 0x7ff4d3ec20d0> libraryID=261 uid=23380 flags=0x1",
                  "<MessageDetails: 0x7ff4d3ec20f0> libraryID=262 uid=23381 flags=0x1",
                  "<MessageDetails: 0x7ff4d3ec2110> libraryID=263 uid=23382 flags=0",
                  "<MessageDetails: 0x7ff4d3ec2130> libraryID=264 uid=23383 flags=0x1",
                  "<MessageDetails: 0x7ff4d3ec2150> libraryID=265 uid=23384 flags=0x1",
                  "<MessageDetails: 0x7ff4d3ec2170> libraryID=266 uid=23385 flags=0",
                  "<MessageDetails: 0x7ff4d36618b0> libraryID=267 uid=23386 flags=0",
                  "<MessageDetails: 0x7ff4d36618d0> libraryID=268 uid=23387 flags=0",
                  "<MessageDetails: 0x7ff4d36618f0> libraryID=269 uid=23389 flags=0x1"
    Nov  5 03:42:41 Scotts-MacBook-Air.local Mail[954]: [LogIMAPMailboxSyncEngineActivity] <imap.gmail.com, INBOX>: Responses need to be processed
    Nov  5 03:42:48 Scotts-MacBook-Air.local WindowServer[239]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    Nov  5 03:43:02 Scotts-MacBook-Air.local WindowServer[239]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    Nov  5 03:47:18 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 03:47:18 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100028 destroyed
    Nov  5 03:47:18 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100036 created
    Nov  5 03:47:20 Scotts-MacBook-Air kernel[0]: Sandbox: sandboxd(1305) deny mach-lookup com.apple.coresymbolicationd
    Nov  5 03:47:20 Scotts-MacBook-Air.local sandboxd[1305] ([1304]): mdworker(1304) deny file-write-owner /Users/Scott/Library/Containers/com.apple.Notes/Data/Library/Notes/NotesV1.stor edata-wal (import fstype:hfs fsflag:480D000 flags:240000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 419057)
    Nov  5 03:47:20 Scotts-MacBook-Air.local sandboxd[1305] ([1304]): mdworker(1304) deny file-write-owner /Users/Scott/Library/Containers/com.apple.Notes/Data/Library/Notes/NotesV1.stor edata-shm (import fstype:hfs fsflag:480D000 flags:240000005F diag:0 uti:com.apple.notes.externalrecord plugin:/Library/Spotlight/Notes.mdimporter - find suspect file using: sudo mdutil -t 419057)
    Nov  5 03:47:28 Scotts-MacBook-Air.local System Preferences[1016]: Unknown serviceID: com.apple.Dataclass.SharedStreams
    Nov  5 03:47:28 Scotts-MacBook-Air.local System Preferences[1016]: INFO: FMM: containsRecoveryPartition: YES, version: 12E3200
    Nov  5 03:47:28 Scotts-MacBook-Air.local System Preferences[1016]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    Nov  5 03:47:28 Scotts-MacBook-Air.local System Preferences[1016]: INFO: FMM: containsRecoveryPartition: YES, version: 12E3200
    Nov  5 03:47:28 Scotts-MacBook-Air.local System Preferences[1016]: INFO: FMM: recoveryPartitionNeedsUpdate: NO
    Nov  5 03:47:28 Scotts-MacBook-Air.local System Preferences[1016]: INFO: FMM: can enable: YES
    Nov  5 03:47:46 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 03:47:47 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 03:48:24 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100037 created
    Nov  5 03:48:33 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 03:48:33 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100033 destroyed
    Nov  5 03:49:42 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100038 created
    Nov  5 03:50:29 Scotts-MacBook-Air.local xpcd[1106]: restored permissions (100644 -> 100744) on /Users/Scott/Library/Containers/com.apple.ShareKitHelper/Container.plist
    Nov  5 03:50:34 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: AppleCamIn::setPowerStateGated: 1
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_on_hardware
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=1, status = 0x0, result_value = 0x0
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: AppleCamIn::EnableS2Chip - power up took 2 us (ok)
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: s2_pll_reset: S2 PLL Reset is done!!!
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: restoring 127 DDR PHY shmoo-calibrated registers
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: WARNING: entry 041:  ddr_phy_reg_offset=0x00000204: exp_value=0x00000000 does not match rd_value=0x00010000
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: Done
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_on_hardware - Memory OKAY
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: power_on_hardware: DDR (re)initialization complete - execution time = 813 us
    Nov  5 03:50:41 Scotts-MacBook-Air kernel[0]: AppleCamIn::message
    Nov  5 03:50:44 Scotts-MacBook-Air kernel[0]: AppleCamIn::setPowerStateGated: 0
    Nov  5 03:50:44 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_off_hardware
    Nov  5 03:50:44 Scotts-MacBook-Air kernel[0]: AppleCamIn::DisableS2Chip
    Nov  5 03:50:44 Scotts-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=0, status = 0x0, result_value = 0x0
    Nov  5 03:50:44 Scotts-MacBook-Air kernel[0]: AppleCamIn::message
    Nov  5 03:50:49 --- last message repeated 1 time ---
    Nov  5 03:50:49 Scotts-MacBook-Air.local Contacts[1318]: AOSKit ERROR: XPC CLIENT: Connection [0x7f9ccd307520] event handler received event with type: [XPC_TYPE_ERROR].  Description: [Connection interrupted]
    Nov  5 03:50:51 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    Nov  5 03:50:51 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    Nov  5 03:50:51 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit] Cancel UI for running services with Client PID: 1318
    Nov  5 03:50:51 Scotts-MacBook-Air.local com.apple.ImageKit.RecentPictureService[503]: RecentPictureService: XPC error
    Nov  5 03:51:05 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 03:51:06 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 03:51:16 Scotts-MacBook-Air.local com.apple.time[257]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Nov  5 03:51:51 Scotts-MacBook-Air.local awacsd[1282]: InnerStore GetWakeInfoForZone: no external port for 1879438766.members.btmm.icloud.com.
    Nov  5 03:52:22 --- last message repeated 1 time ---
    Nov  5 03:53:18 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: CGSGetWindowTags: Invalid window 0x4cd
    Nov  5 03:53:18 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    Nov  5 03:53:18 Scotts-MacBook-Air.local librariand[1008]: client process 1333 does not have a valid com.apple.developer.ubiquity-container-identifiers entitlement
    Nov  5 03:53:18 Scotts-MacBook-Air.local librariand[1008]: error in handle_container_path_request: LibrarianErrorDomain/9/The client process does not have a valid com.apple.developer.ubiquity-container-identifiers entitlement
    Nov  5 03:53:19 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowListTags: Modification of kCGSModalWindowTagBit (31) on a window 0x4ce requiring rights kCGSWindowRightOwner by caller iPhoto
    Nov  5 03:53:19 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowShadowParameters: Operation on a window 0x4ce requiring rights kCGSWindowRightOwner by caller iPhoto
    Nov  5 03:53:32 --- last message repeated 1 time ---
    Nov  5 03:53:32 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowListTags: Modification of kCGSModalWindowTagBit (31) on a window 0x4ce requiring rights kCGSWindowRightOwner by caller iPhoto
    Nov  5 03:53:32 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: CGSReleaseWindow: Invalid window 1229
    Nov  5 03:53:32 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: _NXTermWindow: error releasing window (1000)
    Nov  5 03:53:32 Scotts-MacBook-Air.local iPhoto[1333]: kCGErrorIllegalArgument: _getWindowRegion: Invalid window
    Nov  5 03:53:32 Scotts-MacBook-Air.local iPhoto[1333]: CGSSetWindowLevel: Invalid window 0x4ce
    Nov  5 03:53:32 Scotts-MacBook-Air.local iPhoto[1333]: PSsetwindowlevel, error setting window level (1000)
    Nov  5 03:53:32 Scotts-MacBook-Air.local iPhoto[1333]: CGSClearWindowTags: Invalid window 0x4ce
    Nov  5 03:53:32 Scotts-MacBook-Air.local iPhoto[1333]: CGSSetIgnoresCycle: error 1000 setting or clearing window tags
    Nov  5 03:53:36 Scotts-MacBook-Air.local iPhoto[1333]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 03:54:19 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 03:54:20 Scotts-MacBook-Air.local iPhoto[1333]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov  5 03:54:20 Scotts-MacBook-Air.local iPhoto[1333]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov  5 03:55:14 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100041 created
    Nov  5 03:56:05 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: CGSGetWindowTags: Invalid window 0x4ec
    Nov  5 03:56:05 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    Nov  5 03:56:05 Scotts-MacBook-Air.local librariand[1008]: client process 1333 does not have a valid com.apple.developer.ubiquity-container-identifiers entitlement
    Nov  5 03:56:05 Scotts-MacBook-Air.local librariand[1008]: error in handle_container_path_request: LibrarianErrorDomain/9/The client process does not have a valid com.apple.developer.ubiquity-container-identifiers entitlement
    Nov  5 03:56:05 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowListTags: Modification of kCGSModalWindowTagBit (31) on a window 0x4ed requiring rights kCGSWindowRightOwner by caller iPhoto
    Nov  5 03:56:05 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowShadowParameters: Operation on a window 0x4ed requiring rights kCGSWindowRightOwner by caller iPhoto
    Nov  5 03:56:13 --- last message repeated 1 time ---
    Nov  5 03:56:13 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 03:56:13 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100036 destroyed
    Nov  5 03:56:13 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 03:56:13 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100034 destroyed
    Nov  5 03:56:13 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 03:56:13 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100037 destroyed
    Nov  5 03:56:15 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowListTags: Modification of kCGSModalWindowTagBit (31) on a window 0x4ed requiring rights kCGSWindowRightOwner by caller iPhoto
    Nov  5 03:56:15 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: CGSReleaseWindow: Invalid window 1260
    Nov  5 03:56:15 Scotts-MacBook-Air.local com.apple.security.pboxd[1335]: _NXTermWindow: error releasing window (1000)
    Nov  5 03:57:47 Scotts-MacBook-Air.local lsboxd[322]: @AE relay 4755524c:4755524c
    Nov  5 03:59:18 Scotts-MacBook-Air.local WindowServer[239]: CGXGetConnectionProperty: Invalid connection 90683
    Nov  5 03:59:18 --- last message repeated 2 times ---
    Nov  5 03:59:18 Scotts-MacBook-Air com.apple.launchd.peruser.502[122] ([0x0-0xca0ca].com.apple.mail[954]): Exited: Terminated: 15
    Nov  5 03:59:20 Scotts-MacBook-Air.local coresymbolicationd[1361]: /System/Library/Caches/com.apple.coresymbolicationd/data does not exist, resetting cache
    Nov  5 03:59:28 Scotts-MacBook-Air com.apple.launchd[1] (com.apple.audio.ComponentHelper[1344]): Exited: Killed: 9
    Nov  5 03:59:28 Scotts-MacBook-Air kernel[0]: memorystatus_thread: idle exiting pid 1344 [com.apple.audio.]
    Nov  5 03:59:28 Scotts-MacBook-Air com.apple.launchd[1] (com.apple.audio.SandboxHelper[1343]): Exited: Killed: 9
    Nov  5 03:59:28 Scotts-MacBook-Air kernel[0]: memorystatus_thread: idle exiting pid 1343 [com.apple.audio.]
    Nov  5 03:59:30 Scotts-MacBook-Air.local spindump[1354]: Saved hang report for Mail version 6.5 (1508) to /Library/Logs/DiagnosticReports/Mail_2013-11-05-035930_Scotts-MacBook-Air.hang
    Nov  5 03:59:52 Scotts-MacBook-Air.local SubmitDiagInfo[1368]: Submitted hang report: file://localhost/Library/Logs/DiagnosticReports/Mail_2013-11-05-035930_Scotts-M acBook-Air.hang
    Nov  5 04:00:00 Scotts-MacBook-Air.local Safari[360]: CGContextClipToRect: invalid context 0x0
    Nov  5 04:00:53 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    Nov  5 04:00:53 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    Nov  5 04:00:53 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit] Cancel UI for running services with Client PID: 1333
    Nov  5 04:00:55 Scotts-MacBook-Air.local xpcd[1106]: restored permissions (100644 -> 100744) on /Users/Scott/Library/Containers/com.apple.mail/Container.plist
    Nov  5 04:00:55 Scotts-MacBook-Air.local Mail[1370]: Using V2 Layout
    Nov  5 04:00:55 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100042 created
    Nov  5 04:01:28 Scotts-MacBook-Air.local WindowServer[239]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    Nov  5 04:02:37 Scotts-MacBook-Air.local com.apple.XType.FontHelper[1381]: FontHelper:  message received. (<dictionary: 0x7fb692900900> { count = 2, contents =
                        "query" => <string: 0x7fb692900a60> { length = 102, contents = "com_apple_ats_name_postscript == "Calibri" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
                        "restricted" => <bool: 0x7fff76da0320>: true
    Nov  5 04:02:37 Scotts-MacBook-Air.local com.apple.XType.FontHelper[1381]: AutoActivation:  scopes (
                  "/Library/Application Support/Apple/Fonts"
    Nov  5 04:02:39 Scotts-MacBook-Air.local com.apple.XType.FontHelper[1381]: FontHelper:  message received. (<dictionary: 0x7fb691c20640> { count = 2, contents =
                        "query" => <string: 0x7fb691c1eb50> { length = 101, contents = "com_apple_ats_name_postscript == "Myriad" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
                        "restricted" => <bool: 0x7fff76da0320>: true
    Nov  5 04:02:39 Scotts-MacBook-Air.local com.apple.XType.FontHelper[1381]: AutoActivation:  scopes (
                  "/Library/Application Support/Apple/Fonts"
    Nov  5 04:02:58 Scotts-MacBook-Air.local WindowServer[239]: CGXRegisterWindowWithSystemStatusBar: window f already registered
    Nov  5 04:03:54 Scotts-MacBook-Air.local lsboxd[322]: @AE relay 4755524c:4755524c
    Nov  5 04:05:23 Scotts-MacBook-Air.local mdworker32[1384]: CGSGetDisplayBounds: Invalid display 0x00000000
    Nov  5 04:05:23 Scotts-MacBook-Air.local mdworker32[1384]: bootstrap_look_up2 failed with 0x44c
    Nov  5 04:05:23 Scotts-MacBook-Air kernel[0]: Sandbox: sandboxd(1385) deny mach-lookup com.apple.coresymbolicationd
    Nov  5 04:05:23 Scotts-MacBook-Air.local sandboxd[1385] ([1384]): mdworker32(1384) deny mach-lookup com.apple.PowerManagement.control (import fstype:hfs fsflag:480D000 flags:240000005E diag:0 uti:org.openxmlformats.presentationml.presentation plugin:/Library/Spotlight/Microsoft Office.mdimporter - find suspect file using: sudo mdutil -t 421403)
    Nov  5 04:09:03 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 04:09:03 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100041 destroyed
    Nov  5 04:10:43 Scotts-MacBook-Air.local Safari[360]: CGContextClipToRect: invalid context 0x0
    Nov  5 04:13:58 Scotts-MacBook-Air.local mdworker32[1391]: CGSGetDisplayBounds: Invalid display 0x00000000
    Nov  5 04:13:58 Scotts-MacBook-Air.local mdworker32[1391]: bootstrap_look_up2 failed with 0x44c
    Nov  5 04:13:58 Scotts-MacBook-Air kernel[0]: Sandbox: sandboxd(1392) deny mach-lookup com.apple.coresymbolicationd
    Nov  5 04:13:59 Scotts-MacBook-Air.local sandboxd[1392] ([1391]): mdworker32(1391) deny mach-lookup com.apple.PowerManagement.control (import fstype:hfs fsflag:480D000 flags:240000005E diag:0 uti:org.openxmlformats.presentationml.presentation plugin:/Library/Spotlight/Microsoft Office.mdimporter - find suspect file using: sudo mdutil -t 439454)
    Nov  5 04:14:06 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:14:06 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:17:31 Scotts-MacBook-Air.local Safari[360]: CGContextClipToRect: invalid context 0x0
    Nov  5 04:17:45 Scotts-MacBook-Air.local mdworker32[1397]: CGSGetDisplayBounds: Invalid display 0x00000000
    Nov  5 04:17:45 Scotts-MacBook-Air.local mdworker32[1397]: bootstrap_look_up2 failed with 0x44c
    Nov  5 04:17:46 Scotts-MacBook-Air kernel[0]: Sandbox: sandboxd(1398) deny mach-lookup com.apple.coresymbolicationd
    Nov  5 04:17:46 Scotts-MacBook-Air.local sandboxd[1398] ([1397]): mdworker32(1397) deny mach-lookup com.apple.PowerManagement.control (import fstype:hfs fsflag:480D000 flags:240000005E diag:0 uti:org.openxmlformats.presentationml.presentation plugin:/Library/Spotlight/Microsoft Office.mdimporter - find suspect file using: sudo mdutil -t 446419)
    Nov  5 04:19:18 Scotts-MacBook-Air.local lsboxd[322]: @AE relay 4755524c:4755524c
    Nov  5 04:21:17 Scotts-MacBook-Air com.apple.launchd[1] (com.apple.XType.FontHelper[1381]): Exited: Killed: 9
    Nov  5 04:21:17 Scotts-MacBook-Air kernel[0]: memorystatus_thread: idle exiting pid 1381 [XType.FontHelper]
    Nov  5 04:23:12 Scotts-MacBook-Air.local mdworker32[1404]: CGSGetDisplayBounds: Invalid display 0x00000000
    Nov  5 04:23:12 Scotts-MacBook-Air.local mdworker32[1404]: bootstrap_look_up2 failed with 0x44c
    Nov  5 04:23:12 Scotts-MacBook-Air kernel[0]: Sandbox: sandboxd(1405) deny mach-lookup com.apple.coresymbolicationd
    Nov  5 04:23:13 Scotts-MacBook-Air.local sandboxd[1405] ([1404]): mdworker32(1404) deny mach-lookup com.apple.PowerManagement.control (import fstype:hfs fsflag:480D000 flags:240000005E diag:0 uti:org.openxmlformats.spreadsheetml.sheet plugin:/Library/Spotlight/Microsoft Office.mdimporter - find suspect file using: sudo mdutil -t 458245)
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: AppleCamIn::setPowerStateGated: 1
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_on_hardware
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=1, status = 0x0, result_value = 0x0
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: AppleCamIn::EnableS2Chip - power up took 2 us (ok)
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: s2_pll_reset: S2 PLL Reset is done!!!
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: restoring 127 DDR PHY shmoo-calibrated registers
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: WARNING: entry 041:  ddr_phy_reg_offset=0x00000204: exp_value=0x00000000 does not match rd_value=0x00010000
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: Done
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_on_hardware - Memory OKAY
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: power_on_hardware: DDR (re)initialization complete - execution time = 733 us
    Nov  5 04:31:14 Scotts-MacBook-Air kernel[0]: AppleCamIn::message
    Nov  5 04:31:17 Scotts-MacBook-Air com.apple.launchd[1] (com.apple.coresymbolicationd[1361]): Exited: Killed: 9
    Nov  5 04:31:17 Scotts-MacBook-Air kernel[0]: memorystatus_thread: idle exiting pid 1361 [coresymbolicatio]
    Nov  5 04:31:18 Scotts-MacBook-Air.local Photo Booth[1412]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    Nov  5 04:31:25 Scotts-MacBook-Air.local WindowServer[239]: CGXGetConnectionProperty: Invalid connection 114687
    Nov  5 04:31:25 --- last message repeated 2 times ---
    Nov  5 04:31:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::setPowerStateGated: 0
    Nov  5 04:31:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_off_hardware
    Nov  5 04:31:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::DisableS2Chip
    Nov  5 04:31:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=0, status = 0x0, result_value = 0x0
    Nov  5 04:31:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::message
    Nov  5 04:31:25 --- last message repeated 1 time ---
    Nov  5 04:31:25 Scotts-MacBook-Air.local WindowServer[239]: CGXGetConnectionProperty: Invalid connection 114687
    Nov  5 04:31:28 --- last message repeated 1 time ---
    Nov  5 04:31:28 Scotts-MacBook-Air.local Safari[360]: CGContextClipToRect: invalid context 0x0
    Nov  5 04:31:58 --- last message repeated 7 times ---
    Nov  5 04:32:25 Scotts-MacBook-Air.local CVMServer[95]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Nov  5 04:32:25 Scotts-MacBook-Air.local CVMServer[95]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Nov  5 04:32:38 Scotts-MacBook-Air.local Safari[360]: CGContextClipToRect: invalid context 0x0
    Nov  5 04:34:53 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:34:53 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:34:54 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:34:54 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:35:00 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:35:00 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:35:00 Scotts-MacBook-Air.local WindowServer[239]: CGXRegisterWindowWithSystemStatusBar: window f already registered
    Nov  5 04:35:01 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:35:01 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:35:04 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    Nov  5 04:35:04 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    Nov  5 04:35:04 Scotts-MacBook-Air.local com.apple.ShareKitHelper[1320]: --warning: [ShareKit] Cancel UI for running services with Client PID: 360
    Nov  5 04:35:04 Scotts-MacBook-Air.local WindowServer[239]: CGXGetConnectionProperty: Invalid connection 59671
    Nov  5 04:35:12 --- last message repeated 4 times ---
    Nov  5 04:35:12 Scotts-MacBook-Air.local sandboxd[1433] ([1432]): launchctl(1432) deny file-read-data /private/var/db/launchd.db/com.apple.launchd.peruser.502/overrides.plist
    Nov  5 04:35:13 Scotts-MacBook-Air.local sandboxd[1433] ([1432]): launchctl(1432) deny job-creation
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: Sandbox: sandboxd(1433) deny mach-lookup com.apple.coresymbolicationd
    Nov  5 04:35:13 Scotts-MacBook-Air.local com.apple.time[257]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: AppleCamIn::setPowerStateGated: 1
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_on_hardware
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=1, status = 0x0, result_value = 0x0
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: AppleCamIn::EnableS2Chip - power up took 1 us (ok)
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: s2_pll_reset: S2 PLL Reset is done!!!
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: restoring 127 DDR PHY shmoo-calibrated registers
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: WARNING: entry 041:  ddr_phy_reg_offset=0x00000204: exp_value=0x00000000 does not match rd_value=0x00010000
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: restore_ddr_phy_regs: Done
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_on_hardware - Memory OKAY
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: power_on_hardware: DDR (re)initialization complete - execution time = 659 us
    Nov  5 04:35:13 Scotts-MacBook-Air kernel[0]: AppleCamIn::message
    Nov  5 04:35:14 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Killing auth hosts
    Nov  5 04:35:14 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100042 destroyed
    Nov  5 04:35:14 Scotts-MacBook-Air.local com.apple.SecurityServer[15]: Session 100046 created
    Nov  5 04:35:25 Scotts-MacBook-Air com.apple.launchd[1] (com.apple.coremedia.videodecoder[601]): Exit timeout elapsed (20 seconds). Killing
    Nov  5 04:35:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::setPowerStateGated: 0
    Nov  5 04:35:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::power_off_hardware
    Nov  5 04:35:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::DisableS2Chip
    Nov  5 04:35:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::acpiControlS2ChipPower - powerState=0, status = 0x0, result_value = 0x0
    Nov  5 04:35:25 Scotts-MacBook-Air kernel[0]: AppleCamIn::message
    Nov  5 04:35:55 --- last message repeated 1 time ---
    Nov  5 04:37:46 Scotts-MacBook-Air.local System Preferences[1451]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov  5 04:37:46 Scotts-MacBook-Air.local System Preferences[1451]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov  5 04:38:09 Scotts-MacBook-Air.local Safari[1455]: CGContextClipToRect: invalid context 0x0
    Nov  5 04:38:11 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:38:11 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:38:41 Scotts-MacBook-Air.local WebProcess[1457]: objc[1457]: Object 0x7fbbaa41c860 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    Nov  5 04:39:12 --- last message repeated 4 times ---
    Nov  5 04:40:23 Scotts-MacBook-Air.local WindowServer[239]: CGXRegisterWindowWithSystemStatusBar: window f already registered
    Nov  5 04:41:59 Scotts-MacBook-Air.local WindowServer[239]: CGXGetConnectionProperty: Invalid connection 86739
    Nov  5 04:42:29 --- last message repeated 4 times ---
    Nov  5 04:43:43 Scotts-MacBook-Air.local coreaudiod[169]: Disabled automatic stack shots because audio IO is active
    Nov  5 04:43:43 Scotts-MacBook-Air.local coreaudiod[169]: Enabled automatic stack shots because audio IO is inactive
    Nov  5 04:43:46 Scotts-MacBook-Air com.apple.launchd.peruser.502[122] ([0x0-0x14d14d].com.apple.Automator[1469]): Exited: Killed: 9
    Nov  5 04:43:57 Scotts-MacBook-Air.local iTunes[608]: 2013-11-05 04:43:57.700410 AM [AVSystemController] Stopping AirPlay
    Nov  5 04:44:37 Scotts-MacBook-Air.local System Preferences[1451]: httpdEnabled is deprecated !!
    Nov  5 04:44:40 Scotts-MacBook-Air.local CVMServer[95]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Nov  5 04:44:48 --- last message repeated 1 time ---
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): Got user: Scott
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): Got ruser: (null)
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): Got service: authorization
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in od_principal_for_user(): No authentication authority returned
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in od_principal_for_user(): failed: 7
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): Done cleanup3
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Nov  5 04:44:48 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Nov  5 04:44:49 Scotts-MacBook-Air.local authorizationhost[1482]: in pam_sm_authenticate(): OpenDirectory - The authtok is incorrect.
    Nov  5 04:44:49 Scotts-MacBook-Air.local authorizationhost[1482]: Failed to authenticate user <Scott> (

    You haven't shown any evidence that your computer was tampered with. Some of your Internet accounts may have been. Usually, but not always, that happens because you chose a weak password.
    Log in to each account (if you still can) and change the password. If you use the same password for any other accounts, change those passwords too, and make them all different. Internet passwords should be random strings of at least 10 characters. You most likely don't need to, and should not be able to, remember them. They should be saved in your keychain and backed up with the rest of your data.
    One way to generate a secure password is the following. Triple-click anywhere the line below on this page to select it:
    openssl rand -base64 10 | cut -c-14 | open -ef
    Copy the selected line to the clipboard by pressing the key combination command-C. Launch the Terminal application and paste into the window that opens (command-V). A string of 14 random characters will appear in a TextEdit window. Use that string, or a substring, as the password. To generate another random string, press the up-arrow key and then the return key with the Terminal window active. You can then quit Terminal.
    If the compromised account is on Gmail, then changing the password may not be enough. Follow all of Google'sinstructions to secure it.

  • Opening an IMG_2712 Mov. file on Macbook Air?

    I was sent a few Quicktime videos with the tag IMG_2712 Mov. and then couldn't open them on a Macbook Air that has been updated so it has the quicktime software that comes with Maverick 10.9.5 Version (1.3 GH Intel Core 15). This tag is not listed in the Quicktime tags listed on the Apple site. Is there another application that will open them? I tried to put them in to iMovie without success.

    I was sent a few Quicktime videos with the tag IMG_2712 Mov. and then couldn't open them on a Macbook Air that has been updated so it has the quicktime software that comes with Maverick 10.9.5 Version (1.3 GH Intel Core 15). This tag is not listed in the Quicktime tags listed on the Apple site. Is there another application that will open them? I tried to put them in to iMovie without success.
    The filename suggests the video was recorded on a digital camera or a device like an iPhone. For instance, an iPhone video would use the generic MOV file container to hold H.264 video with AAC audio which should normally be compatible with your QT X player. Unfortunately, depending on how the videos were handled, the data could be corrupted, the file containers could be corrupted, or the files may be being trapped by player for security reasons.
    My recommendation would be to try playing the file in an app like VLC which might play files using codecs which are incompatible with or unconvertible by QT X. If the file plays in VLC, then you should be able to determine what codecs where used to create the file and whether or not the content should be QT X compatible. If file plays and is not QT X compatible, then the videos should be convertible to QT X formats. If the files play and are already in QT X compatible formats, then the files may a have a security problem which may be gotten around by simply copying the compressed data to a new file container. On the other hand, if the file will not open and play in an app like VLC, then it is most likely that the videos were corrupted before or during transmission to you and you would need to request the files be resent in a more diligent manner to avoid such problems.

  • Adobe Air 3.0 iOS streaming H264/Speex over RTMP -- No Video

    Problem:
    H264/Speex RTMP stream from Flash Media Server doesn't display video.  Audio plays fine.
    Conditions:
    Adobe Air 3.0
    iOS device (iPad 2, iOS4.3)
    App settings:
    <renderMode>direct</renderMode>
    Flash Builder 4.5.1 compiler settings:
    -swf-version=13
    -target-player=11.0.0
    I have tried using both stageVideo and the regular Video object to render an H264 signal streaming from Flash Media Server over rtmp, but with no luck.  I can hear the audio, but the video is never rendered.
    I CAN see H263 video when streamed over RTMP using this setup (with just the Video object). 
    I can also stream a locally stored mp4 (H264/AAC) file over rtmp from the iOS device and play it locally just fine (using a stageVideo object).
    I have attempted this with both stageVideo (which works fine when streaming an mp4 file from the iOS device) and with the regular Video object (the regular Video object handles H263 just fine streaming down from FMS over rtmp).  I've also played around with backgroundAlpha = "0" for this case, all with no luck.
    I've followed all the online instructions and tutorials to get this working for the past week, but have not had any luck.  I'm happy to post more code, but this approach is fairly straight forward and has been described multiple times around these forums and in the adobe blog posts.  It goes like this:
         - instantiate NetConnection (_nc) to FMS and wait for successful connection:
                   _ns = new NetConnection();  
                   _nc.connect(serverAddress);
         - instantiate NetStream (_ns) and connect using NetConnection: 
                   _ns = new NetStream(_nc);
         - setup listener for StageVideoAvailabilityEvent; if stageVideo becomes available, attach _ns: 
                  _stageVideo = stage.stageVideos[0];
                  _stageVideo = _stageVideo.attachNetStream(_ns);
         - if stageVideo ISN'T available, fall back to Video object:
                   _video = new Video();
                   _video.attachNetStream(_ns);
                   stage.addChild(_video);
         - play netStream app:
                   _ns.play(appName);
    My renderMode is set correctly ("direct"), and from what I can tell, this isn't a backgroundAlpha issue.
    I have seen this problem described elsewhere on this forums and on the net. 
    I'd like to know from Adobe: are there any compatibility issues with this approach?  There doesn't seem to be any type of compatibility chart listing which video codecs and transport protocols are available on the different mobile platforms.  Since mobile deployment is so heaviliy fragmented, a descriptive chart or table like this would be helpful for those of us developing -- at least for the main mobile platforms predominantly in use.
    Other forum posts similar to this problem:
    http://forums.adobe.com/message/3981541#3981541
    http://forums.adobe.com/message/3954578#3954578
    Thanks in advance!

    I do hope someone from Adobe is "hearing" this, guys. The lack of RTMP-based H.264 video on the Air for iOS is a major problem, indeed.
    As Fabio Sonnati mentioned in http://sonnati.wordpress.com/2011/04/26/air-2-6-for-ios-and-video-play back/, AIR for iOS does support HTTP streaming (via HLS) of h.264 videos. However, when streaming via RTMP, AIR for iOS only supports VP6 and Spark – a couple of old, retired codecs.
    While HTTP streaming (HLS) seems to be a good option for those who simply want to “play a video” in iOS, I do believe it has some severe limitations, especially for live-communications. I’d like to share some of these thoughts with you.
    1. HLS has ridiculously high latency for live videos (around 40 seconds), when compared to RTMP. Although this may not be a problem for on-demand videos, it sure is a great problem for anyone doing serious live-communications applications (such as webconferencing, live webcasting with audience interaction or Skype-like video chats), which require near-zero latency.
    2. Perhaps someone can correct me on this (hopefully!), but as far as I know, HTTP streaming will not allow cuepoints to be read from videos. This is particularly painful for anyone doing video-triggered actions, such as slide changes (for webinar apps), subtitling or live closed captioning, etc. I read somewhere that OSMF player allows cuepoints (or "temporal metadata". See http://blogs.adobe.com/osmf/2009/11/cue_point_support_in_osmf.html), but I haven't been able to test it myself.
    3. Although HLS it is quite compatible with firewalls (since it flows through port 80), RTMP with tunnelling also flows through port 80 or 443, which adds great compatibility, even on very restricted networks. Our experience with very large clients proves that, hands down.
    In other words, HTTP/HLS streaming is Ok. But it simply does *not* fit into every shoe that RTMP does. We do believe that RTMP remains as our best option for live streaming or serious streaming-oriented *apps* (in which things more complex than “mere video playing in a window” actually happen).
    That all said, I do believe we should let Adobe know about this need. The fact that RTMP streaming in AIR for iOS is limited to VP6 and Spark, which are two “dead” codecs, still puts us, Air developers, in a very fragile position in terms of what we can accomplish with video in iOS.
    I’m sure some of you cheered when you heard about Flash Player 11 having h.264 video encoding. This, (plus the echo cancellation feature that came in 10.3) opened great doors for great Unified-Communication applications to be developed for Flash/Air. Now, it’s undeniable that clients want those applications running on tablets, especially the iPad.
    Not being able to use h.264 via RTMP on iOS is certainly a huge step backwards. Anyone shares this same opinion? What do you guys believe to be the best option to let Adobe really know about this need? Is this limitation a simple lack-of-a-feature (which can be fixed by Adobe) or is this some imposed thing by Apple?
    Just one final note: Air for Android does *not* have the same limitation. It does allow RTMP streaming of h.264.
    Thanks for your attention,
    Helder Conde

  • Video playback issues in Air for Android

    Hello everybody
    I am developing an advertisement application which plays multiple videos. I have faced a very strange problem: nor the simple Video nor the StageVideo are not visible when I run the app on target android device. I can hear the audio but the only way to get the video is to press back button and then get back to app but in this case the video goes over the UI. This happens only on a target device which is a chinese sibo android tablet. It has android 4.1 on board. I have seen a lot of people had the similar issues:
    http://forums.adobe.com/message/5429125
    but the solution mentioned there - adding <containsVideo>true</containsVideo> to the manifest xml doesnt help
    I am using adobe air 4.0 sdk and the air 4.0 runtime on the device.  I have tried to change renderMode to CPU/Direct/Auto but it doesn change anything.
    The other three android devices I have - toshiba thrive tablet(4.0.4)/ eken tablet(4.2.2)/ htc desire c(4.0.3) play all the video content without any problem.
    Any advice will be highly appreciated,
    Max

    Hi, Chris,
    I think this issue: Bug#3832525 - [Android] Video + Stage3D = Video don't work but sound continue playback
    Also there is many critical video playback issues:
    Bug#3759420 - [Platform_Windows] GPU accelerated video stop playing when screen resolution changes after NetStream.Buffe…
    Bug#3810201 - [Android] H.264 video rotating problem
    Bug#3503389 - [Platform_Android]StageVideo attachCamera()
    Bug#3802932 - [iOS] Video stops playing
    Bug#3840986 - [iOS] Simple Video object doesn't work with H.264 (MP4) videos
    Bug#3779843 - StageVideo + NetStream + Starling = R6025 Error
    Bug#3626740 - H.264 playback conflicts with Stage3D (Android)
    Bug#3832327 - [Android] NetStream decodedFrames don't work
    Bug#3832141 - Video is not working if you seek on NetStream.Play.Stop and have a bufferTime
    Bug#3810979 - AIR on iOS: Using StageVideo makes 2D Display objects opaque/black over Stage3D
    Bug#3578045 - new Video() android black screen
    Bug#3703836 - Black screen on Samsung Galaxy S4 and Nexus 7 device
    Bug#3837870 - [iOS] StageVideo + Stage3D = video not displaying but sound playback
    Bug#3840983 - [Android] Returning from Alarm Clock causes black screen when using Video with GPU acceleration
    Bug#3840999 - [iOS] [Android] Turn off screen at NetStream.Buffer.Flush causes video not work or crash with some videos
    Bug#3844059 - [iOS[ Switching between multiple NetStreams not work
    Bug#3773944 - Video view top at android 4.3
    and more
    All of these problems very important for our business. Often we cannot create stable AIR applications when we need to use videos.
    Could you force for faster fixing these issues?

  • Air-lap1142n Is it dead or just in need of help?

    Hi,
    I have a number of air-lap1142n-e-k9 access points, so far they have all been deployed successfully aprt from this one unit.
    When I deployed it, it joined the wlc as normal, downloaded the image, and I was able to rename it etc.. but then a couple of min's later it's status changed to down. It's details on the wlc had changed to name: blank, mac address 0000.0000.0000
    I've tried restarting it a couple of times with no luck, below is the output from the console:
    Press RETURN to get started!
    *Mar 1 00:00:06.711: %SOAP_FIPS-2-SELF_TEST_IOS_SUCCESS: IOS crypto FIPS self test passed
    *Mar 1 00:00:06.722: *** CRASH_LOG = YES
    Security Core found.
    Base Ethernet MAC address: 50:3D:E5:BE:E8:F8
    *Mar 1 00:00:08.683: ERROR: wait 3 failed
    *Mar 1 00:00:09.190: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 1
    *Mar 1 00:00:09.199: Unsupported radio found of type 0
    *Mar 1 00:00:09.236: %LWAPP-3-CLIENTEVENTLOG: Read and initialized AP event log (contains, 1024 messages)
    *Mar 1 00:00:10.295: %LINK-3-UPDOWN: Interface GigabitEthernet0, changed state to up
    *Mar 1 00:00:11.374: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to up
    *Mar 1 00:00:11.419: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C1140 Software (C1140-K9W8-M), Version 12.4(21a)JHB1, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2010 by Cisco Systems, Inc.
    Compiled Wed 11-Aug-10 15:45 by prod_rel_team
    *Mar 1 00:00:11.419: %SNMP-5-COLDSTART: SNMP agent on host AP503d.e5be.e8f8 is undergoing a cold start
    *Mar 1 00:13:37.040: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *Mar 1 00:13:37.040: bsnInitRcbSlot: slot 0 has venus radio(UNSUPPORT)
    *Mar 1 00:13:37.055: bsnUnlockDevice: not bring radio up: radio 0 is in admin disable state
    *Mar 1 00:13:37.232: %SSH-5-ENABLED: SSH 2.0 has been enabled
    *Mar 1 00:13:37.233: %LINK-3-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar 1 00:13:37.235: Writing radio coredump to 'flash:/r0.rcore'
    *Mar 1 00:13:37.407: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar 1 00:13:38.239: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar 1 00:13:48.469: %DHCP-6-ADDRESS_ASSIGN: Interface GigabitEthernet0 assigned DHCP address 172.31.44.41, mask 255.255.252.0, hostname AP503d.e5be.e8f8
    *Mar 1 00:13:49.264: Interface Dot11Radio0: not starting because stop-on-failure set
    *Mar 1 00:13:55.919: Interface Dot11Radio0: not starting because stop-on-failure set
    *Mar 1 00:13:56.289: Logging LWAPP message to 255.255.255.255.
    *Mar 1 00:13:59.364: %CDP_PD-4-POWER_OK: Full power - NEGOTIATED inline power source
    *Mar 1 00:13:59.385: %LINK-3-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar 1 00:14:00.384: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Mar 1 00:14:00.384: %SYS-6-LOGGINGHOST_STARTSTOP: Logging to host 255.255.255.255 started - CLI initiated
    Translating "CISCO-CAPWAP-CONTROLLER"...domain server (192.168.134.251) (192.168.70.51)
    *Mar 1 00:14:06.925: %CAPWAP-3-ERRORLOG: Did not get log server settings from DHCP.
    *Mar 1 00:14:06.930: %CAPWAP-3-ERRORLOG: Could Not resolve CISCO-CAPWAP-CONTROLLER
    *Mar 1 00:14:16.931: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *May 19 08:07:23.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 172.18.1.40 peer_port: 5246
    *May 19 08:07:23.000: %CAPWAP-5-CHANGED: CAPWAP changed state to
    *May 19 08:07:23.778: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 172.18.1.40 peer_port: 5246
    *May 19 08:07:23.778: %CAPWAP-5-SENDJOIN: sending Join Request to 172.18.1.40
    *May 19 08:07:23.779: %CAPWAP-5-CHANGED: CAPWAP changed state to JOIN
    *May 19 08:07:28.778: %CAPWAP-5-SENDJOIN: sending Join Request to 172.18.1.40
    *May 19 08:08:05.436: %CDP_PD-4-POWER_OK: Full power - NEGOTIATED inline power source
    *May 19 08:08:23.000: %DTLS-5-SEND_ALERT: Send WARNING : Close notify Alert to 172.18.1.40:5246
    *May 19 08:08:23.040: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *May 19 08:08:23.041: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *May 19 08:08:23.041: bsnInitRcbSlot: slot 0 has venus radio(UNSUPPORT)
    *May 19 08:08:23.046: bsnUnlockDevice: not bring radio up: radio 0 is in admin disable state
    *May 19 08:08:23.077: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down
    *May 19 08:08:24.077: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *May 19 08:08:33.055: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *May 19 08:08:33.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 172.18.1.40 peer_port: 5246
    *May 19 08:08:33.000: %CAPWAP-5-CHANGED: CAPWAP changed state to
    *May 19 08:08:33.785: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 172.18.1.40 peer_port: 5246
    *May 19 08:08:33.786: %CAPWAP-5-SENDJOIN: sending Join Request to 172.18.1.40
    *May 19 08:08:33.786: %CAPWAP-5-CHANGED: CAPWAP changed state to JOIN
    *May 19 08:08:38.786: %CAPWAP-5-SENDJOIN: sending Join Request to 172.18.1.40
    I've tried re-imaging the AP a couple of times, with no luck. Is it dead or just in need of help?
    Any ideas.
    Thanks
    Dylan

    Hi,
    We are hitting the software bug and the bug ID is CSCsz56711
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCsz56711
    The issue is related to PCI componenet on the AP hardware and log that points to that is..
    bsnInitRcbSlot: slot 0 has venus radio(UNSUPPORT)
    The Replacement is the resolution and please contact your reseller or partner and if ur are the partner then RMA ids the resolution..
    Lemme know if this answered ur question and please dont forget to rate the usefull posts!!
    Regards
    Surendra

  • Android Video play via AIR application is jerky

    Hi All,
      We are developing an AIR mobile application targetted for Android 2.2 or above. One of the requirement is to play H.264 videos on the mobile from the Assets folder (local file system). We have run in to a show stopper while trying to implement this feature, here are the details -
    1. We are using OSMF that comes bundled with Flex Builder 4.6
    2. Using Adobe AIR 3.1 and Flex SDK 4.6
    When video of quality H.264 MPEG4 1280*720 30FPS with input bit rate 2000 is being played on the mobile device (android), the video frame rate is choppy however on the desktop it plays out fine... StageVideo is something I would like to try however, at this moment I have no access to Android 3.0 which is required for StageVideo...
    What are we missing? Is AIR 3 not capable to play H.264 videos on android, though the Android native video player plays it out just fine?
    Regards
    Baliga

    Hi,
    Video encoding is very important.
    For example, use baseline profile level 3.1 for H264 for mobile
    (and not High profile level 4.1 recommended for desktop).
    For more information, see the MAX session of Fabio Sonnati:
    "Encoding for Performance on Multiple Devices"
    And if you have an Android phone/tablet, there is my AIR application
    to watch Adobe MAX 2011 videos :
    https://market.android.com/details?id=air.fr.inway.maxVideos2011
    Search "Sonnati" for this session's video.
    (For info, i use a video player based on OSMF 1.6)
    The pdf presentation is available on Sonmati's blog:
    http://sonnati.wordpress.com/
    Philippe

  • Supporting AiR links app:// or with AiRAliases file:///

    Hello
    We are using Strobe Media Playback in our App and it works in all Browsers and on the iPad.
    But it don't work for our Adobe AiR App. We always get "We are unsable to connect to the contetn you've requested....".
    As far as we can see, the problem is, that AiR can't handle links like app:// or file:///.
    You can download the zipped app here:
    Download
    Only the tool "Product Benefits" is of interested.
    Any help would be highly appreciated.
    Cheers Alex

    I got this to work (exactly as mentioned above) in Android but on iOS I get issues. I also need to use .url as .nativePath doesn't seem to be friendly.
    The performance is another thing. Trying to play a 800x480 video on a HTC EVO 4G (single 1ghz snapdragon) was a painful 1-2fps mess. I encoded the video in f4v H.264 and also mp4 H.264. They were both 1-2FPS.
    Clearly waiting for StageVideo in AIR3.0 is going to be the fix for this whole mess.
    ns.play("videofile.f4v") ... I don't think that your first 3 lines are needed or appropriate here, are they?
    You're in AIR for Android/iOS so you have the flash.filesystem package you should look at, specifically the File class. It helps AIR load files you package that are located in your applicationDirectory.

Maybe you are looking for