FLV Stops Early

I am having problems trying to play an FLV with Flash Media
Server 3. The FLV stops early with only a NetStream.Play.Stop. I do
not believe this is a buffering issue where the end of the file is
reached before the client plays the end of the file as I am playing
the FLV as a lives tream on FMS and a client subscribes to the live
stream. On the server the live stream is the one that sends a
NetStream.Play.Stop message and the flex client no longer gets the
FLV audio. Also the amount of time the FLV stops playing before the
actual end of the file is random. Sometimes it only plays 1.5
minutes of a 30 min FLV, sometimes it plays 15 min, sometimes it
plays all the way through. Starting the FLV at any point other than
the beginning seems to make it slightly better, but it still has
the same issue. Any ideas?

It says theres supposed to be a "Attach Code" button but I
dont see one?
The time it plays on the server is random, sometimes it only
plays a few minutes of the stream, sometimes it plays almost all of
it. The traces in the live log in FMS Console show that on our
server the live stream stops early and never continues. Below is
code for a complete test app that causes the issue for us.
I created a small fms app, code is below.
quote:
// load the remoting classes
load("netservices.asc");
const FILENAME = "14216_0";
const STREAMNAME = "testStream";
application.onAppStart = function()
var s = Stream.get(STREAMNAME);
s.onStatus = onStatus;
s.onPlayStatus = onPlayStatus;
trace("Length of stream is " + Stream.length(FILENAME));
//s.setBufferTime(5);
trace("Length of buffer is " + s.bufferTime);
s.play(FILENAME, 0, -1, true);
application.onConnect = function(cl)
trace("onConnect called.");
for (var prop in cl)
trace("\t" + prop + ":\t" + cl[prop]);
trace("");
application.acceptConnection(cl);
application.onDisconnect = function(cl)
trace("onDisconnect called.");
for (var prop in cl)
trace("\t" + prop + ":\t" + cl[prop]);
trace("");
application.onPublish = function(cl, s)
trace("onPublish called.");
trace("\tClient info:");
for (var prop in cl)
trace("\t\t" + prop + ":\t" + cl[prop]);
trace("");
trace("\tStream info:");
for (var prop in s)
trace("\t\t" + prop + ":\t" + s[prop]);
trace("");
application.onUnpublish = function(cl, s)
trace("onUnpublish called.");
trace("\tClient info:");
for (var prop in cl)
trace("\t\t" + prop + ":\t" + cl[prop]);
trace("");
trace("\tStream info:");
for (var prop in s)
trace("\t\t" + prop + ":\t" + s[prop]);
trace("");
function onStatus(info)
trace("[onStatus] " + info.code + " - " + info.description +
" - " + info.level);
function onPlayStatus(info)
trace("Netstream.onPlayStatus called.");
for (var prop in info)
trace("\t" + prop + ":\t" + info[prop]);
trace("");
I then created a small flex test client, that connects to
rtmp://HOST/flvTest/test. Once it connects it calls playStream()
which subscribes to the liveStream "testStream".
quote:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" xmlns:ns1="*">
<mx:Script>
<![CDATA[
import mx.core.UIComponent;
private var nc:NetConnection;
private var ns:NetStream;
private const HOST:String = "xxx.xxx.xxx.xxx:1935";
private function onCreationComplete():void
nc = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS,
onNCNetStatus);
private function onNCNetStatus(e:NetStatusEvent):void
addLog("[onNetConnectionStatus] " + e.info.code);
if (e.info.code == "NetConnection.Connect.Success")
playStream();
private function playStream():void
ns = new NetStream(nc);
ns.client = this;
ns.addEventListener(NetStatusEvent.NET_STATUS, onNSStatus);
ns.bufferTime = .1;
addLog("Stream's buffertime is " + ns.bufferTime);
ns.play("testStream");
private function connect():void
nc.connect("rtmp://" +HOST + "/flvTest/test");
private function onNSStatus(e:NetStatusEvent):void
addLog("[NetStreamStatus] " + e.info.code);
private function disconnect():void
nc.close();
public function onMetaData(info:Object):void
for (var propName:String in info)
var val:String = info[propName];
addLog("[onMetaData] " + propName + " = " + val);
public function onPlayStatus(info:Object):void
for (var propName:String in info)
var val:String = info[propName];
addLog("[onPlayStatus] " + propName + " = " + val);
private function addLog(text:String):void
var d:Date = new Date();
txtLog.text += d.toLocaleDateString() + " " +
d.toLocaleTimeString() + text + "\n";
]]>
</mx:Script>
<mx:Panel width="80%" height="80%" layout="vertical"
verticalCenter="0" horizontalCenter="0" title="FLVTest"
creationComplete="onCreationComplete()">
<mx:TextArea width="100%" height="100%" id="txtLog"/>
<mx:ControlBar horizontalAlign="center">
<mx:Button label="Connect" buttonMode="true"
click="connect()"/>
<mx:Button label="Disconnect" buttonMode="true"
click="disconnect()"/>
</mx:ControlBar>
</mx:Panel>
</mx:Application>
I placed a sample FLV into
/usr/local/macromedia/fms/applications/flvTest/streams/test/14216_0.flv.

