Help with isolating voice in recorded conversation

Any suggestions on removing a single voice from a two-person conversation?   I have a short recorded conversation where I need to isolate a single sentence from one of the speakers.  The problem is, however, another person is speaking over the target sentence.   Ideas?  Thanks in advance.

Only if it's a stereo recording and the participants are in different parts of the stereo field. If it's mono, then forget it - you can't do it.

Similar Messages

  • Help with Audio Playback While Recording

    I am an aspiring sound engineer and I am having a problem with recording in Audition 3.0 that I need help with. When i record vocals, the sound wave plays back in the speakers/headphones with like a 1.5 second delay after it is recorded. It really throws off the artists I am working with when they are trying to record vocals. How do i kill headphone/speaker playback while someone is recording?

    There are problems with a lot of internal soundcards in a lot of laptops, and these seem to be so many and various that all you can do is use trial and error and hope for the best.
    External soundcards should cure any problem, but you may have to look into what else is running on the laptop, as so much is integrated, and some machines seem to have audio problems caused by wireless or other network adaptors etc.
    As I said, I use oldish Edirol and Tascam usb units. The Tascam has a known fault (noise when using a guitar channel at the same time as phantom powering a mic on the other channel) which I can live with, and I would hope has been solved in later and current versions. The Edirol is fine. I use 2 units to give me the connections I want (ie one has jacks, the other phono plugs, and different size headphone sockets). Both these have asio and wdm drivers and work fine with AA 3.0 here. More modern devices will be usb2 and will presumably provide more channels or higher sampling rates, but these are fine. Others will be more up to date than me, but I would think anything from Tascam, Edirol, Echo Audio and I think most m-audio models should be fine. Just be wary of anything from Creative Labs. I, too, have had bad experiences with one of their products (it drew too much current from the usb port on a couple of the laptops so I never got as far as to find whether it had asio drivers working or not). But others will be more up to date than I am.
    I just went onto ebay over the years and kept bidding on sensible looking devices until I got ones at the right price, but it probably is better to buy new if you can afford it.
    Sorry I can't give a more definite answer.

  • Help with processing groups of records in database

    Ok i'm at work right now trying to finish up a project for my class and what it is is a basic class to process an inner join sql statement generated table from access and order it by the student id in order to group each student together. I have written the sql statement and logic to access the database and return the array of row objects to the command line so i know it is grouping and returning info properly. I have written the conditional if statement to get the gradePoints for A = 4, B = 3, C = 2, D = 1, and F = 0 in a class method (KEEP IN MIND THE GENERATED TABLE CONSISTS OF SID, NAME, COURSE#, COURSETITLE, AND LETTERGRADE) now I just need to process each group of students individually and calculate their overall gpa's. Here in lies the problem. I imagine i need to define current student variables as like
    currentID = s[0].getStudentID();
    currentName = s[0].getStudentName();
    then loop through the values of the array with something like
    for(int j = 0; j < s; ++j)
    if(s[j].getStudentID != currentID)
    Process the grade records for the group Then reset the
    current student to the next in line with another variable
    assignment like
    currentID = s[j].getStudentID();
    currentName = s[j].getStudentName();
    }(end of if)
    Process the row object for the student created by this loop and then add it to the output string
    } (end of for loop)
    Ok so where i need help is the logic to process the grade records for the individual groups and then processing the row object. We haven't gone over anything like this in class and it is the last thing on my list to to do so any help would be appreciated. Also, if you think i'm an idiot keep it to yourself please it's not fun for people who really need help and really would like to know for future reference how to do something to be belittled. Thanks again
    Matt
    Message was edited by:
    djmd02

    sorry i guess is hopuld explain this better...I know
    sql relatively well and the sql statement for my
    query string is rediculously long with two inner
    joins and what it returns is the sid, name,
    coursenumber, coursename, and lettergrade So if you know SQL so well, why haven't you created a ViEW using this "ridiculously long" query and made your life easier?
    Two inner joins? Nothing extraordinary about that.
    this query
    generated table is then used to populate an array of
    objects for each entry in the table. They are already
    put in order depending on sid by the sql statement
    (for example)
    11111 matt deClercq 3380 intro to java A
    11111 matt deClercq 3382 database management A
    11112 john doe 3380 intro to java A>
    and so on. The problem i am having is within the for
    loop to detect the end of each student and process
    their grades for each class and calculate the gpa for
    the whole group of grades that that student has.SQL is a declarative language, not procedural. If you're "looping", it suggests to me that you're pulling all that data into the middle tier and doing the calculation in Java.
    I'm suggesting that there's a perfectly good way to do this calculation in SQL without using your ridiculous query. You might be better served if you try and figure out what that is.
    Hope this makes things a little more clear and makes
    me look a little bit more intelligent than i seemStop worrying about what people think and concentrate on your problem. You're a student. It's unlikely that you're going to appear to be on the level of Bill Joy at this point in your career. I'd be a lot more impressed if you'd stop whining about how people perceive you.
    %

  • Help with dynamic datasource and record selection

                                                                                                                                                                                                                                                                                     <span>Hi, I&#39;m having some difficulty with part of an application I&#39;m trying to build, but here&#39;s some background first.<br /> <br /> I am a student at the University of Maryland, and I&#39;m writing an application for one of the departments here at the university.  It is sort of a front-end for an access database with a lot of extra functionality.  This includes reports.  First of all, the user can change the databse that the application uses, so I store that in an appsetting.  For this reason, I have to tell the report what database to use at runtime rather than using the database expert.  I am building a sort of report wizard in which the user selects certain values, and based upon those values, the SQL statement that the report gets data from changes.  So almost everything about the report&#39;s data is dynamic and will be determined at runtime.  <br /> <br /> So for example if the user chooses an officer report by chapter names, I do this (chapters is a comma delimited string):<br /> <br /><span style="font-weight: bold"> string sel = "SELECT * FROM [Undergrad Leadership] WHERE [Leadership Position] = &#39;" + txtPosition.Text + "&#39; AND [Chapter Name] IN (" + chapters + ");";</span><br /> <br /> The part I am lost on, is how to actually interface with crystal reports.  In the following code, conn is an OleDbConnection to the correct database, rep is the ReportDocument, and view is a CrystalReportsViewer.<br /> <br /><span style="font-weight: bold"> rep.DataSourceConnections[0].SetConnection(conn.DataSource, conn.Database, false); <br /> rep.RecordSelectionFormula = sel;</span><br /><span style="font-weight: bold"> view.ReportSource = rep;</span><br /> <br /> When I try to load the report, I get the following error message:<br /> Error in formula <Record Selection>:  a number, currency amount, boolean, date, time, date-time, or string is expected here.<br /> <br /> Also, assuming this formula gets fixed, how do I actually get fields from this formula and datasource onto my report, since I can&#39;t do it at design time?  Thanks in advance for the help.<br /> <br /> -Jared<br />    </span>

    <p>RCAPI (Report Creation and Modification) calls are only available with Crystal Reports Server RAS SDKs.  This means that using the bundled version of Crystal Reports for Visual Studio will not allow you to place fields onto the report.  A free copy of Crystal Reports Server comes with a registered copy of Crystal Reports Developer.  My guess is that you don&#39;t have either of these products and that you are just using the product that came with Visual Studio.</p><p>All is not lost.  The first question is, do you really need to add the fields at runtime?  In many cases developers just want to have control of the data that gets sent to the report and they are ok with having the same fields display.</p><p>In your code you are changing the datasource which is fine, and you are assigning a Record selection formula which is also fine.  </p><p>The problem with the record selection is that it doesn&#39;t fit the syntax of the Report.  I would suggest printing out the value that you programatically get for the formula and insert it into the Crystal Report Designer.  You will probably get the same error there and gets some  hints as to why it doesn&#39;t work.</p><p>What I would suggest is creating a template report that already has the fields on the report and then change its datasource at runtime and add a RecordSelectionFormula.</p><p>Otherwise you will have to use RAS to be able to add fields at runtime. </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • HELP I need help with Visual voice mail

    I need someone who has done it before to tell me how to use a prerecorded voice mail greeting.Or at-lest how to use one for my greeting on my VVM downloaded from the web in MP3 format.

    Hello,
    Please follow the steps outlined below to change your voicemail personal greeting. You will not be able to use an mp3 file as your greeting.
    With your device, dial *86 + send
    Enter your password
    Press 4 (personal options)
    Press 3 (record greetings)
    Press 1 (to change your personal greeting)
    Choose the type of greeting you want. Press 1 for your cell number to be announced, Press 2 for your name to be announced or Press 3 for a personal greeting 
    For more information on voicemail, please visit the link below:
    Voice Mail
    For information about Visual Voicemail, please visit:
    Visual Voicemail
    Thank you.
    KellyW@VZWSupport

  • Help with optimization -- too many records being inserted

    hi..
    I am doing this project. This project is as a part of a project competition, and hence the analysis part is already done.I am not supposed to make any changes in the design and the database part.In this project, I have to make an entry form for entering information for schools.
    The project is web based, JSP+DB2. There is only one single form and that contains 30+ fields, and there are around 7-8 tables. Form is submitted only once, and on that submission 280 records have to inserted into the database. Problem is I cannot change any of the design, form or database. If on a single submission, if such a large amount of records are inserted, and that to considering its a website, then the response would be extremely slow. So can anyone of you help me with ideas that I can implement, so that any optimization can take place.
    Thanks in advance.

    As I told this project is of a competition, and has to be implemented in rural areas, hence I cannot be sure as to what will be the server and client configuration. What i want to know is that is there a way that I do not have to insert 280 records in one go. May be insert data in some temporary tables, and then transfer it to the final tables at the time of successful completion. Is this solution feasible, and are there any other such solutions available??

  • Need help with no camera sounds & recording in Captivate 5

    I am an experienced user of Captivate 3 & 4, but I'm having lots of problems with Captivate 5.  I am working on a Windows 7 OS and have just installed Captivate 5.  When I try to record I can't get any camera sounds, even though I have changed my preferences to show them.  Also, Captivate seems to be recording erratically, and sometimes it is catching actions, other times it isnt'  I am running the program as Administrator and I am very puzzled by this.  Normally Captivate has worked like a charm out of the box.  Now it seems to be fighting my every step of the way.  Am I missing something?
    Audio recording seems spotty too. Sometimes it works just fine, other times Captivate just hangs and doesn't really record any sound.
    Any help would be appreciated/

    Hello and welcome to the forum,
    First to be sure: did you install the patch released in December (Help, Updates...)? If not try that first of all. You can find details about the issues solved by this patch in this blog post:
    Patch for Captivate 5
    If this doesn't help, try to clear the cache (Preferences, Global).
    Perhaps (not sure) your Preferences folder has become corrupt. It so, try to find it. In Win7 normally it is a folder (Captivate 5)  in this path:
    \users\<username>\appdata\local\adob
    Maybe you will have to change the settings to make this folder visible in Explorer, by default it is in a system folder and invisible. You can delete this folder (while CP is closed) and when you restart CP a brandnew one will be created.
    Lilybiri

  • Can anyone help with isolating the cause of an InDesign CS5 crash?  It's intermittent...

    Hi All,
    I've got a client that's running into an intermittent crashing problem with InDesign.  Ordinarily "intermittent" points to hardware, but we wanted to rule out bad software first, especially as InDesign is the ONLY application that's crashing on this system.   The crashing doesn't seem to correspond to any given task that's executed within InDesign either.  This is an iMac 2.5 GHz Intel Core i5 (mid 2011 model), 8 GB of RAM.  Original this iMac was running Snow Leopard with InDesign CS5 (7.0.4), and crashing fequently then.  For numerous reasons including the crashing we did an erase and install of the OS, this time installing 10.8.2, and a fresh install of CS5 and ran all updates from Adobe (to 7.0.4), and then ran a Disk Permissions repair (we have not updated to 10.8.3 due to reports I've seen of more crashing with InDesign CS5).  Fonts and InDesign application support files from ~/Library were migrated over manually, but no other user data.  The crashing occurs within two user accounts on this fresh OS (one of which was created to troubleshoot with as a clean environment) so isn't likely user account related but due to fonts that may not be confirmed.  Being that it's intermittent it's been quite hard to track down.  Linotype Font Explorer is installed on this system and I have just now disabled the font activation plugins in case that is part of the problem here; haven't had a chance yet to let the system run without those to see if the problem is resolved.  Two recent crash logs (below) show different activity causing the crash (I've included thread 0 only, but can post more if requested; my experience has been that thread 0 will usually give you what you need, but given that we're seeing different cuases here I'm at a loss).  We have tried fresh RAM in the system in case this was related to bad memory, and that made no difference.  Font caches for both applications and the OS have been cleared and fonts showing any missing printer font files have been disabled.  Any help would be greatly apprecaited.  
    Many thanks,
    Mike
    Log 1:
    Process:         Adobe InDesign CS5 [11565]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.4.553 (7040)
    Code Type:       X86 (Native)
    Parent Process:  launchd [238]
    User ID:         501
    Date/Time:       2013-05-02 12:45:38.327 -0700
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    VM Regions Near 0x4:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.InDesign.Links                0x11da9cfd 0x11d39000 + 462077
    1   com.adobe.InDesign.Links                0x11dad857 0x11d39000 + 477271
    2   com.adobe.InDesign.Links                0x11dabcc0 0x11d39000 + 470208
    3   com.adobe.InDesign.Links                0x11da96b9 0x11d39000 + 460473
    4   DataBaseLib.dylib                       0x010fd89f InterfaceSnapshot::ResetObjectToSnapshot(IDataBase*, IPMUnknown*, IDType<SnapshotID_tag>, ISnapshotCache*, scoped_lastrevinfodataref&) + 575
    5   ObjectModelLib.dylib                    0x01063b80 0x1038000 + 179072
    6   ObjectModelLib.dylib                    0x01070eb8 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 23784
    7   DataBaseLib.dylib                       0x010ce158 0x10c9000 + 20824
    8   com.adobe.InDesign.Links                0x11d7b093 0x11d39000 + 270483
    9   com.adobe.InDesign.Links                0x11d7d991 0x11d39000 + 280977
    10  com.adobe.InDesign.Links                0x11d8ee5a 0x11d39000 + 351834
    11  com.adobe.InDesign.Links                0x11d9f17f 0x11d39000 + 418175
    12  com.adobe.InDesign.Links                0x11da016e 0x11d39000 + 422254
    13  com.adobe.InDesign.Links                0x11d78258 0x11d39000 + 258648
    14  com.adobe.InDesign.Links                0x11e05bbc GetPlugIn + 191420
    15  com.adobe.InDesign.Links                0x11e05836 GetPlugIn + 190518
    16  com.adobe.InDesign.Document Framework          0x0d937a85 0xd936000 + 6789
    17  com.adobe.InDesign.Document Framework          0x0d937b75 0xd936000 + 7029
    18  com.adobe.InDesign.AppFramework          0x0bbb60ed GetPlugIn + 201661
    19  com.adobe.InDesign.Links                0x11d71025 0x11d39000 + 229413
    20  com.adobe.InDesign.Links                0x11d70d6c 0x11d39000 + 228716
    21  ObjectModelLib.dylib                    0x01062640 0x1038000 + 173632
    22  ObjectModelLib.dylib                    0x010651bb 0x1038000 + 184763
    23  com.adobe.InDesign.Document Framework          0x0d9d0ed0 0xd936000 + 634576
    24  com.adobe.InDesign.Links                0x11dc53f8 0x11d39000 + 574456
    25  com.adobe.InDesign.Document Framework          0x0d937a85 0xd936000 + 6789
    26  com.adobe.InDesign.Document Framework          0x0d937b75 0xd936000 + 7029
    27  com.adobe.InDesign.AppFramework          0x0bbb60ed GetPlugIn + 201661
    28  PublicLib.dylib                         0x01161d6c UIDList::ReadWrite(IPMStream*, UIDList::EXferType) + 204
    29  PublicLib.dylib                         0x01161f50 UIDList::ReadWriteXferReference(IPMStream*) + 32
    30  com.adobe.InDesign.Links                0x11db2d49 0x11d39000 + 499017
    31  ObjectModelLib.dylib                    0x01062640 0x1038000 + 173632
    32  ObjectModelLib.dylib                    0x01065ab5 0x1038000 + 187061
    33  com.adobe.InDesign.Document Framework          0x0d9d13ec 0xd936000 + 635884
    34  com.adobe.InDesign.Document Framework          0x0d9d0c1e 0xd936000 + 633886
    35  com.adobe.InDesign.Generic Page Item          0x117a0a86 GetPlugIn + 149142
    36  PublicLib.dylib                         0x01164422 Command::DoImmediate(short) + 34
    37  com.adobe.InDesign.Utilities            0x0ce10aa3 0xce0f000 + 6819
    38  com.adobe.InDesign.Utilities            0x0ce10ccc 0xce0f000 + 7372
    39  com.adobe.InDesign.AppFramework          0x0bb7a688 0xbb60000 + 108168
    40  PublicLib.dylib                         0x0116557b CmdUtils::ProcessCommand(ICommand*) + 59
    41  com.adobe.InDesign.Document Framework          0x0d952c6d 0xd936000 + 117869
    42  PublicLib.dylib                         0x01164422 Command::DoImmediate(short) + 34
    43  com.adobe.InDesign.Utilities            0x0ce10aa3 0xce0f000 + 6819
    44  com.adobe.InDesign.Utilities            0x0ce10ccc 0xce0f000 + 7372
    45  com.adobe.InDesign.AppFramework          0x0bb7a688 0xbb60000 + 108168
    46  PublicLib.dylib                         0x0116557b CmdUtils::ProcessCommand(ICommand*) + 59
    47  PublicLib.dylib                         0x01163cd1 CompoundSequenceCmd::Do() + 369
    48  PublicLib.dylib                         0x01164422 Command::DoImmediate(short) + 34
    49  com.adobe.InDesign.Utilities            0x0ce10aa3 0xce0f000 + 6819
    50  com.adobe.InDesign.Utilities            0x0ce10ccc 0xce0f000 + 7372
    51  com.adobe.InDesign.AppFramework          0x0bb7a688 0xbb60000 + 108168
    52  PublicLib.dylib                         0x0116557b CmdUtils::ProcessCommand(ICommand*) + 59
    53  com.adobe.InDesign.AppFramework          0x0bb83bef 0xbb60000 + 146415
    54  PublicLib.dylib                         0x01164422 Command::DoImmediate(short) + 34
    55  com.adobe.InDesign.Utilities            0x0ce10aa3 0xce0f000 + 6819
    56  com.adobe.InDesign.Utilities            0x0ce10ccc 0xce0f000 + 7372
    57  com.adobe.InDesign.AppFramework          0x0bb7a688 0xbb60000 + 108168
    58  PublicLib.dylib                         0x0116557b CmdUtils::ProcessCommand(ICommand*) + 59
    59  com.adobe.InDesign.AppFramework          0x0bb83bef 0xbb60000 + 146415
    60  PublicLib.dylib                         0x01164422 Command::DoImmediate(short) + 34
    61  com.adobe.InDesign.Utilities            0x0ce10aa3 0xce0f000 + 6819
    62  com.adobe.InDesign.Utilities            0x0ce10ccc 0xce0f000 + 7372
    63  com.adobe.InDesign.AppFramework          0x0bb7a688 0xbb60000 + 108168
    64  PublicLib.dylib                         0x0116557b CmdUtils::ProcessCommand(ICommand*) + 59
    65  com.adobe.InDesign.Widgets              0x0e99304b GetPlugIn + 211323
    66  com.adobe.InDesign.Widgets              0x0e996386 GetPlugIn + 224438
    67  com.adobe.InDesign.Widgets              0x0e995fc0 GetPlugIn + 223472
    68  PublicLib.dylib                         0x0117982b CScrapSuite_Extensible::Paste(IClipboardController*, IControlView*, short) + 219
    69  com.adobe.InDesign.Application UI          0x0d3d1ff4 0xd3af000 + 143348
    70  com.adobe.InDesign.Application UI          0x0d3d2f05 0xd3af000 + 147205
    71  com.adobe.InDesign.Application UI          0x0d3d0abc 0xd3af000 + 137916
    72  com.adobe.InDesign.Application UI          0x0d433632 GetPlugIn + 217730
    73  com.adobe.InDesign.Actions              0x13d30de3 GetPlugIn + 11699
    74  com.adobe.InDesign.Actions              0x13d1eccc 0x13d1d000 + 7372
    75  WidgetBinLib.dylib                      0x02880334 MDefaultEH::KeyboardShortcut(IEvent*) + 484
    76  WidgetBinLib.dylib                      0x0287fb34 CDefaultEH::KeyDown(IEvent*) + 148
    77  WidgetBinLib.dylib                      0x02880133 MDefaultEH::KeyDown(IEvent*) + 163
    78  PublicLib.dylib                         0x01184bee CEventDispatcher::DispatchToEventHandlers(IEvent*) + 222
    79  PublicLib.dylib                         0x011846a8 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 24
    80  com.adobe.InDesign.Application UI          0x0d446b99 GetPlugIn + 296937
    81  com.adobe.InDesign.Application UI          0x0d4445dc GetPlugIn + 287276
    82  com.apple.HIToolbox                     0x9995cb6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    83  com.apple.HIToolbox                     0x997e4594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    84  com.apple.HIToolbox                     0x997e3980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    85  com.apple.HIToolbox                     0x997f7855 SendEventToEventTarget + 88
    86  com.apple.HIToolbox                     0x998178b2 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2392
    87  com.apple.HIToolbox                     0x997e4a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    88  com.apple.HIToolbox                     0x997e3980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    89  com.apple.HIToolbox                     0x997f7855 SendEventToEventTarget + 88
    90  com.apple.HIToolbox                     0x997d9077 SendTSMEvent + 75
    91  com.apple.HIToolbox                     0x997d8b0b SendUnicodeTextAEToUnicodeDoc + 745
    92  com.apple.HIToolbox                     0x997d8704 TSMKeyEvent + 980
    93  com.apple.HIToolbox                     0x998281e5 TSMProcessRawKeyEvent + 3102
    94  com.apple.HIToolbox                     0x99868ec5 HandleCompatibilityKeyEvent + 323
    95  com.apple.HIToolbox                     0x997e0aba HIApplication::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 7318
    96  com.apple.HIToolbox                     0x9995cb6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    97  com.apple.HIToolbox                     0x997e4594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    98  com.apple.HIToolbox                     0x997e3980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    99  com.apple.HIToolbox                     0x997e37ca SendEventToEventTargetWithOptions + 94
    100 com.apple.HIToolbox                     0x9981738c ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1074
    101 com.apple.HIToolbox                     0x997e4a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    102 com.apple.HIToolbox                     0x997e3980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    103 com.apple.HIToolbox                     0x997f7855 SendEventToEventTarget + 88
    104 com.adobe.InDesign.AppFramework          0x0bb62fd5 0xbb60000 + 12245
    105 com.adobe.InDesign.AppFramework          0x0bb884fa GetPlugIn + 14282
    106 com.adobe.InDesign                      0x0000288b main + 187
    107 com.adobe.InDesign                      0x000027a6 start + 54
    Log 2:
    Process:         Adobe InDesign CS5 [745]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.4.553 (7040)
    Code Type:       X86 (Native)
    Parent Process:  launchd [142]
    User ID:         501
    Date/Time:       2013-05-07 15:00:42.593 -0700
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.InDesign.Text                 0x0ff26f59 GetPlugIn + 1072585
    1   com.adobe.InDesign.Text                 0x0ff2c0eb GetPlugIn + 1093467
    2   com.adobe.InDesign.Text                 0x0ff2c1ef GetPlugIn + 1093727
    3   com.adobe.InDesign.Text                 0x0ff2c2c7 GetPlugIn + 1093943
    4   DataBaseLib.dylib                       0x010fd89f InterfaceSnapshot::ResetObjectToSnapshot(IDataBase*, IPMUnknown*, IDType<SnapshotID_tag>, ISnapshotCache*, scoped_lastrevinfodataref&) + 575
    5   ObjectModelLib.dylib                    0x01063b80 0x1038000 + 179072
    6   ObjectModelLib.dylib                    0x01070eb8 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 23784
    7   DataBaseLib.dylib                       0x010ce158 0x10c9000 + 20824
    8   com.adobe.InDesign.Text                 0x0ff2e909 GetPlugIn + 1103737
    9   com.adobe.InDesign.Text                 0x1004932e GetPlugIn + 2261406
    10  com.adobe.InDesign.Text                 0x0fe3fcba GetPlugIn + 125738
    11  com.adobe.InDesign.Text                 0x0fe400ff GetPlugIn + 126831
    12  com.adobe.InDesign.Text                 0x0fec3876 GetPlugIn + 665318
    13  PublicLib.dylib                         0x01164422 Command::DoImmediate(short) + 34
    14  com.adobe.InDesign.Utilities            0x0ce3baa3 0xce3a000 + 6819
    15  com.adobe.InDesign.Utilities            0x0ce3bccc 0xce3a000 + 7372
    16  com.adobe.InDesign.AppFramework          0x0bb7a688 0xbb60000 + 108168
    17  com.adobe.InDesign.AppFramework          0x0bb6cf11 0xbb60000 + 53009
    18  com.adobe.InDesign.AppFramework          0x0bb62f0e 0xbb60000 + 12046
    19  com.adobe.InDesign.AppFramework          0x0bb884fa GetPlugIn + 14282
    20  com.adobe.InDesign                      0x0000288b main + 187
    21  com.adobe.InDesign                      0x000027a6 start + 54

    Thanks, Peter. 
    The "link related" and "text related" crashes were what I interpretted here, too, though I'm at a loss on how to proceed given that this is a fresh system and applications.  This is happening with multiple InDesign projects in a design office environment where many others work on the same files and none of the other computers are having problems with these files.  I've removed the same files listed (thank you for those) before and did so effectively with creating the new user account to test with, but it had no effect.  I just tried again though, as these files could easily have becone corrupt again if they were being written to when InDesign crashed.  Will let you know if that makes any difference.  I've also gone through and completely cleaned out the fonts again and once more cleared the font caches.  If need be I'll reboot this system into safe mode and try that way.
    Best,
    Mike

  • Help with clean up duplicate records

    One of my tables have duplicate records in paris that needs to be cleaned up. I want to cleanup the earlier TIMESTAMP.
    ID MODIF_TIME_STAMP
    483070 1/7/2005 11:49
    483070 1/13/2005 17:19
    483071 1/6/2005 11:49
    483071 1/14/2005 17:19
    483072 1/15/2005 11:49
    483072 1/07/2005 17:19
    9000 records
    What is the easiest way to pick only the ID of the earlier timestamp of each pair.
    Thanks in advance.
    Ittichai

    Hallo,
    delete from your_tab
    where rowid in
    (select rowid from
    (select rowid, id, modif_time_stamp, row_number() over (partition by id order by modif_time_stamp desc) rn from your_tab)
    where rn > 1
    )This query deletes records with earlier date for every id
    Regards
    Dmytro
    Message was edited by:
    Dmytro Dekhtyaryuk

  • Need help with multi track/simultaneous recording

    Please forgive me if the answer to my question has already been covered; I have searched the other posts but haven't been able to find the answer.
    I am recording a podcast with a Behringer Xenyx X1832 mixer. In GB I know how to select "multi track recording" and set my two mics that are conneced to the first two channels of the mixer to "mono 1" and "mono 2" on the input source.
    My question is how do I record audio from my Macbook on a seperate track?
    I have a Focusrite 2i2 connected via USB to the Macbook acting as an output, then TRS cables from the outputs going to channel 7/8 on the mixer. When I play audio I can hear it perfect and adjust EQ and volume, but I am unable to record it on a seperate track on GB.
    When I click on the track on GB, the input source says "stereo 1/2" and when I try to click the red buttons to arm the other two mono tracks where my mics are connected it says "The input channel of this track is already in use. To record on this track, choose another input channel."
    What am I doing wrong? How do I send audio from the Macbook to the mixer and then record it on a seperate track, along with seperate tracks for each of the mics?

    You need to create an aggregate device:
    http://support.apple.com/kb/HT1215

  • Help with maxage / limiting default recording disk usage

    I've got 2 related questions:
    1) Is it possible using -XX:StartFlightRecording and/or XX:FlightRecorderOptions to cause flight recording to only keep the last N minutes worth of recorded data on disk, so that any any point one can view data on the last N minutes worth of activity?  How?
    2) What is the maxage parameter supposed to effect?  Reading http://docs.oracle.com/javase/7/docs/technotes/tools/solaris/java.html it seems like it's supposed to do the above, but I've not been able to see any difference in behavior with any of these args, and in particular, each of them is continuing to fill up the /tmp dir. with .jfc files well past the maxage limit.
    No maxage: -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=false,dumponexit=true,dumponexitpath=/tmp,loglevel=trace
    Maxage on StartFlightRecording: -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:StartFlightRecording=maxage=1m -XX:FlightRecorderOptions=defaultrecording=false,dumponexit=true,dumponexitpath=/tmp,loglevel=trace
    Maxage on FlightRecorderOptions: -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=false,dumponexit=true,dumponexitpath=/tmp,loglevel=trace,maxage=1m
    thx,
    Chris

    "Is it correct that the XX:StartFlightRecording options are meant to only apply to a special start recording (that starts at server start time), while the XX:FlightRecorderOptions are meant to apply to any/all recordings"
    -XX:FlightRecorderOptions is meant to configure global settings, but there are also options that controls the default in-memory recording (called "Hotspot default"), which can be turned on by setting defaultrecording=true. Since Flight Recorder records the union of all ongoing recordings, it will in practise apply to other recordings as well.
    "The settings=path option seems to have no effect when given to XX:FlightRecorderOptions, even though it's listed in the documentation page above as being a supported option.  When I use settings=path with XX:FlightRecorderOptions, I still get the default settings.  Is this a known implementation or documentation bug?"
    It's a known bug, as a workaround you can replace the file named default.jfc in JRE_HOME/lib/jfr with the settings file you want, i.e profile.jfc
    "With both XX:StartFlightRecording and XX:FlightRecorderOptions, what's the behavior when defaultrecording=false?  "
    No default (in-memory) recording will be started
    "The documentation says "Specifies whether the recording is a continuous background recording or it runs for a limited time. By default, this parameter is set to false (recording runs for a limited time)." What is this limited time (how long)?  And is it a limited time forward from the beginning, or backwards from the current time?  Why is this setting even needed given the maxage, maxsize, and duration settings?"
    It's incorrect, defaultrecording=true is just a convenience option for starting the default in-memory recording. There is no limit put in place if you set it to false.
    If you want to use a disk repository, you can ignore all options that includes the word "default" and just use -XX:StartFlightRecording.

  • Help with update,add, delete records

    Hi every one,
    This is a problems that I have been trying to figure out for
    a little while now and I hope you all can help me out. So this is
    the situation.
    I am useing CFX XLS 2 Query to create a query from an excel
    doc I have. Now my problem is how can I loop through and delete the
    records that no longer are in the spreadsheet?
    So in other words my client will be uploading a new XLS each
    day, this xls will have some new data, some of the same and some
    will be gone. So I need the system to check and see if the
    stocknumber is there, if it is it will just update that record, now
    if the record is new it will add the record but for the life of me
    I can't figure out how it can delete record.
    I had thought maybe doing a select where the stock numbers
    dont match but that didnt work out too well :)
    Thanks for any help you may be able to provide

    You could consider using ValueList() to create a list of
    stocknumbers from your excel query, then do something like this:
    <cfset sCurrentStockNumbers =
    ValueList(myQuery.stocknumber)>
    <cfquery name="removeStockNumbers"
    datasource="myDataSource">
    DELETE from myTable
    WHERE stocknumber NOT IN (<cfqueryparam
    value="#sCurrentStockNumbers#" list="Yes">)
    </cfquery>

  • Need help with activating Voice Mail. I am new to Verizon moving from At

    HELP!

    Open the dialer app and tap on the icon on the bottom left that looks like a tape.  Follow prompts to set up voicemail

  • NEED HELP WITH QUERY, NEED NEWEST RECORD ONLY

    Hi all,
    Here goes,
    I have an assingment in which i need to find the agents who allow the footballers to break the rules.
    So far i have 41 results, in which there is 4 agents and 24 footballers, and the same footballer has broken more than one rule or the rule more than once.
    What i now need is to arrange so that each footballer on shows up once no matter how many times they have broken the rules.
    i have
    SELECT
    t.transfer_time || ' ' || a.first_name || ' ' || a.last_name || ' ' || f.first_name || ' ' || f.last_name || ' ' || f.footballer_id || ' ' || t.transfer_id
    FROM
    agents a, transfers t, footballers f, footballers_fees fo
    WHERE
    a.agent_id = t.broker_id
    AND
    t.footballer_id = f.footballer_id
    AND
    f.footballer_id = fo.footballer_id
    AND
    (RULE 1 BROKEN AND RULE 2 BROKEN
    OR
    RULE 1 BROKEN AND RULE 2 NOT BROKEN
    OR
    RULE 1 NOT BROKEN AND RULE 2 BROKEN)
    GROUP BY
    t.transfer_time || ' ' || a.first_name || ' ' || a.last_name || ' ' || f.first_name || ' ' || f.last_name || ' ' || f.footballer_id || ' ' || t.transfer_id
    ORDER BY
    t.transfer_time || ' ' || a.first_name || ' ' || a.last_name || ' ' || f.first_name || ' ' || f.last_name || ' ' || f.footballer_id || ' ' || t.transfer_id
    (I havent typed out the SQL for the rules 1 and 2 but i know it works)
    Now i need to show only each footballer once whether they have broken either rule and more than once or not.
    I have been staring at the screen for near enough 10 hours and any help or ideas would be greatly appreciated
    Thanks all :)

    884080 wrote:
    Hi all,
    Here goes,
    I have an assingment in which i need to find the agents who allow the footballers to break the rules.
    So far i have 41 results, in which there is 4 agents and 24 footballers, and the same footballer has broken more than one rule or the rule more than once.
    What i now need is to arrange so that each footballer on shows up once no matter how many times they have broken the rules.
    i have
    SELECT
    t.transfer_time || ' ' || a.first_name || ' ' || a.last_name || ' ' || f.first_name || ' ' || f.last_name || ' ' || f.footballer_id || ' ' || t.transfer_id
    FROM
    agents a, transfers t, footballers f, footballers_fees fo
    WHERE
    a.agent_id = t.broker_id
    AND
    t.footballer_id = f.footballer_id
    AND
    f.footballer_id = fo.footballer_id
    AND
    (RULE 1 BROKEN AND RULE 2 BROKEN
    OR
    RULE 1 BROKEN AND RULE 2 NOT BROKEN
    OR
    RULE 1 NOT BROKEN AND RULE 2 BROKEN)
    GROUP BY
    t.transfer_time || ' ' || a.first_name || ' ' || a.last_name || ' ' || f.first_name || ' ' || f.last_name || ' ' || f.footballer_id || ' ' || t.transfer_id
    ORDER BY
    t.transfer_time || ' ' || a.first_name || ' ' || a.last_name || ' ' || f.first_name || ' ' || f.last_name || ' ' || f.footballer_id || ' ' || t.transfer_id
    (I havent typed out the SQL for the rules 1 and 2 but i know it works)
    Now i need to show only each footballer once whether they have broken either rule and more than once or not.
    I have been staring at the screen for near enough 10 hours and any help or ideas would be greatly appreciated
    Thanks all :)Realize that we don't have your tables or data, so we can't run, test, or improve your SQL.
    so what exactly do you expect from us?

  • Help with selecting 10 random records from all records meeting report selection criteria in Crystal 11

    <p>I am trying to select ten random records from all that match the report selection criteria then report on each of these random records for QA/QI.  I have tried the RND function however it is giving me a random number rather than a random record selection.  I cannot figure this out and am despirately seeking assistance.</p><p>Thank you,</p><p>Amy</p>

    <p>I don&#39;t know of any Random record selection functions but maybe you could write your own custom function inside of a record selection to randomly filter the records.  You would use the Rand function we currently have to decide if a record was included in the report data or not.</p><p>Another possible option is to filter the records before they get to the report.  You can only do this if you are pushing the data into the report instead of having the report pull the data.  An example of this would be passing an ado recordset to a report at runtime. </p><p>Rob Horne</p><p>http://diamond.businessobjects.com/blog/10 </p>

