Creating tracks within a recording

How do I create tracks within one long recording? My wife is a professional speaker and we are creating CD's of her tapes etc. How do I add invisible track marks so people listening to the CD's can advance to a specific place in the tape. I would like to place tracks at 5 minute intervals.

use an audio editor to split the one long track every 5 minutes or so, then save each "piece" as a seperate .wav file. then burn all the tracks to cd. you can use Audacity. tis free
http://audacity.sourceforge.net/

Similar Messages

  • Auto Create Tracks in Cycle Record in LP8?

    I might be alone but used Auto Create Tracks in Cycle Record a lot in Logic 7. I sat down today to down some work and cant find the equivalent in LP 8 any where.
    I use this to play a record a track then record again whilst listening to the original. Sometimes this will end up being as many as 8 tracks playing at the same time whilst another is being recorded.
    Can this be done in LP8?
    Sorry if this info is else where I have just spent a few hrs looking through the manual and this forum
    My best
    Joff

    Why do you post this twice, you won't get different answers by posting it again......

  • Auto Create Track in Cycle Record NOT disengaging??

    I was using Auto Create Track in Cycle Record, in the song settings recording menu, for multiple audio voice overs. Now that I want to record without this function, it is not deactivating when I disengage the selection in the song settings recordings menu.
    Is there something I'm forgetting to do here? I'm 99% positive that the only way to engage this function was from the song settings recording menu.
    If I record without Cycle engaged, the recording will stay on the one track selected. If i turn Cycle back on without Auto Create Track in Cycle Record activated, it reacts as though it was engaged. ???
    Please help, in a bind.
    Thanks!

    Can someone help me please? is it a bug? or is it some sort of setting combination I need to discover.

  • Auto create track BUG

    try this:
    In 'file > song settings' choose 'auto create track in cycle record'
    With each repetition of the cycle a new track is created.
    Record something two or more cycles long...
    Now UNDO.
    the Regions of every track that's underneath the track you recorded on are all
    moved up to the tracks above.
    So now that you did the undo, your drum regions are on the bass track for example.
    big bug.

    yes, HORRIBLE!

  • How to Create a Function module z_create and to track the error records?

    I want to create a function module z_create which will insert the data from the internal tables gt_model_master and gt_model  into the corresponding database custom tables y_model_master.
    Secondly if any error is encountered during the above updation, then how to track those error records ?

    HI,
    check the sy-subrc ,if it is zero the insertion is success,otherwise use 
    message class.
    if sy-subrc ne 0.
    message e052(zmessage).
    endif.
    Edited by: rakesh dhudipala on Feb 12, 2008 2:33 PM
    Edited by: rakesh dhudipala on Feb 12, 2008 2:33 PM

  • Update/create the purchase info records

    Hi All,
    i got a requirment for update/create the purchase info records for the transaction ME11.
    i came to know that the FM <b>ME_DIRECT_INPUT_INFORECORD</b> is suitable for this requirment.
    but when i am trying to test this by passing data to I_EINA and I_EINE.
    it is giving some error message like "<b>Please enter at least one vendor</b>, Number entered not within external number range and etc".
    can any one guid me in passing the data to this function module, i.e. what are the required fields that are to be passed to this FM.
    if i have to update/create the EINA & EINE table data.
    Thanks,
    Rama

    Hi,
    Better use report RM06IBI0 - read its documentation with
    Tcode SE38
    Greetings Andreas

  • How can I create cursors within the cursor?

    How can I create cursors within the cursor?
    Table1 2001 - 2007 data
    Account_no
    Account_eff_dt
    No_account_holder
    Num
    Seq_Num
    Value1
    Value2
    Table2_Historical (doesn't have Num as a field) 1990 - 2000 data
    Account_no
    Account_eff_dt
    No_account_holder
    Seq_Num
    Value1
    Value2
    Table3_06
    Account_no
    Account_eff_dt
    No_account_holder
    Num
    My result table should be:
    Table_result_06
    Account_no
    Account_eff_dt
    No_account_holder
    Num
    Value1_min (the minimum value for the minimum of record_sequence)
    Value2_max (the maximum value for the maximum of record_sequence)
    I have to get data from Table1 and Table2_Historical. If one account was open in 1998 and is still effective, the minimum value of that account is in the Table2_Historical.
    Let's say I open a cursor:
    cursor_first is
    select * from table3_06;
    open csr_first
    loop
    fetch cursor_first into
    v_Account_no
    v_Account_eff_dt
    v_No_account_holder
    v_Num
    EXIT WHEN csr_first%NOTFOUND;
    How can I open a second cursor from here that will get the Seq_Num from Table1
    csr_second
    select Seq_Num from Table1 where
    v_Account_no = Account_no
    v_Account_eff_dt <= Account_eff_dt
    v_No_account_holder=No_account_holder
    v_Num = Num
    How does it works???
    Thanks a lot

    Thanks so much for replying back. Here is what I am trying to do.
    I have to create a table for each year 2002, 2003, 2004, 2005, 2006 that has all the account numbers that are active each year plus some other characteristics.
    Let’s say I will create Table_result_06. This table will have the following fields. The account number, account effective date, Number of the account holder and the field Num (The primary key is a combination of all 4 fields), the beginning look of value 1 in 2006, the last look of value 1 in 2006.
    Table_result_06
    Account_no key
    Account_eff_dt key
    No_account_holder key
    Num key
    Value1_min (the minimum value for the minimum of record_sequence)
    Value2_max (the maximum value for the maximum of record_sequence)
    All the active account numbers with the Account_eff_dt, No_account_holder and Num are in the Table3. As such I can build a query that connects Table3 with table Table1 on all 4 fileds, Account_no, Account_eff_dt, No_account_holder, Num and find the Value1_min for the min of req_sequence in 2006 and Value1_max for the max of req_sequence in 2006. Here my problem starts.
    Table 1 doesn’t have a new entry if nothing has changed in the account. So if this account was open in 1993 and nothing has changed I don’t have an entry in 2006 but this doesn’t mean that this account doesn’t exist in 2006. So to find the minimum value I have to go back in 1993 and find the max and min for that year and that will be max and min in 2006 as well.
    As such I have to go to Table_2 historical and search for min and max. But this table doesn’t have the field NUM and if I match only on the Account_no, Account_eff_dt and No_account_holder I don’t get a unique record.
    So how can I connect all three tables, Table 1 for max and min, if it doesn’t find anything will go to table 2 find the two values and populate Table_result_06.
    Thanks so much again for your hep,

  • Tracking of changed records:sem6 -bps

    Hi friends,
    i want to track changes made to particular field cell, when it was changed and by whom..simply tracking history of changes made to records..
    i have how-to documents that is for tracking of changed records in Integrated planning as well as for SEM3.5(on BW3.5).
    Ours is SEM6.0 with BPS  ( BI7 system).  If anyone of you have, pls share.
    thanks,
    kumar

    HI Kumar,
    Even in BPS you will follow same methodolgy, create infoobjects for Uname, Timestamp and GUID (if needed). Then use a char derivation to derive those objects.
    Note : If you use time, each delta will create a new reord with new timestamp and delta value.

  • Creating an intersection table record

    I want to add an intersection table record and the related FK record at the same time. I have three tables with cardinality shown below:
    Restaurants 1:N RestaurantRatings 0..1:1 Ratings
    Thus, a restaurant can have zero or more customer ratings (i.e. restaurant reviews).
    We use an intersection table (i.e. "RestaurantRatings") because table "Ratings" is also used for rating food items, which involves another intersection table (not mentioned above) to keep track of the food
    ratings.
    I followed the instruction in the ADF Developers Guide 11g Release 1 (11.1.1) for the following sections:
    38.8 Controlling Entity Posting Order to Avoid Constraint Violations
    39.9 Creating a View Object with Multiple Updatable Entities
    Per section 38.8, I created the following override of EO method RestaurantRatingsImpl::postChanges for intersection table RestaurantRatings.
    public void postChanges(TransactionEvent e) {
    //If current entity is new or modified
    if (getPostState() == STATUS_NEW ||
    getPostState() == STATUS_MODIFIED)
    //Get the associated restaurant for this intersection-table row
    EntityImpl restaurants = this.getRestaurants();
    //If there is an associated restaurant
    if (restaurants != null)
    //And if it's post-status is NEW
    if (restaurants.getPostState() == STATUS_NEW)
    * Post the restaurant first, before posting this
    * entity by calling super below
    restaurants.postChanges(e);
    EntityImpl rating = this.getRatings();
    //If there is an associated rating
    if (rating != null)
    //And if it's post-status is NEW
    if (rating.getPostState() == STATUS_NEW)
    * Post the rating first, before posting this
    * entity by calling super below
    rating.postChanges(e);
    super.postChanges(e);
    Then I use RestaurantRatingsViewLink, in the "Oracle Business Component Browser", to create a new Ratings record that is linked to an existing Restaurants record. My debugging session reveals that line
    "this.getRatings();" returns null when I create a new Ratings record.
    Any ideas, or better examples for how to properly create an intersection table record or update a view object with multiple entities objects.
    Thanks,
    Travis

    Setting Composition on RestaurantRatingsRatingFk1Assoc didn't fix the problem. This association defines "Ratings.id" as the source and "RestaurantRatings.RatingId" as the destination.
    Using the Oracle Business Component Browser, I attempted to insert a new row in the ResataurantRatings intersection table. I get the following error:
    (oracle.jbo.AttrValException) JBO-27014: Attribute RatingId in AppModule.RestaurantRaitingsView1 is required.
    I suspect we can't use composition because we have two associations from intersection table "RestaurantRatings". That is, table "RestaurantRatings" has two foreign keys. One to table "Restaurants". The other to table "Ratings".
    Our RestaurantRatingsView has "Restaurant" as the master EO and "Ratings" as the detail EO. They are both set as "Updatable" in the view's "Entity Objects" tab.
    Is composition really usable in this situation? Is there a similar example?
    Travis

  • Is there a way to create guides within ruler guides or aligned to ruler guides?

    So I was wondering for my own sake if there was a way to create guides within ruler guides or have it align to ruler guides? I am working on this magazine where the layout has a ruler guides. Which is inside the margins. I'm guessing this is to ensure the content is safe and also leaving adequate room for folios and running heads. This leaves me with the inside of the ruler guide to create my own grid. I tried doing this by hand and it seems to work fine however I was wondering is there a way to align the guides/grid (columns and rows) to the ruler guides instead of the margin or page? This would be extremely helpful as doing it by hand is quite the task. I'm trying to personally see how many rows and columns I can get in for a verstatile grid that can be used for different sorts of layout. (although I guess the grid could too many rows and columns) Any help would be greatly appreciated.

    Is there a way to make it align to the ruler guides instead of the page and margin? example of what i'm talking about:

  • Can no longer play individual tracks within a Podcast on iTunes 11

    I have a good amount of podcasts that I subscribe to where there are tracks within the podcast. On my iPhone I can skip from track to track, and before upgrading to iTunes 11, I could do it in iTunes as well - basically would click the album artwork, and I could select track numbers from a drop down list. That drop down list doesn't exist anymore, and all I can do is fast forward, rewind, or skip to the next podcast episode.
    Anyone have similar problems or a solution? Thanks in advance.

    anyone have any ideas?

  • Create the user master records using the Enterprise Portal

    Hello gurus!!
    I'm configuring SRM 7.0 with EP.
    I'm configuring the organizational structure, and steps guide (pdf and Solution Manager ) are:
    1. Go to transaction SU01 and create an ABAP User. (SRMADMIN)
    2. Assign this user the administrator role /SAPSRM/ADMINISTRATOR
    3. As the administrator, creater the organizational plan
    4. Create the remaining organizational unit
    5. Using the Enterprise Portal application, Business Parter:Employee, create the user master records for the departmental managers.
    How I must create the user in Enterprise Portal? What user I have to use to log on in the Enterprise Portal application? Has the user to be integrated in the organzational structure??
    Thanks in advance!!!!
    Best regards.
    Maria.

    Hi,
    You can create users in WebDynpro application. You can also create users in USERS_GEN transaction.
    Regards,
    Masa

  • How to update purchase order when creating a new condition records

    Hi,
      We have the system configured so that whenever we update a condition record, a change pointer is generated. Then we the use of standard reports RMEBEIN4 and RMEBEIN, all open purchase order having that condition type is updated. However this only works when we update existing condition record. When we create a new condition record, this does not work even though the change pointer is created. Do the reports mentionned above works for the this case or another standard report that should be trigger.
    Thank you for your help

    hi,
    May be this is working for the conditions already existing in the info record for the PO's.  so when you have new condition record it updates only after you amend the PO with that condition and save it.
    Kiran

  • Web Service to Create a Document Info Record with attachments (e.g. PDF)

    Hello guys,
    we are looking forward to create a Web Service that should be able to create a Document Info Record on SAP ERP Application Server. As we don't have installed the SAP Standard Web Services on our SAP ERP ECC 6.0 system we will manually create a Web Service with the help of the standard BAPI_DOCUMENT_CREATE2.
    The current problem is that the Web Service based on the Standard BAPI can not upload Files (PDF or Word files) from the Users Client PC to the Application Server.
    Is there a possibility to Create a Web Service that can handle files and create DIRs on application server?
    Thanks a lot!!
    Regards,
    Christian

    Hello Natallia,
    Well, in this case you don't really need the CV01N transaction. This represents the user interface (UI), and you only need an interface (that is, an API), which in SAP is represented by a BAPI
    I'm not familiar with CRM, but I assume that at some point when saving a Service Contract, you have a BAdI, where you can check the status and insert some custom code.
    So, all you have to do is call BAPI_DOCUMENT_CREATE or BAPI_DOCUMENT_CREATE2 (if available on your installed version), with the required attributes (this can be master data, classification, custom data...). After this function is called successfully, you should receive the document key (DOKAR, DOKNR, DOKVR, and DOKTL). Which you can also save in the Attachments tab.
    Hope this helps,
    Tudor

  • How to create relationship between two records using MDM Java APIs

    Hi,
    I am trying to create relationship between two records using Java Apis. Please guide me in doing this.
    Regards,
    Niraj

    Hi Niraj,
    There is ModifyRelationshipsCommand:
    http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/data/commands/ModifyRelationshipsCommand.html
    Retrieve Relationship command:
    http://help.sap.com/javadocs/MDM/current/com/sap/mdm/schema/commands/GetRelationshipListCommand.html
    Also, please refer similar thread, MDM Java API and relationships.
    Hope it helps..
    Regards,
    Mandeep Saini

Maybe you are looking for

  • How do I get my desktop Mac to show an Autofill option on Firefox 8.0?

    After installing 8.0, I lost the Autofill feature from my toolbar

  • Date and time cannot be set

    I just bought Apple TV. The setting date and time thing is literally taking forever. As well, when I enter my iTunes name and password it tells me it's incorrect. How can I fix this??

  • Sound Blaster SB0680 64 Bit Driver And Applicat

    Hi All People?I need SB0680 64 Bit Xp Or Vista Driver And Application. I Wait Your Helpes.

  • Sql server not starting

    Hi I have only files from catalog DATA form my SQL Server 2008. After I installed sql server and replates file in katalog DATA server not starting. Where I have problem, what I need to do to work? thanks for any help best regards

  • Desktop app doesn't load the app links.

    Hi, When i start up the desktop app, the little blue "loading wheel" keeps on spinning forever. The text, file and Behance buttons sometimes work, but it all takes very long time and slows down my whole system. I work with 10.8.4, have 8 Gb ram and t