Create and edit mp3 CDs of my trainings

Please advise software I should use for simple editing to create mp3 CDs or DVDs of my trainings to give to my students. I own Logic Pro and of course have Garage Band. Should I use one of these programs or buy another? And what about printing onto the CDs the topic to give a professional looking final product?

GB --or use iMovie if you want to put some text slates on the program.

Similar Messages

  • How to create and edit a .ini file using java

    Hi All...
    Pls help me in creating and editing an .ini file using java...
    thanks in advance
    Regards,
    sathya

    Let's assume the ini file is a mapping type storage (key=value) so lets use Properties object. (works with java 1.4 & up)
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.Properties;
    public class Test {
         private static Properties props;
         public static void main(String[] args) throws IOException {
              File file = new File("test.ini");//This is out ini file
              props = new Properties();//Create the properties object
              read(file);//Read the ini file
              //Once we've populated the Properties object. set/add a property using the setProperty() method.
              props.setProperty("testing", "value");
              write(file);//Write to ini file
         public static void read(File file) throws IOException {
              FileInputStream fis = new FileInputStream(file);//Create a FileInputStream
              props.load(fis);//load the ini to the Properties file
              fis.close();//close
         public static void write(File file) throws IOException {
              FileOutputStream fos = new FileOutputStream(file);//Create a FileOutputStream
              props.store(fos, "");//write the Properties object values to our ini file
              fos.close();//close
    }

  • Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    If you just mean, can I close it, sure. In Reader XI click the Tools button to close or reopen it.

  • How to create and edit anomalous tables in DIAdem? Such as the example list.

    How to create and edit anomalous tables in DIAdem?
    Can the tables  be edited as in MS Word?
    帖子被yangafreet在08-21-2007 10:28 PM时编辑过了
    Attachments:
    table example.doc ‏26 KB

    Hi yangafreet,
    There is no way I know of to create a DIAdem table that looks like the table in your Word document.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • BAdI for RMWB u2013 Create and Edit recipes

    Hi Gurus,
    I am looking for BAdI or User Exit - RMWB u2013 Create and Edit recipes .
    My scenario is somethng like:
    Need to specify with the logic in order to execute the check on the recipes before they are being transformed, i.e. method has to get triggered when system status in the Recipe is to be changed from In-Process (ISTATUS = u201CI6000u201D) to Processing closed/Completed (ISTATUS = u201CI6001u201D) or Released (ISTATUS = u201CI6003u201D)
    Please suggest any.
    Many Thanks,
    Madan

    Hi Roland,
    Thank you !!
    I can use the method "CHECK_STATUS_CHANGE", it is indeed getting triggered.
    Although I have a query regarding the usage of the same method.
    When I go ahead and create new custom implementation, i need to de-activate the existing standard implementation - IMPL_RCP_VAL_CHECK and activate the newly created custom implementation.
    When I do that the code inside the standard method - CHECK_STATUS_CHANGE will be gone (since i will be using the custom implementation and adding my code inside the method).
    So can you please suggest how to do the Impact analysis on this one.
    Many Thanks,
    Madan

  • Create and Edit with single button

    Hi Experts
    I am working in jdev 11.1.1.3.0
    I have Employee table and i need to create Depart information for that employee. Here i am using single button for both create and edit.
    Can you suggest me the approach.

    I tried the approcah what describe in the below link
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/45-decision-based-method-outcome-169187.pdf
    But in my case my task flow is
    edit
    Method call----> Router-------------Depart.jsff
    |
    |
    CreateInser
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
    <task-flow-definition id="emp-deprtment-config">
    <default-activity id="__11">navigateSrvChar</default-activity>
    <input-parameter-definition id="__8">
    <name id="__9">bidId</name>
    <value>#{requestScope.bidId}</value>
    <class>oracle.jbo.domain.Number</class>
    </input-parameter-definition>
    <view id="deprtment">
    <page>/jsffs/emp/deprtment.jsff</page>
    </view>
    <method-call id="navigateSrvChar">
    <method>#{DepartmentBean.editOrCreate}</method>
    <outcome id="__17">
    <fixed-outcome>navigateSrvChar</fixed-outcome>
    </outcome>
    </method-call>
    <method-call id="CreateInsert">
    <method>#{bindings.CreateInsert.execute}</method>
    <outcome id="__28">
    <fixed-outcome>CreateInsert</fixed-outcome>
    </outcome>
    </method-call>
    <router id="router1">
    <case>
    <expression>#{pageFlowScope.navigation == 'edit'}</expression>
    <outcome id="__18">edit</outcome>
    </case>
    <case>
    <expression>#{pageFlowScope.navigation == 'create'}</expression>
    <outcome id="__19">create</outcome>
    </case>
    </router>
    <control-flow-rule id="__23">
    <from-activity-id id="__24">navigateSrvChar</from-activity-id>
    <control-flow-case id="__27">
    <from-outcome id="__26">navigateSrvChar</from-outcome>
    <to-activity-id id="__25">router1</to-activity-id>
    </control-flow-case>
    </control-flow-rule>
    <control-flow-rule id="__29">
    <from-activity-id id="__30">CreateInsert</from-activity-id>
    <control-flow-case id="__32">
    <from-outcome id="__31">CreateInsert</from-outcome>
    <to-activity-id id="__33">deprtment</to-activity-id>
    </control-flow-case>
    </control-flow-rule>
    <control-flow-rule id="__6">
    <from-activity-id id="__7">router1</from-activity-id>
    <control-flow-case id="__12">
    <from-outcome id="__13">edit</from-outcome>
    <to-activity-id id="__10">deprtment</to-activity-id>
    </control-flow-case>
    <control-flow-case id="__15">
    <from-outcome id="__16">create</from-outcome>
    <to-activity-id id="__14">CreateInsert</to-activity-id>
    </control-flow-case>
    </control-flow-rule>
    <use-page-fragments/>
    </task-flow-definition>
    </adfc-config>
    but i am getting error like " The ADF Controller cannot find metadata for activity '/taskflows/emp/emp-deptment-config.xml#emp-deptment-config@router1'."
    any inputs could be highly appreciate
    Edited by: user642703 on Oct 20, 2011 5:33 AM

  • Video creating and editing software

    Does anyone have any good suggestions for video creating and editing software. I'm talkin about taking videos from my digital camera and insering them, adding music over the top, maybe some cool transition effects. I don't think that imovie will do it???

    Hi
    I don't see why iMovie shouldn't, ask the people in the iMovie Forum:
    http://discussions.apple.com/category.jspa?categoryID=141
    Steve

  • How can I exchange my pc created documents on Excel, Word, and PowerPoint with my mac and my Pages, Numbers and Keynote created content with my pc?  I need to create and edit between both.

    How can I exchange my pc created documents on Excel, Word, and PowerPoint with my mac and my Pages, Numbers and Keynote created content with my pc?  I need to create and edit and exchange between both types of operating systems.

    Your Windows system will not open any Pages, Numbers or Keynote documents. No applications exist for Windows that can open those formats. You will need to export your documents in Word, Excel and PowerPoint formats, respectively, before you'll be able to view and edit the documents on your Windows system. The iWork documents can natively open Word, Excel and PP documents, though there are limitations on what can be imported (for instance, Numbers does not support all possible Excel functions). Consult the documentation for the relevant iWork application for details on importing and exporting.
    If you are asking how to get the documents from one system to the other, then there are several ways to do that, including file sharing, using an external drive (hard drive, USB flash drive), or emailing the documents to yourself. Which would be best for your situation I can't say without more details about your usage.
    Regarsd.

  • Create and edit a PDF file

    Hi,
    Still very new on the Mac - how do I create and edit a pdf file on my iMac?
    Thanks for any info.

    Creating a PDF is really simple. From any application choose the print command (Command P) and in the lower left of the box you will see PDF, click PDF and then choose what you want to do. It will look similar to:
    For editing PDF files you can do some basic annotation editing using the Preview app which you will find in your Applications folder. However if you want to do more sophisticated editing then you will need to purchase an editor from the Mac App Store. Open the store type PDF Editor in the search field and you will find quite a few to choose from ranging from $2.99 to $99.99 depending on your needs.

  • Is there a way to create and edit a video in portrait mode / 9:16 in Premiere Elements 12 or 13. Playback on an iPhone in portrait position.

    I'm editing iPhone app video for posting as the first screen in the Apple app store. Required size for the video is 750:1334, 9:16. I there a way to setup the initial video in portrait mode? Many posts for how to rotate a specific clip, but I need the whole video in portrait position. How to accomplish this? I'm using Windows 7 and Premiere Elements 12 and now 13.

    LaurieFrick
    Thanks for giving this portrait Edit area monitor shape a look.
    I have Windows 7 64 bit and Windows 8.1 64 bit and have done the work using Premiere Elements 12/12.1 on Windows 7 64 bit.
    Here is a step by step
    Find the DSLR [email protected] file
    Local Disk C\Program Files\Adobe\Adobe Premiere Elements 12\Settings\SequencePresets\NTSC\DSLR\1080p\
    And, in that 1080p Folder is the DSLR 1080p30@ 29.97.sqpreset file that you seek.
    1. Copy the
    DSLR 1080p30@ 29.9.sqpreset fileI
    and paste it to the computer desktop in a newly created folder named 1920p.
    2. Open the 1920p Folder and edit the ..sqpreset file in Notepad.
    To do that right click the .sqpreset, and, from the pop up, select Open With and then Notepad.
    3. In the Notepad document, you are going to edit in only 2 places for now, switching 1920 and 1080 to 1080 and 1920 at the top and bottom
    sections of the Notepad document.
    Then go specifically File Menu/Save of the Notepad document and hit Save.
    4. At this point, you have the edited.sqpreset file in the 1920p Folder on the computer desktop.
    (Change the name of the edited .sqpreset file so that it = DSLR [email protected])
    Move the 1920p Folder from there to add it to the 1080p Folder, the location where you found the original .sqpreset file that you edited.
    Close out of there.
    5. Back in the Premiere Elements 12/12.1, manually set the project preset to the new project preset
    6. When you import your 1080 x 1920 9:16 video file into the project and drag it into the Timeline, you should see
    Note that there is no orange line over that Timeline content, indicating that you are seeing
    the best possible preview of the image.
    7. As I wrote before,
    But, here is the hang up. If I render the Timeline content to get the best possible preview at the Edit level, the video in the Edit area monitor
    squeezes in resulting in black borders to the left and right of the video image on screen.
    But, otherwise I found I had no problems editing or exporting, just had to keep away from Timeline rendering for previewing after an edit. Need to find the missing ingredient for 100%.
    I will be writing this up in my blog in a more organized fashion including how I got the project preset description in Change Settings to agree with the changes. Probably I will do that in the morning.
    ATR

  • PDF Create AND Edit

    I have tried the CreatePDF for Android and swiftly asked for refund.
    I expected it to be able to edit PDFs as well as convert doc etc.
    Only now do I see the weasel words meaning that it only edits pdfs that it creates. Grrrrrrrrrr!
    15 minutes is not long enough to evaluate an app - I am not throwing 9€ away so lightly.
    I also expect it to up and download from Google Docs - but did not have the time to check.
    Come on Adobe - you can do better. Look at all the negative reviews.

    What version of Acrobat and was the form prepared in Acrobat or Designer. Typically you would just enable the appropriate form field type and then select the fields and edit the properties to change the background.

  • Importing and Editing MP3's

    Hello. Garageband just isn't intuitive enough for me to figure out and the help file wasn't much help. I'd like to import an MP3 and edit it in Garageband. Can someone point me in the right direction as to how to do this?
    Thanks;
    Henry

    Thanks all, the tips helped. It makes sense now, but I really didn't think it was as intuitive as let's say Quicktime was for editing video.
    I find GB to have as simple a user interface as is possible, considering all the capabilities and options it has built into it (especially w/ GB 4). You'll be surprised how quickly you'll learn how to do all kinds of things with it.
    Thanks again for the assist, take care.
    Glad to help, Henry.

  • Creating and Edit Order in Web Dynpro (seperate window or view?)

    Hi,
    I have just done with Web order creation in web dynpro and is going to start on Edit now. Should I have a seperate window for Edit or should I put it together in the same window as Create order?

    Hi Jackson,
    Most of the time for such kind of requirements it is generally prefer to have a seperate view for edit and that is being called using the plugs from the main screen.
    The flow will be like this:
    View 1 (main View having data, Fieds for editing are disabled)  -
    > Fires Plug to Edit view -
    > Edit View ( With all fields enabled which you want for editing).
    In kind of a design the main advantage is, you can directly keep the required nodes in the component controller and map these nodes in main view and edit view, both. Without even caring for any data flow.
    Data flow will be automatically be taken care by the component controller. The only one thing which needs to be handled is the UI elements enable and disable property. Because in the case of the main view you need to keep the disbale property of most of the UI element as True (as you don want user to edit anythign in this main view). In the edit view the disable property of same UI elements will be set to False, as used can edit any thing in this edit view.
    If you keep this kind pf approach one more added advantage is that you can pass various parameters in the plug function. So if you want to handle something on the bases of sone flag etc then you can pass those parameters in the plug method.
    However, as replied earlier, the decision is purely based upon your requirement. If the requirement is to show the edit screen as a Pop-up then you can help it!! Go with it..
    I hope this will solve your issue. Please revert back if you need any other information.
    Thanks and Regards
    Pravesh

  • What software do I need to create and edit PDFs?

    Hello,
    I am new to this Software.
    I have just started a Marketing Company and i want to create and design PDF's to add to my website and also attach links to them, when viewing. I also want to track the analytics of people who read them etc.
    What is the best Software to use please? Would it be Adobe Acrobat XI?
    Regards,

    Hi oliverp56269772,
    That is definitely what you need! See this page for a comparison between Acrobat Standard and Pro, to help you determine which one is right for you: Adobe Acrobat XI
    You're welcome to try Acrobat for free for 30 days. See http://www.adobe.com/products/acrobat.html to download the free trial.
    Best,
    Sara

  • Problem creating and editing contacts in iOS 5.0.1 on iPhone 4

    Just upgraded my iPhone 4 to iOS 5.0.1 and cannot create new contacts starting from my existing contacts list nor can I edit any existing contact. The "edit" icon is not there. Any reason why? Was OK before the "upgrade".

    Exact same problem. 
    I have tried restoring phone, restarting phone.  Many times....
    When I try to sync, a box comes upsaying "iTunes could not sync contacts to the iPhone because thre contacts are in use by the iPhone".  I have NOT got contacts open.  I have closed contacts AGAIN to be sure by double hitting the big button at the bottom, then closing the app by holding it down then cancelling it.
    None of these work.
    Any new ideas??

Maybe you are looking for

  • Error While installing the NetWeaver Instance

    When I am installing 'SAP NetWeaver Suite'the below error came, can someone help me out on this below error? MOS-01011 'C:\usr\sap\BWI\SYS\exe\run/sapstartsrv.exe' returned with '-1'. The J2EE server is up unrunning @ the installing the Netweaver ABA

  • Itunes 9.2 not installing

    I get an "Installation Complete" message with no actual updated version. The itunes in C:\Program Files\iTunes was the old version as well. Now my touch is completely useless. I also tried uninstalling all apple applications, rebooting, then reinstal

  • How can I avoid image 'distortion' when saving jpegs from Photoshop?

    I've created a logo with a transparent background and saved as an eps in Illustrator CS3.  To create a jpeg I then opened opened the eps in Photoshop CS3, set the resolution at 300ppi and then saved the image as a jpeg.  The image views ok on screen

  • SO document flow not updated with PR no created

    Hi All, A Purchase Requisitions is created from SO for a line item, i can see the PR generated in report ME5A but not in document flow. Is it a standard behavior or i'm missing something ?? Regards Abhilash

  • Bid Invitation: Multiple responses desired

    I am working with a client on a SRM Bidding Engine Blueprint. It is important that the bidder be allowed receive usually 3 bid responses per vendor, each with seperate terms and conditions. (i.e. different rates sought depending on timing and shippin