Maybe you are looking for

  • Ip address already assigned when trying to login to nonsecured wifi network

    I am having problems connecting and/or loading pages to an unsecured wifi network at work.  I used to be able to connect and access the internet just fine.  I think they might have been having router problems as our signal strength got weaker and wea

  • Privacy Screen for Macbook 13.3"?

    I ordered the 3M 13.3" Privacy screen, but it's not wide enough. It's more of a 13.3" square. Is there one that fits the current Macbook 13.3" models? There doesn't appear to be one on the 3M web site. Any other mfgs?

  • Cannot back up to icloud

    Since upgrading my iphone to iOS 6.0.2 my phone will not back up to the cloud and I keep getting a message that I haven't backed up my phone in 5 weeks.

  • How fast and powerful are these new 24" 2.8 fully loaded beasts?

    are these new imacs fast? can they handle GB 08 and CS3? im trying to compare this new 24 inch ( 2.8 GHZ) beast with all the RAM in it to a G5 desktop quad or DP 2.5 all with plenty of RAM. Does the new IMAC speed through Garageband ( 20 tracks of da

  • Win8RP: Failed to create new process "...javaw.exe" - Invalid argument

    Hi all, we have a huge Java (JRE 6.0.310.5) app that works fine on the Win 8 CTP, but on RP: Failed to create new process "C:\Program Files (x86)\...\jre\bin\javaw.exe" - Invalid Argument Thanks for any insight G.