Waveform Display Blank

I imported an audio track and even though sound is definitely playing when I play the track, I don't see any waveforms on the display. I had no problems with a previous project, so I'm not sure if I shut something off by accident. I need to see the waveform display so that I can properly edit and sync it with a video file.
Any suggestions?

I imported an audio track and even though sound is definitely playing when I play the track, I don't see any waveforms on the display. I had no problems with a previous project, so I'm not sure if I shut something off by accident. I need to see the waveform display so that I can properly edit and sync it with a video file.
Any suggestions?

Similar Messages

  • Sample Edit window - no waveform display

    When I have a pretty loaded up song that's stretching the memory I find that if I try to open an audio file in the sample edit window the window is just blank with no waveforms or menues. Re-booting can solve the problem for a while then it returns midway through working on the song. I guess it's just Logic running out of internal memory (I have as much RAM installed as Logic can currently access).
    Anyone have any sugestions/solutions? I've done the usual undo history thing and tried to rationalise the memory and am reluctant to start dissing plug-ins/instruments to gain the memory back - "re-organize memory" has no effect.
    When this occurs I can continue to load extra plug-ins and open new instruments so the memory isn't totally maxed out but perhaps too loaded to handle the waveform display in the sample edit window.
    All other elements work OK when this problem exists.
    Julian

    John, the thread you mentioned now seems to have a solution to the problem
    it worked on my system.
    http://discussions.apple.com/thread.jspa?threadID=152915&start=30&tstart=0
    Dual 2.7 G5, 8 GB RAM, 2x400 GB Drive   Mac OS X (10.4.4)   QT 7.01, Logic Pro 7.1.1

  • Report is displaying blank?

    hi all
    my report with less parameters is working fine but when i increased parameters its showing me report can anyone guide me plz.its displaying blank page
    here is my codes:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    add_parameter(plid,'P_num',text_parameter,to_char(:pays.num));
    add_parameter(plid,'p_code',text_parameter,to_char(:pays.code));
    add_parameter(plid,'p_basic',text_parameter,to_char(:pays.basic));
    add_parameter(plid,'p_housing',text_parameter,to_char(:pays.housing));
    add_parameter(plid,'p_water',text_parameter,to_char(:pays.ele_water));
    add_parameter(plid,'p_transport',text_parameter,to_char(:pays.transport));
    add_parameter(plid,'p_desc',text_parameter,to_char(:pays.description));
    add_parameter(plid,'p_amount',text_parameter,to_char(:pays.amount));
    add_parameter(plid,'p_deduct',text_parameter,to_char(:pays.deduction));
    add_parameter(plid,'p_net',text_parameter,to_char(:pays.net_amount));
    add_parameter(plid,'p_total',text_parameter,to_char(:pays.total));
    add_parameter(plid,'p_other',text_parameter,to_char(:pays.other));
    add_parameter(plid,'p_money',text_parameter,to_char(:pays.money_in_words));
    add_parameter(plid,'p_num2',text_parameter,to_char(:payslip.num));
    add_parameter(plid,'p_name',text_parameter,to_char(:payslip.employee_name));
    add_parameter(plid,'p_gender',text_parameter,to_char(:payslip.gender));
    add_parameter(plid,'p_nat',text_parameter,to_char(:payslip.nationality));
    add_parameter(plid,'p_martial',text_parameter,to_char(:payslip.martial_status));
    add_parameter(plid,'p_date',text_parameter,to_char(:payslip.join_date));
    add_parameter(plid,'p_job',text_parameter,to_char(:payslip.job_title));
    add_parameter(plid,'p_bank',text_parameter,to_char(:payslip.bank));
    add_parameter(plid,'p_account',text_parameter,to_char(:payslip.account_no));
    add_parameter(plid,'p_year',text_parameter,to_char(:payslip.year));
    Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT6');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://sara:8889/reports/rwservlet/getjobid'
    ||substr(v_rep,instr(v_rep,'_',-1)+1)
    ||'?'
    ||'server=repserver&P_num='||:pays.num
    ||'&p_code'||:pays.code
    ||'&p_basic'
    ||:pays.basic||'&p_housing'
    ||:pays.housing||'&p_transport'||:pays.transport
    ||'&p_water'||:pays.ele_water||'&p_amount'
    ||:pays.amount||'&p_deduction'||:pays.deduction
    ||'&p_netamount'||:pays.net_amount
    ||'&p_total'||:pays.total||'&p_other'
    ||:pays.other||'&p_word'||:pays.money_in_words
    ||'&p_num2'||:payslip.num
    ||'&p_name'||:payslip.employee_name
    ||'&p_gender'||:payslip.gender||'&p_nat'
    ||:payslip.nationality||'&p_martial'
    ||:payslip.martial_status||'&p_date'
    ||:payslip.join_date||'&p_job'
    ||:payslip.job_title||'&p_bank'
    ||:payslip.bank||'&p_account'
    ||:payslip.account_no||'&p_year'
    ||:payslip.year||'&paramform=no','_blank');
    END;
    Edited by: SarahSarahSarah on Aug 16, 2009 4:20 AM
    Edited by: SarahSarahSarah on Aug 16, 2009 4:23 AM

    sarah,
    Check the query in the report. The reason for blank report will be the query returning blank. So check the report's query in SQL *PLUS or other softwares like TOAD, SQL Developer etc.
    Regards,
    Manu.

  • In my Iphone 5, Nothing on my App Store is working its displaying blank (Except for Genius section). I've tried to uninstall and install itunes and all its component but still it doen't fix. Not sure if its problem with apple servers. Someone help please!

    In my Iphone 5, Nothing on my App Store is working,  its displaying blank (Except for Genius section). I've tried to uninstall and install itunes and all its component in my desktop but still it doesn't fix the app store issue. Not sure if its problem with apple servers. Someone help please!

    settigns>itunes and app store to make sure you are signed in.. If  you are, you will see your account name..... anyhow, click your account name, sign out and sign back in
    also go to to settings>general>reset and reset network settings... if that doesnt work settings>general>reset and reset all settings!
    one of those shall work. The last step would be to restore your device (apple.com/support) HT1414

  • Email received on BT email display blank content

    Hi,
    The email received fron certain domain on BT internet mail display blank content. Has anyone come across the problem? Let me know how to solve.

    I am getting the same thing - going to post about it shortly as I don't know the solution either.

  • My nokia N-70 Music Edition Screen displayed blank...

    Hi
    nokia N-70 Music Edition Screen displayed blank after few hours.After Removing battery,put again & start it becomes ok for few hours.I have already updated the Software Nokia N-70 but no advantage.
    Wht should i do?

    strange enough some of the pre-installed apps on the N70 are on the memory card and not the phone memory. which means formatting the memory card will remove everything. it's difficult to get everything back but try these :
    1- try to find what you need on the n70 support page
    http://europe.nokia.com/A4144775
    check phone software.
    2- if you have the download app installed on your phone , run it and check for the app there.if not check the nokia download store. http://www.download.nokia.com/
    3- if your mamory card is not the original provided with the phone, locate your old memory card. using a computer copy and paste the following folders from the old original one to the new one:
    * resource
    * sys
    * private (copy the subdirectories only and not the whole folder)
    4- if something is still missing after all this, i guess it's gone for good
    Fear not those who argue but those who dodge

  • My 6070 navigation display blanks out after 5 seco...

    My 6070 navigation display blanks out after 5 seconds. Not enough for a 'silver surfer' I am not able to find the adjustment, and it is not in the handbook. Can anyone help. Many thanks
    Solved!
    Go to Solution.

    A reply from service would indicate this a feature of the 6070, back light being turned off. The time out cannot be altered. This feature is unsatisfactory as it times out too soon for slow fingers!

  • XL Reporter Do Not Display Blank Records

    hey all,
    I've built a standard P&L Budget report in XL Reporter with parameters for each segment of the account code as made possible by patch 02.  However, when I uncheck "Do not display blank records," the generated report lists an instance of each account for each segment that I've chosen in the parameters.
    The selections for the account segmentation don't seem to filter the accounts themselves, instead they filter the balances of each account.  Does anyone know why it only filter's the balances rather than the accounts themselves and ends up repeating the accounts for each segment selected?  Is this a bug?
    thanks in advance!
    Kevin Lee

    Hi Kevin,
    Seems that noone in this forum can answer your question. Maybe this is related to the fact that the main focus here is the SAP Business One SDK?
    In case the question is still open:
    I would recommend that you try these forums - which should fit better:
    For SAP partners only there's a forum where you can discuss implementation questions etc.:
    Got a question about customization / implementation? Maybe ask it in CPSN!
    ...and here's the SAP Business One Forum in the "SAP Community" (public to anybody):
    Re: Got a question about customization / implementation? Maybe ask it in CPSN!
    ...or you might try your luck with SAP Support?
    Bugs should anyway be reported to SAP Support!
    HTH
    Frank

  • TS1382 Display blank  iPod nano 2nd gen

    Display blank  iPod nano 2nd gen

    You may get better response if you post in the iPod Nano Community forum
    or else hopefully this Apple Support Article on iPod Reset will help you.
    Have a nice day!

  • Is it possible to have the lid open on a MacBook Pro connected to a Cinema Display and have the Mac display blank with the Cinema in highest definition?

    Is it possible to have the lid open on a MacBook Pro connected to a Cinema Display and have the Mac display blank with the Cinema in highest definition?

    Hi,
    Create a play list that you wish to burn. Select playlist, the file from main menu which gives to an option to burn the playlist. A pop up box appears allowing you to select burn speed and disc format.
    Jim

  • FAGLL03 : customer and vendor columns displaying blank

    hi experts,
    In FAGLL03 tcode , customer and vendor columns are displaying blank .
    Is there any settings need to be done in SPRO for displaying the 2 columns .
    kindly give me any suggestions.
    thanks & regards,
    Raghul

    hi Radhika,
    Thanks for your prompt reply.
    I already defined table and field names as mentioned by you .
    Also i checked FAGLPOSYEXT structure the two fields were appearing as it was not there previously.
    When i checked by running FAGLL03 , the fields customer and vendor were appearing blank only.
    Also  i tried by executing the report  BALVBUFDEL - for buffer reset.
    Kindly give me any suggestions how to rectify this .
    Thansk & regards,
    Raghul

  • Display blank for # in Query Designer

    Hello,
    I am executing a query using Query designer. The blank characteristic are displayed as # in the report. I want to display blank instead of the #.
    Please help me in this
    Thanks in Advance.

    Hello Shraddha,
    in that case you will have to use VBA.
    just copy the code mentioned in the above links in Workbook->Tools->Macro
    Create a macro with name SAPBEXonRefresh for the workbook in which the output is needed as " " in place of #.
    Hope it helps..
    thanks,
    (please dont forget the points...)

  • Displays blank page when tried to access ORACLE Application Server Control

    Hi,
    I have successfully installed the Oracle SOA Suite using advance installation.
    But when tried to open ORACLE APPLICATION SERVER CONTROL by following the below path.
    start-> programs-> oracle-soa->ORACLE APPLICATION SERVER CONTROL, It displays a blank IE page.
    But when tried to open BPEL control or WSM control or ESB control, it takes me to the login page.
    Note: Started the SOA suite and the status of ASG component in the Start SOA page says Down.Does this affect in anyways?
    Would appreciate if anyone could throw some light on this.

    Hi All,
    I started reinstalling SOA suite and while installation, I encounter below warning.
    "A DHCP configuration was detected on this host" The installer also detected that the localhost name and network hostname differ. please resolve the networking issues by reffering the "Installing on DHCP computers" section in the installation guide."
    Note: Doing installation in the server.
    Wondering this could be the cause for displaying blank Application Server Control page.
    And here is, what it says in the installation guide.
    Note this limitation when running Oracle Application Server on DHCP computers: Oracle Application Server instances on DHCP computers cannot communicate with other instances running on other computers. For example, you cannot have OracleAS Infrastructure on one computer and a middle tier on another computer if any one of those computers uses DHCP. All the instances that need to communicate with each other need to run on the same computer. There are no limitations on clients: clients from other computers can access the instances running on the DHCP computer, as long as the client computer can resolve the DHCP computer on the network.
    The solution for this is installing loopback adapter. But the catch is, I have few webmethods running on the server. Wondering about the effects of Loop back adadpter on webmethods. Please someone throw some light.
    Regards
    jude.

  • Transactions TBB1 TPM44 - the portfolio field is displayed blanked

    Hi Gurus.
    We are using the portfolio field on our financial transactions created through FTR_CREATE. However, when we analyze the output reports of TPM44, TBB1 transactions the portfolio field is displayed blanked.
    Has anyone faced this situation?
    Thanks in advance for your help.
    Regards,
    ZucoGuti.

    HI ZucoGuti,
    portfolio field in TBB4 and TPM44 is for portfolio used in position determination and will only be displayed, if it is used as differentiation criterium. The same is valid for reports like TPM12 and TPM13.
    BR,
    Tomislav

  • Premiere Pro CC Crashing when Scrolling Through Sequence in Timeline - Audio Waveform Goes Blank First

    The description is in the title: Premiere Pro CC Crashing when Scrolling Through Sequence in Timeline - Audio Waveform Goes Blank First.
    Just started today, won't stop crashing now after a minute or two, and always does it when I scroll through the timeline of a sequence.  The audio waveform goes blank first.
    What is going on?
    Date/Time:  
    2014-10-22 12:16:16.078 -0400
    OS Version: 
    Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  E1BCDCD7-6284-3012-9151-FF85491060DA
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000011d74b000
    VM Regions Near 0x11d74b000:
    VM_ALLOCATE       
    000000011d748000-000000011d74b000 [   12K] rw-/rwx SM=PRV 
    --> STACK GUARD       
    000000011d74b000-000000011d74c000 [
    4K] ---/rwx SM=NUL  stack guard for thread 4
    Stack             
    000000011d74c000-000000011d7ce000 [  520K] rw-/rwx SM=COW  thread 4
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread

    same problem of mine, as posted here:
    Crash when scrolling the timeline
    please find attached the crash report log, as requested.
    Process:         Adobe Premiere Pro CC 2014 [3770]
    Path:            /Applications/Adobe Premiere Pro CC 2014/Adobe Premiere Pro CC 2014.app/Contents/MacOS/Adobe Premiere Pro CC 2014
    Identifier:      com.adobe.AdobePremierePro
    Version:         8.2.0 (8.2.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [225]
    Responsible:     Adobe Premiere Pro CC 2014 [3770]
    User ID:         501
    Date/Time:       2014-12-22 16:33:25.725 +0100
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  DC744912-A135-A02B-C2D3-75C4CA421CDD
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000011a46a000
    VM Regions Near 0x11a46a000:
        VM_ALLOCATE            000000011a461000-000000011a46a000 [   36K] rw-/rwx SM=PRV
    -->
        VM_ALLOCATE            000000011a46d000-000000011a46e000 [    4K] rw-/rwx SM=PRV
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000011a46a000
    VM Regions Near 0x11a46a000:
    VM_ALLOCATE 000000011a461000-000000011a46a000 [   36K] rw-/rwx SM=PRV
    -->
    VM_ALLOCATE 000000011a46d000-000000011a46e000 [    4K] rw-/rwx SM=PRV
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.HandlerTimeline.framework 0x000000010c2b31f4 HandlerTimeline::TimelineMediaIconManager::DrawAudioWaveform(UIF::DC&, ASL::ParamRect<int> const&, ASL::ParamColor<RGBColor>, unsigned int, unsigned int, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>, bool, std::vector<bool, std::allocator<bool> > const&) + 1620
    1   com.adobe.HandlerTimeline.framework 0x000000010c1dc4f5 HandlerTimeline::AudioTrackContentView::DrawWaveform(UIF::DC&, ASL::ParamRect<int> const&, ASL::ParamRect<int> const&, ASL::InterfaceRef<BE::ITrackItem, BE::ITrackItem>, unsigned int, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>) + 2661
    2   com.adobe.HandlerTimeline.framework 0x000000010c1dafb3 HandlerTimeline::AudioTrackContentView::DrawTrackItemWaveform(ASL::InterfaceRef<BE::ITrac kItem, BE::ITrackItem>, dvamediatypes::TickTime const&, int, ASL::InterfaceRef<ASL::ASLUnknown, ASL::ASLUnknown>) + 2131
    3   com.adobe.HandlerTimeline.framework 0x000000010c2b447d HandlerTimeline::TimelineMediaIconManager::HandleWaveformNotification(int) + 429
    4   com.adobe.HandlerTimeline.framework 0x000000010c2b53b0 HandlerTimeline::AsyncRequestNotifier::ListenToMessage(ASL::Message const&) + 176
    5   com.adobe.ASLMessaging.framework 0x0000000100e1fb97 ASL::Broadcaster::BroadcastMessageInner(ASL::Broadcaster::ListenerRecord const&, ASL::Message const&) + 39
    6   com.adobe.Frontend.framework   0x000000010006b039 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0 <int>) + 41
    7   com.adobe.ASLMessaging.framework 0x0000000100e1f71f ASL::Broadcaster::BroadcastMessage(ASL::Message const&) + 1695
    8   com.adobe.ASLMessaging.framework 0x0000000100e25e9a ASL::StationUtils::BroadcastMessage(dvacore::utility::ImmutableString const&, ASL::Message const&) + 42
    9   com.adobe.dvacore.framework   0x00000001003c763c boost::function0<void>::operator()() const + 28
    10  com.adobe.dvacore.framework   0x00000001003c8f4c dvacore::threads::(anonymous namespace)::FunctionQueue::ExecuteOneFunction(boost::shared_ptr<dvacore::threads::(anonym ous namespace)::FunctionQueue>, bool) + 124
    11  com.adobe.dvacore.framework   0x00000001003c9a4c boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<bool, bool (*)(boost::shared_ptr<dvacore::threads::(anonymous namespace)::FunctionQueue>, bool), boost::_bi::list2<boost::_bi::value<boost::shared_ptr<dvacore::threads::(anonymous namespace)::FunctionQueue> >, boost::_bi::value<bool> > >, void>::invoke(boost::detail::function::function_buffer&) + 60
    12  com.adobe.dvacore.framework   0x00000001003c763c boost::function0<void>::operator()() const + 28
    13  com.adobe.dvacore.framework   0x00000001003c9b02 dvacore::threads::(anonymous namespace)::RunLoopAdaptor::Execute(__CFRunLoopTimer*, void*) + 18
    14  com.apple.CoreFoundation 0x00007fff8b7ae3e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    15  com.apple.CoreFoundation 0x00007fff8b7adf1f __CFRunLoopDoTimer + 1151
    16  com.apple.CoreFoundation 0x00007fff8b81f5aa __CFRunLoopDoTimers + 298
    17  com.apple.CoreFoundation 0x00007fff8b7696a5 __CFRunLoopRun + 1525
    18  com.apple.CoreFoundation 0x00007fff8b768e75 CFRunLoopRunSpecific + 309
    19 com.apple.HIToolbox 0x00007fff93049a0d RunCurrentEventLoopInMode + 226
    20 com.apple.HIToolbox 0x00007fff93049685 ReceiveNextEventCommon + 173
    21  com.apple.HIToolbox 0x00007fff930495bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    22 com.apple.AppKit 0x00007fff8e47924e _DPSNextEvent + 1434
    23 com.apple.AppKit 0x00007fff8e47889b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    24 com.apple.AppKit 0x00007fff8e46c99c -[NSApplication run] + 553
    25  com.adobe.Frontend.framework   0x00000001000d302d FE::MacApplication::RunSelf() + 45
    26  com.adobe.Frontend.framework   0x0000000100047e98 FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 4328
    27  com.adobe.Frontend.framework   0x00000001000d4944 FE::AppMain(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, int, void*) + 276
    28  com.adobe.Frontend.framework   0x00000001000dbbe5 FE::Run(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, int) + 581
    29  com.adobe.AdobePremierePro     0x00000001000018ac main + 508
      30 com.adobe.AdobePremierePro     0x00000001000016a4 start + 52

Maybe you are looking for