Similar Messages

  • Can't detect when my netstream FLV stops.

    I want to detect when my FLV stops and jump to another video. How can I do this? My current code is:
    The first video plays fine, but it just stops when it is done.
    // Setting up my netstream and playing my video
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);
    var vid:Video = new Video(320, 240);
    this.addChild(vid);
    vid.attachNetStream(ns);
    ns.play("video0.flv");
    ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
    // This is what I thought I had to do to detect the stop
    function netStatusHandler(event:NetStatusEvent):void {
        switch(event) {
          case "NetStream.Play.Complete":
             ns.close();
             ns.play("video2.flv");
    // Handles Async errors by ignoring them
    function asyncErrorHandler(event:AsyncErrorEvent):void {
        // Ignore
    Thanks!

    Ok, so I made the changes and now it seems the movie merely freezes when finished playing. My code that is for clicking hot spots
    and playing videos works though. I do also have some trouble with the movies either playing only a second or two, then stopping, as
    well, or still hearing some of the sound form the previous video. Before I had used the (ns.time == oldTime) to determine if the video
    had stopped or not, but it seems to get me into trouble. Any advice?
    Thanks for the help so far.
    My code
    gotoAndStop(1);
    // Loading Text File into Array
    var textFile:URLRequest = new URLRequest("info.txt");
    var textLoader:URLLoader = new URLLoader();
    textLoader.load(textFile);
    var inputArray:Array = new Array();
    var videoArray:Array = new Array();
    textLoader.addEventListener(Event.COMPLETE, loadComplete);
    var i:int = 0;
    var j:int;
    var currentSize:int = 0;
    var currentVideo:int = 0;
    addEventListener(Event.ENTER_FRAME,onEnterFrame);
    var oldTime:Number = -1;
    stage.addEventListener(MouseEvent.CLICK,mouseClick);
    var currentNumber:int = 0;
    var counter:int;
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);
    ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
    var vid:Video = new Video(320, 240);
    this.addChild(vid);
    vid.attachNetStream(ns);
    ns.play("video0.flv");
    function onEnterFrame(event:Event) {
        //if (ns.time == oldTime) {
            //if (videoArray[currentVideo].length <= 2) {
                //ns.close();
                //gotoAndStop(2);
            //else
                //newVideo(videoArray[currentVideo][1]);
        //oldTime = ns.time;
    function mouseClick(event:MouseEvent) {
        if (videoArray[currentVideo].length > 2) {
            for (i = 2; i < videoArray[currentVideo].length; i+=5) {
                if (mouseX >= videoArray[currentVideo][i+1] && mouseX <= videoArray[currentVideo][i+2] &&
                    mouseY >= videoArray[currentVideo][i+3] && mouseY <= videoArray[currentVideo][i+4]) {
                        newVideo(videoArray[currentVideo][i]);
    function asyncErrorHandler(event:AsyncErrorEvent):void {
        // Ignore
    function loadComplete(event:Event):void {
        textLoader.removeEventListener(Event.COMPLETE, loadComplete);
        var tempString:String = textLoader.data;
        inputArray = tempString.replace(/^\s+/,"").replace(/\s+$/,"").split(/\s+/);
        while (i < inputArray.length) {
            videoArray[currentNumber] = new Array();
            currentSize = inputArray[i];
            counter = 0;
            for (j = i; j < (i + currentSize); j++) {
                videoArray[currentNumber][counter] = inputArray[j];
                counter++;
            i = j;
            currentNumber++;
        inputArray = null;
    function netStatusHandler(event:NetStatusEvent):void {
        switch(event.info.code) {
          case "NetStream.Play.Complete":
             ns.play("video2.flv");
             break;
    function newVideo(newTarget:int) {
            //ns.close();
            ns.play("video" + newTarget + ".flv");
            currentVideo = newTarget;

  • Batch Capture stopping early

    For some reason I set clips to batch capture and FCP 4.5 stops capturing minutes early. I already went through the QT & pro apps update fiasco and downgraded to the older formats. I've been capturing easily from analog but keep having this niggling little problem. In The browser will show the correct time but then change the in & outs to not set.
    Thanks
    Enio

    No David
    Tiger's been working fine and stable until I upgraded. Even after I downgraded the Pro Apps and Quicktime (by means of Pacifist) and did a archive and Install it worked fine. This is something that happened in the last update. I was careful to had ProApps & QT update off.

  • Random songs are stopping early when playing in iTunes 11.2.2, any ideas as to why?

    I've never had this issue before now, and it's only doing it to random songs. I checked the stop time and it's set to the end of each one, but iTunes still ends it earlier than it should. Any ideas? Thanks...

    Hey bgrsox,
    Thanks for the question. I understand that random songs are not playing back fully in iTunes. The following resource may assist you:
    Songs in iTunes may not play back completely
    http://support.apple.com/kb/TS4357
    Symptoms
    Occasionally, if a song purchased from the iTunes Store on a Mac or PC was not downloaded completely, the song may not play back fully. The song may abruptly stop during playback, and iTunes may start playing the next song in your library or playlist.
    Resolution
    If iTunes in the Cloud is available in your country, try the following steps to resolve the issue:
    1. Delete the purchased song that is exhibiting the problem from your iTunes library.
    2. Click on the Purchased link in the iTunes Store to view your previously purchased music.
    3. Download your previously purchased song from this list.
    Note: iTunes in the Cloud, which allows you to download previously purchased songs from the iTunes Store, is not available in every country. Learn if iTunes in the Cloud is offered in your country.
    Additional Information:
    iTunes 11 for Mac: Delete songs, playlists, or other items
    http://support.apple.com/kb/PH12159
    Download past purchases
    http://support.apple.com/kb/HT2519
    Thanks,
    Matt M.

  • FLV Stops at first Cue Point

    Anyone have any idea why an FLV would stop at the first cue
    piont? I've switched the cue point to event AND navigation and it
    stops every time... can't figure it out.

    OK, now not anymore. Didn't change anything.

  • Time Machine backup crawls, stops early. Logs show crash.

    Recently had a hard drive crash on me. Since then I've bought a new SSD to replace it, then migrated everything over to from my Time Machine backup.
    Now I'm getting frequent crashes, and notably, I'm unable to complete a fresh Time Machine backup. It doesn't show that there is a crash in the Time Machine interface, just stops. The logs, on the other hand, show a crash.
    I'm copying them here. If anyone can read through and help me parse it, that would be a great start. I'm running Mavericks on a 15" Macbook Pro, early 2011. Thanks.
    Process:         backupd [715]
    Path:            /System/Library/CoreServices/backupd
    Identifier:      backupd
    Version:         185
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    Responsible:     backupd [715]
    User ID:         0
    Date/Time: 
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:
    Crashed Thread:  4  Dispatch queue: com.apple.root.background-priority
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x0000000108a1fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x0000000108a1ed18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00000001083ebf15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00000001083eb539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00000001083eae75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00000001084a0811 CFRunLoopRun + 97
    6   backupd                       0x000000010624f94a 0x10623e000 + 72010
    7   libdyld.dylib                 0x000000010887f5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib         0x0000000108a23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000108b38f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x0000000108a24662 kevent64 + 10
    1   libdispatch.dylib             0x0000000108845421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x0000000108845136 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib         0x0000000108a23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000108b38f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: com.apple.root.background-priority
    0   com.apple.CoreServices.CarbonCore 0x00000001092130bc FSReservationAcquire + 477
    1   com.apple.desktopservices     0x0000000106e94313 TReservationRecord::CreateAndAcquireReservationRef(unsigned int) + 173
    2   com.apple.desktopservices     0x0000000106e1e379 TDeepCFURLIterator::PushIterator(TCountedPtr<TCFURLInfo> const&) + 177
    3   com.apple.desktopservices     0x0000000106e1dc83 TDeepCFURLIterator::NextInternal(TCountedPtr<TCFURLInfo>&, int&, int&, bool&, TCountedPtr<TCFURLInfo>&, bool&, TCountedPtr<TCFURLInfo>&) + 709
    4   com.apple.desktopservices     0x0000000106e1d85e TDeepCFURLIterator::Next(TCountedPtr<TCFURLInfo>&, int&, int&, bool&, TCountedPtr<TCFURLInfo>&, bool&, TCountedPtr<TCFURLInfo>&) + 64
    5   com.apple.desktopservices     0x0000000106e763c7 TDeepCFURLIterator::Next(TCountedPtr<TCFURLInfo>&, int&, int&, bool&) + 179
    6   com.apple.desktopservices     0x0000000106e9f40a TCopyReader::GetNextItem() + 172
    7   com.apple.desktopservices     0x0000000106e9e1f8 TCopyReader::Read(TLOperationRecordPtr, TCountedPtr<TCFURLInfo> const&, TCountedPtr<TCFURLInfo> const&, unsigned int) + 300
    8   com.apple.desktopservices     0x0000000106e67353 TFSCopyOperation::CopyToTarget() + 631
    9   com.apple.desktopservices     0x0000000106e65d2c TFSCopyOperation::DoCopy(TCountedPtr<TCFURLInfo> const&) + 428
    10  com.apple.desktopservices     0x0000000106e5638a _NodeOperation + 488
    11  backupd                       0x0000000106258f2c 0x10623e000 + 110380
    12  backupd                       0x0000000106257af7 0x10623e000 + 105207
    13  backupd                       0x0000000106251b7d 0x10623e000 + 80765
    14  backupd                       0x0000000106250602 0x10623e000 + 75266
    15  backupd                       0x0000000106249692 0x10623e000 + 46738
    16  backupd                       0x00000001062455c8 0x10623e000 + 30152
    17  backupd                       0x0000000106245219 0x10623e000 + 29209
    18  libdispatch.dylib             0x00000001088461bb _dispatch_call_block_and_release + 12
    19  libdispatch.dylib             0x000000010884328d _dispatch_client_callout + 8
    20  libdispatch.dylib             0x0000000108845082 _dispatch_root_queue_drain + 326
    21  libdispatch.dylib             0x0000000108846177 _dispatch_worker_thread2 + 40
    22  libsystem_pthread.dylib       0x0000000108b38ef8 _pthread_wqthread + 314
    23  libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x0000000108a23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000108b38f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x0000000108a23716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x0000000108b39c3b _pthread_cond_wait + 727
    2   com.apple.desktopservices     0x0000000106e9a425 TConditionVariable::Wait(TDSMutex&) + 31
    3   com.apple.desktopservices     0x0000000106e9c01a TBlockingQueue<TCopyItem>::Dequeue(TCopyItem*&, int) + 90
    4   com.apple.desktopservices     0x0000000106e9b89f TCopyQueue::Dequeue() + 47
    5   com.apple.desktopservices     0x0000000106e81139 TCopyWriter::GetNextItem() + 37
    6   com.apple.desktopservices     0x0000000106e80f15 TCopyWriter::Write() + 79
    7   com.apple.desktopservices     0x0000000106e80e96 TCopyWriter::WriteTaskProc(void*) + 58
    8   libsystem_pthread.dylib       0x0000000108b37899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x0000000108b3772a _pthread_start + 137
    10  libsystem_pthread.dylib       0x0000000108b3bfc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x0000000108a23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000108b38f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x0000000108a23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000108b38f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x0000000108a23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000108b38f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000108b3bfb9 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x765f657369770021  rbx: 0x00000000ffffff94  rcx: 0x0000000000000000  rdx: 0x000000010670d02c
      rdi: 0x0000000000000002  rsi: 0x0000000000000001  rbp: 0x000000010cffbd50  rsp: 0x000000010cffb0d0
       r8: 0x0000000000000040   r9: 0x000000010cffaf00  r10: 0x000000010cffb048  r11: 0x0000000000000246
      r12: 0x000000000000005a  r13: 0x00007f8443d32d80  r14: 0x0000000000000000  r15: 0x00007f8443d31450
      rip: 0x00000001092130bc  rfl: 0x0000000000010206  cr2: 0x000000010f9fb000
    Logical CPU:     2
    Error Code:      0x00000000
    Trap Number:     13
    Binary Images:
           0x10623e000 -        0x1062bbff7  backupd (185) <AB2E47B6-528F-3E30-9585-61B1BDF34926> /System/Library/CoreServices/backupd
           0x1062ea000 -        0x106544ff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10668d000 -        0x1066d3fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x106700000 -        0x106702fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x10670e000 -        0x106718ff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
           0x106725000 -        0x1067b0fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
           0x1067d8000 -        0x106ad6fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x106d17000 -        0x106d17fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x106d1c000 -        0x106d7fffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x106dc1000 -        0x106dc1fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x106dcb000 -        0x106efbff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x106f7f000 -        0x106f8aff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x106f9b000 -        0x10706cff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x1070ce000 -        0x1070d3fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x1070dd000 -        0x107149fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10717f000 -        0x107269fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x107284000 -        0x10728fff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x1072a2000 -        0x1072a3ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x1072ad000 -        0x1072b7ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x1072c4000 -        0x1072dcff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1072ee000 -        0x10749bf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x1074c1000 -        0x107513fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x107572000 -        0x107573ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
           0x107580000 -        0x107642ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x1076b1000 -        0x107fd132b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x108100000 -        0x108270ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10837b000 -        0x108560fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x1086d5000 -        0x108723fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10873a000 -        0x10874afff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x108754000 -        0x108796ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x1087ae000 -        0x1087bbff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x1087c8000 -        0x1087d9ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x1087e2000 -        0x1087e6fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x1087ee000 -        0x1087eeffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x1087f4000 -        0x1087f8ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x108804000 -        0x10880efff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10881c000 -        0x108823fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x108830000 -        0x108837ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
           0x108842000 -        0x10885cfff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
           0x10887c000 -        0x10887fff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
           0x10888c000 -        0x10888cff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x108895000 -        0x10889cff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
           0x1088ab000 -        0x1088b0fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x1088bd000 -        0x1088bfff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x1088c9000 -        0x1088caffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x1088d4000 -        0x1088e5ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x1088f2000 -        0x1088f3ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x1088fb000 -        0x108984ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
           0x1089b4000 -        0x1089b6ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
           0x1089be000 -        0x1089c6fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
           0x1089d0000 -        0x1089f7ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x108a0e000 -        0x108a2aff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
           0x108a55000 -        0x108a84fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x108a90000 -        0x108aabff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
           0x108ab7000 -        0x108adeff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x108afe000 -        0x108b07ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x108b16000 -        0x108b1cff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
           0x108b36000 -        0x108b3dff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x108b4c000 -        0x108b4dfff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
           0x108b53000 -        0x108b57ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
           0x108b61000 -        0x108b62fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x108b6d000 -        0x108b72ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x108b7e000 -        0x108ba2fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
           0x108bbf000 -        0x108be8ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
           0x108bfc000 -        0x108c09ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x108c12000 -        0x108cf9ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x108d36000 -        0x108eeeffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
           0x108f96000 -        0x108fc7fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x108fdf000 -        0x109097ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x109100000 -        0x109102ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
           0x10910c000 -        0x109112fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x109125000 -        0x109126fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x10912d000 -        0x109148ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x109157000 -        0x109441fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x1094bf000 -        0x10954fff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x1095bd000 -        0x109634fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x1096de000 -        0x10974bfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x109794000 -        0x1097efffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x109823000 -        0x1098edfff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x109965000 -        0x10998efff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x1099b4000 -        0x1099bbfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x1099ca000 -        0x1099d5fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
           0x1099db000 -        0x109a3ffff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x109a7e000 -        0x109a81fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x109a8f000 -        0x109aa6ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x109ac9000 -        0x109af1ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x109b05000 -        0x109c59ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x109cf4000 -        0x109cf4fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x109cf8000 -        0x109d49ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x109d6f000 -        0x10a043fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10a087000 -        0x10a087fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10a090000 -        0x10a15bfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10a168000 -        0x10a218ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10a22a000 -        0x10a60bffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10a671000 -        0x10a7dfff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10a80d000 -        0x10a811fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x10a819000 -        0x10a81cfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x10a824000 -        0x10aaceff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10ac27000 -        0x10ac39fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x10ac58000 -        0x10ace4ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10ad1d000 -        0x10ad35ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x10ad4b000 -        0x10ad4cff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x10ad52000 -        0x10ad54ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x10ad5c000 -        0x10ad64ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10ad72000 -        0x10ad72fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10ad79000 -        0x10ae7fff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10aeea000 -        0x10af59ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10af88000 -        0x10b011fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10b05e000 -        0x10b0a3ff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10b0d7000 -        0x10b0e6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10b0f6000 -        0x10b143ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10b174000 -        0x10b1adff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10b1ca000 -        0x10b1d3fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10b1e9000 -        0x10b1ecffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10b1fc000 -        0x10b2ebfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10b365000 -        0x10b3acfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10b3d6000 -        0x10b3faff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10b402000 -        0x10b45bfff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10b46b000 -        0x10b486ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10b48f000 -        0x10b493ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10b498000 -        0x10b586fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10b5b4000 -        0x10b5b6fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x10b5c0000 -        0x10b607ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
           0x10b61e000 -        0x10b637ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10b653000 -        0x10b682ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10b6a4000 -        0x10b6c0fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x10b6d2000 -        0x10b7c3ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x10b7d9000 -        0x10b83effb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10b870000 -        0x10b871fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10b87b000 -        0x10b87fff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
           0x10b885000 -        0x10b891ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10b8ac000 -        0x10b8b5ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10b8c2000 -        0x10b935fff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10b978000 -        0x10ba5cfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10bb20000 -        0x10bcbcff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10bd94000 -        0x10bda6ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10bdbc000 -        0x10bdf7fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10be0a000 -        0x10be18fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10be23000 -        0x10be48ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10be66000 -        0x10c137ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10c231000 -        0x10c284fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10c2a9000 -        0x10c2e8fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10c2f8000 -        0x10c300ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10c30b000 -        0x10c316fff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10c32a000 -        0x10c368ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10c374000 -        0x10c376fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10c37b000 -        0x10c37efff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10c384000 -        0x10c7b7ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x10c9d2000 -        0x10c9dcff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10c9ef000 -        0x10ca3dff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10ca55000 -        0x10ca61ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10ca6e000 -        0x10ca87ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10caa1000 -        0x10caaefff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x10cac0000 -        0x10caf0fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x10cb1d000 -        0x10cb42ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10cb53000 -        0x10cb98fff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
           0x10cbab000 -        0x10cbe0ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10cbf6000 -        0x10cc06ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
           0x10cc0f000 -        0x10cceefff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
           0x10cd5b000 -        0x10cd8ffff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
           0x10e000000 -        0x10e02cfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
        0x7fff67194000 -     0x7fff671c7817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 414
        thread_create: 3
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=96.9M resident=58.3M(60%) swapped_out_or_unallocated=38.7M(40%)
    Writable regions: Total=122.3M written=23.5M(19%) resident=25.0M(20%) swapped_out=0K(0%) unallocated=97.3M(80%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Dispatch continuations             16.0M
    Kernel Alloc Once                     4K
    MALLOC                             87.5M
    MALLOC (admin)                       32K
    MALLOC_LARGE (reserved)            2052K        reserved VM address space (unallocated)
    Memory Tag 240                       68K
    STACK GUARD                        56.0M
    Stack                              12.1M
    VM_ALLOCATE                         328K
    __DATA                             8712K
    __LINKEDIT                         20.9M
    __TEXT                             76.1M
    __UNICODE                           544K
    mapped file                        34.1M
    shared memory                         4K
    ===========                      =======
    TOTAL                             314.3M
    TOTAL, minus reserved VM space    312.3M

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Changed source mp3; song stops early!

    I have a song that ends a minute early. iTunes just fast forwards.
    I changed the source .mp3 file of a song in my iTunes library (by intentionally renaming it in Windows, making iTunes "lose" it, then locating the new .mp3 file). This all seemed to work fine, but now iTunes will not play the entire song. It will only play as long as the old one was (about a minute shorter).
    The properties of the song indicate the new time (5 minutes). It looks like it will work. But once it hits that 4-minute mark of where the old version ended, it just stops.
    Changing the "Stop Time" under Get Info > Options does not work.
    My goal in relocating instead of just adding the mp3 as a new file was to preserve play count. Any suggestions?

    Find the current file in Windows Explorer, select it press CTRL-C then CTRL-V. You will now have a file called *Copy of <original filename>.mp3*. Drag this into iTunes and see if it plays all the way through. If it does, try editing the filenames again so your library entry points at this new file (ie. change the existing to *Old Copy of <original filename>.mp3*, the new file to *<original filename>.mp3* and, to complete the cycle, change *Old Copy of <original filename>.mp3* to *Copy of <original filename>.mp3*. What happens now? My guess is that both copies will fail but the trigger is something obscure that only confuses iTunes. You may find stripping the tag with *Convert ID3 Tag > None* a few times followed by *Convert ID3 Tag > v2.3* helps.
    tt2

  • Flv stop and unload

    hi all here am loading video file and i want to unload it after it completed
    and load swf file
    well i write ths to load the video but am not able to remove it
    var videoConnection:NetConnection = new NetConnection();
    videoConnection.connect(null);
    var videoStream:NetStream = new NetStream(videoConnection);
    videoStream.play("flv/Mohaned.flv");
    var metaListener:Object = new Object();
    //metaListener.onMetaData = onMetaData;
    videoStream.client = metaListener;
    var video:Video = new Video();
    video.attachNetStream(videoStream);
    video.x = 200;
    video.y = 200;
    //video.fullScreenTakeOver = false;
    addChild(video);

    You need to add a listener to your stream so you know when it's done. Something like so:
    videoStream.addEventListener(NetStatusEvent.NET_STATUS, netStat);
    function netStat(stats:NetStatusEvent):void
        var c = stats.info.code;
         if (c == "NetStream.Play.Stop") {
             videoStream.seek(0);
             videoStream.close();           
             removeChild(video);

  • CRM 7.0 Stop Early Number Assignment for  BP create

    Hi Gurus
    In CRM 7.0 WEB UI & IC
    Is it possible to stop the BP Number from being generated until the BP is saved successfully?
    Many Thanks in advance
    Panduranga

    Hi Panduranga,
    Unfortunally, the answer is no. It's not possible in 'standard'
    Check this thread for more information:
    Partner numbers 'gaps' (leaps)
    Kind regards,
    Garcia

  • Why does my infinite pulse train stop early?

    Dear Community,
    I have a pulse train task running on counter 7 of a PXI-6608.
    The source is the oven-controlled stable 10MHz clock, which is passed to it over RTSI2. The Gate is constant low.
    It's supposed to be high for 5e7 ticks, then low for 2^32-5e7 ticks. I.e., high for 5 seconds every time the 10MHz clock completes 2^32 cycles.
    It runs fine for 56 hours, and then stops (no more pulses). Is there any reason why this would happen?
    My vi uses the old NI-DAQ drivers.
    Thanks!
    Casimir

    Hi Casimir,
    That is strange behavior that you are seeing.  Is the 56 hour run time consistent, or is there noticeable variation from one run of your application to the next?  Are there any errors thrown by the driver when the pulse train stops?  Are you using an embedded PXI controller or an external PC via MXI?
    Regards,
    Andrew W
    National Instruments

  • 2 iMacs upgraded to Mavericks, neither one is completing Time Machine backups. Never had this problem in previous OS versions. Reformated disc. Reinstalled as TM destination. Backup begins and then stops early in process.

    I have two iMacs that I've upgraded to Mavericks 10.9.1.
    Both started out OK but no longer allow Time Machine to complete backups.
    The one I'm on now, older 24", has a fresh 500GB external HD for TM, reformated correctly.
    Says backup size 147GB.
    Get about 120 plus Mb into backup and stops.
    No error messages, just stops and stays at the place where it stops.
    Says calculating time remaining.
    Left it on all day while away from my desk and returned home 10 hours later and still frozen at that state.
    Newer iMac 27" fully loaded, 2TB HD as TM disc, same problem.
    Backed up OK for the first few days, now frozen, with over 3/4 of the HD still available.
    Reformat, reselect the TM disc, still will not complete a full backup.
    Should I reinstall Mountain Lion until they get Mavericks working properly?
    Are others experiencing the same problem?
    Whassup?

    Yes Eric.  That is where the info came from.  Since 9.2TB is impossible it must be due to how Time Machine handles the files in backups.backupdb.  I have since done new Time Machine backups to the reformatted drive and I was hoping to copy at least few of the old backup files to the drive in the same file with the new ones but when I do that I get an error message that says backup files cannot be modified.  It's very frustrating because I saved the old backups.backupdb to the desktop but it doesn't seem like I can do anything with it.

  • Songs stop playing early in iTunes.

    I recently purchased an Album, downloaded the album, and upgraded the album to iTunes plus.
    During playback in iTunes, some of the tracks stop early...always at the same point in the song. In some cases, I can manually scroll past the false stopping point and hear the end of the songs, but there seems to be a gap in the song itself.
    Are the files just bad? Is there any way to re-download them?
    I tried playing the same tracks in Winamp, there seems to be just random gaps in the songs. In winamp, the songs will play to completion, but at the same points in the song, the progression bar jumps forward and skips significant portions of the songs.
    Message was edited by: TexasRebel

    Do you have the original file on your computer? If it plays in iTunes without ending early, then the resolution is to take the song off of the device and put it back on.
    If the original (on your computer) got corrupted somehow (iTunes 8 appears to muck up files during transfers), then contact the iTunes Store by reporting a problem with a purchase. Perhaps they'll allow you to replace the file -- they did that for me when one of the songs I'd purchased somehow got corrupted. If you have a backup, you could also replace the song from backup.

  • Stop FLV from playing upon leaving frame.

    Maybe someone has some insite on this before I open an artery. I have a timeline, seperated into sections. The navigation targets frame labels. On one of those keyframes there is a flv. When you play that video and then navigate to another frame without stopping the video, it continues to play. I've tried giving it an instance name and adding a stop action to it that resides in the button functions so when it navigtaes to another frame it would stop. However, when  I click on any button and the movie is not currently playing, I  get a error message that reads TypeError: Error #1009: Cannot access a property or method of a null object reference. I assume it is looking for something that is not currently there. It has been suggested that I use the SoundMixer.stopAll() but that removes any background music currently playing.
    Do I need some kind of conditional statement that detects if the flv is currently playing?
    Can FLV be controlled with a simple instancename.stop() ?
    Dazed and confused

    use that instance name (eg, flv) and in the frame where flv exists, use:
    flv.addEventListener(Event.REMOVED_FROM STAGE,f);
    function f(e:Event):void{
    flv.stop();

  • How do I get the Play, Stop, Volume controls to appear in my embedded Flash object?

    Hello,
    I want to show .swf or .flv videos on my website--like
    youtube.com. I want to use the standard Flash Player object
    embedded in a web page, however, I cannot seem to find the exact
    params that make the standard controls appear (ie, Play, Stop,
    Pause, Volume, etc). I just want to show a video and have the Play,
    Stop, Pause, Volume controls visible at the bottom. What do I need
    to do to get these controls to appear?
    Here's my current code:
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="800" height="600">
    <param name="movie" value="
    http://www.sitename.com/flash/dt_flash.swf">
    <param name="quality" value="high">
    <embed src="
    http://www.sitename.com/flash/dt_flash.swf"
    quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="800"
    height="600"></embed>
    </object>
    Any help would be greatly appreciated! :)
    Jason

    Sorry!  It's AS3. A typo on my part but, thanks for answering the post.   This is the correct answer that worked for me. Also,  the answer came from Kglad in the AS3 forum
    Assign your component an instance name (if it doesn't already have one), eg flv and in the frame that contains that component add:
    flv.addEventListener(Event.REMOVED_FROM_STAGE,removedF);
    function removedF(e:Event):void{
    flv.stop();

  • Recording a DVD stops before movie is done

    My sequence is fine and complete and I make a Quicktime movie however when I burn it I do not get the complete movie. It stops early but again plays completed in the movie and timeline? Thank you for your help.

    Hi -
    Have you left in and outpoints on your timeline when you have done your Quicktime Export?
    Have you looked at the exported Quicktime Movie to see if the entire contents of the timeline are present?
    When you make your Quicktime Export, do you check the box for "Make Movie Self-Contained?
    What DVD authoring software are you using?
    Thanks
    MtD

Maybe you are looking for

  • My time machine keeps freezing when I am backing up

    I have recently purchased a seagate 1.5TB external hard drive and am trying to back up my computer using time machine. My compute is 56GB large. I have tried 3 times and have been forced to stop it everytime because it keeps freezing. What should I d

  • How do I allow multiple formats in a required field?

    Hi,    In this case I am trying to validate a zip code field to allow U.S., Canada, and UK zip codes.  How would I do this?  I tried using the attached image, but it gives me an error when I enter a nine-digit U.S. zip code, like 12345-6789.  I want

  • I Need to Export to CSV or report on HTML this result of two scripts in power shell on Exchange 2010 or 2013

    I Need to Export in on Report to CSV or  HTML this result of two scripts in power shell on Exchange 2010. Get-Mailbox | Select-Object DisplayName, IssueWarningQuota and ; Get-MailboxStatistics -server MYSERVER | Select-Object DisplayName, TotalItemSi

  • Shortcut problem

    I am having a problem linking to an external .chm in my software application help. I've read the posts about shortcut problems and am trying to use Pete Lee's javascript. I saved this javascript in a file names 'getChmDir.js' which I added to my Robo

  • Cisco IronPort Plug-In 7.3 breaks when multiple profiles are used?

    In our testing of the Cisco IronPort Plug-In 7.3 we found that if seperate Outlook profiles are used that are configured to different e-mail accounts the plug-in gives an error. Here's the scenario. Profile A configured with [email protected] up and