Midi files in FCE HD ?

Is there a way to import a midi audio file into FCE HD. When I try I get an error message saying it is an invalid file? thanks joanlvh

Hey joanlvh
If you have QT Pro simply open the MIDI file in QT Pro and then Export as an aiff. Thats it.
The quality of your MIDI file will be determined (besides the quality of the MIDI data) by the quality of your sound card. What a lot of the MIDI crowd do is they run the MIDI file through a sound module or tone generator which is a piece of machinery which converts the MIDI signal into a more life like /relaistic sound and then record it into their LINE IN on the computer.
But getting to your question, yes, it can certainly be done and done easily enough. QT Pro does it fine.

Similar Messages

  • Midi Files Don't Work In FCE..and I don't have Quicktime pro to export it

    Hi there,
    I am working on a project in Final Cut Express 1.0.1
    I have a MIDI sound file that will not import into the application. Also, I don't have quicktime pro to export that file to a mp3 or aiff.
    Does anybody know if their is a free plugin that will allow me to export my midi file or import it into Final Cut.

    Try this, it may work -
    Set iTunes Preferences > Importing > Import Using > AIFF Encoder
    Set the AIFF Encoder preferences to 16 bit, stereo, 48KHz
    Add the MIDI file to your iTunes library. This may convert your Midi file to AIFF.
    If not, once the MIDI file is in your iTunes library,
    Select the MIDI file in your iTunes library
    Go to the Advanced menu and select 'Convert to AIFF'
    Then export the AIFF file to your hard drive
    Then import the AIFF into FCE

  • Importing midi file from Sibelius

    Hello
    I've been trying to import a score I composed in Sibelius 6 into Logic Pro X. What happens is I have no control over the panning or volume; everything reverts back to it's original position after setting the pan and volume.  I had everything panned to center and volume equal on all tracks before I exported the midi file from Sibelius. When I first tried this, the dynamic markings in the score moved the faders up and down. I removed them, but still have the same problem. Any ideas?
    Thank you
    Michael

    Use the "Transform" window.
    Transform can be used to simply have a complex selection criteria, without actually modifying the data.
    With your region selected, in the transform window specify your selection criteria, for example "All NOTES with a velocity of 45 or less", and hit the "Select Only". This will select all notes in that region that make your criteria. Then use the cut/paste functions to move them to a new region.
    If you are unsure how the transform window works and need some more help, post back.

  • How can I stop midi files being played by the QT plugin in IE6?

    Hi
    Since reloading XP and QT 7.5 Pro, I have a problem I did not have before. In Explorer, my .mid midi files are associated with my preferred Karaoke player.
    However, when I click on a .mid link on a web page in IE6, it uses the QT plugin to play it, rather than my preferred player. I have check my QT preferences file types, and midi files are definately NOT associated.
    Firefox did the same, so I simply disabled the plugin, clicked a .mid link, and Firefox then asked me to choose a player. However, if I disable the plugin in IE6, when I click a .mid link, I just get a blank page and a baloon warning me the page is trying to use a disabled plug in. My only option at this point is to quit or re-enable the plugin.
    Can anybody please help?
    Thanks.
    Message was edited by: alan_dr

    In case anyone is interested, I managed to solve this. Basically I disabled the QT plugin, went into Windows media player and assigned midi files to it. Then I went into Explorer and switched the files back to use my Karaoke player. THen I unassigned midi in Media player and reenabled the QT plugin. Bingo!

  • How to store a mid file in byte[ ]

    I used this method to store the song but it does not seem to be working.
    public byte[] getSongAs_ByteArray() {
        byte[] data = new byte[50848];
        InputStream in = null;
        try {
          HttpConnection connection = null;
          Connector.open("http://www.ziyaaf.com/XML/girl.mid ");
          connection = (HttpConnection) Connector.open(
              " http://www.ziyaaf.com/XML/girl.mid");
              in = connection.openInputStream();
               DataInputStream dis = new DataInputStream(in);
          dis.readFully(data);
          in.close();
        catch (IOException ex) {
          System.out.println("::" + ex);
        return data;
    But if i use this method it works
    public byte[] loadSong() {
        byte[] data = new byte[50848];
        try {
          Class c = this.getClass();
          InputStream is = c.getResourceAsStream(" girl.mid");
          DataInputStream dis = new DataInputStream(is);
          dis.readFully(data);
          is.close();
        catch (IOException ioe) {
          ioe.printStackTrace();
        return data;
    But i want to load the song from a remote location
    And this is the method i used to play the mid file.
    ByteArrayInputStream b = new ByteArrayInputStream(getSongAs_ByteArray());
        try {
          player = Manager.createPlayer(b,
                                        "audio/midi");
          player.start();
        }

    onnector.open("http://www.ziyaaf.com/XML/girl.mid
    connection = (HttpConnection) Connector.open(
    " http://www.ziyaaf.com/XML/girl.mid");
    Firstly, you call open twice, you don't check for http errors, and on the first URL you have a space after the ".mid", and on the second URL your have a space before "http".
    And never ever use fixed size byte arrays!
    And why load the midi file in memory when you can play it directly from stream (specially if you read from file)?

  • Can no longer drop a MIDI file into iTunes library

    Using Tiger on a G4 iMac, I could drop a MIDI file into my iTunes library and convert it to an mp3 (or other format).
    Can't get this to happen now that I'm using Leopard on a new machine (see below) - or is there a different way of doing it in Leopard?
    With thanks,
    Gilly

    Answering my own question - had iTunes set to Show Duplicates - therefore couldn't see MIDI I dropped in.

  • End of file in a .mid file

    Does anyone knows what command is used to get the end of file in a .mid file?
    Pls advise.
    Thanks.

    Anyone knows?

  • Manually edit volume of MIDI file in Java

    Hey all, I'm trying to find a way to manually change the volume (velocity) of a midi file before playback, i.e. directly in the code. This is the code I'm using to play my midi files:
    import javax.sound.midi.*;
    import java.io.*;
    /** Plays a midi file provided on command line */
    public class MidiPlayer {
    public static void main(String args[]) {
    try {
    // From file
    Sequence sequence = MidiSystem.getSequence(new File("C:\\Sounds\\twinkleaccomp.mid"));
    // Create a sequencer for the sequence
    Sequencer sequencer = MidiSystem.getSequencer();
    sequencer.open();
    sequencer.setSequence(sequence);
    // Start playing
    sequencer.start();
    } catch (IOException e) {
    } catch (MidiUnavailableException e) {
    } catch (InvalidMidiDataException e) {
    How can I edit my code so that I can easily change the midi file's volume before I run and compile the code?
    Thank you, any help will be appreciated!
    PS: Sorry about the twin topics!

    Ravaa wrote:
    Hey all, I'm trying to find a way to manually change the volume (velocity) of a midi file before playback, i.e. directly in the code. This is the code I'm using to play my midi files:
    Thank you, any help will be appreciated!Gosh, I've looked through all of the MIDI references I have, and nothing talks about setting the MIDI file volume...probably because the velocity is set on each individual MIDIEvent...
    My best guess as to how to set the global volume for a MIDI file would be to loop through all of the MIDI events in the file and modify their velocities individually...that's the only thing I can come up with.

  • Can't create a new project in Logic pro . Goes straight to a midi file. Do I shut something down before trying to create a new project

    Can't create a new project in Logic pro . Goes straight to a midi file. Do I shut something down before trying to create a new project?

    When you open Logic, close the project that its automatically brought up (see CCT's answer above, which explains how you can change that behaviour, if you like - I usually want to listen to the last thing I was doing, but its your choice - and then File>New.
    So, yeah, you do have to close the currently loaded project first.

  • I am trying to import standard midi file that I created in Band in a Box into Logic Pro 9.  I can not get all the track to play with internal instrument sounds... only the piano track.  how can I get the others to play... drums, bass etc????   Help

    I am trying to import standard midi file that I created in Band in a Box into Logic Pro 9.  I can not get all the track to play with internal instrument sounds... only the piano track.  how can I get the others to play... drums, bass etc????   Help

    Don't drag the midi into an open Logic project. The tracks won't set up correctly.
    'Open' the midi file with Logic as if it were a Logic project. Then all the tracks will be set up so you can start editing them and applying better saved sounds and instruments, but you'll be at a starting place where you can hear what's going on.

  • How to play MIDI files on Firefox for Android?

    When I click on a link in a web page at points to a MIDI file (that has a .mid file extension), I receive a error stating that it cannot play the audio file. In the desktop version of Firefox, there typically is a way to associate external applications to execute "something reasonable" with the file. This presumably means that Firefox first downloads the file, and then executes the external command on the temporary downloaded file to view or play the file. Does it work similarly in Firefox for Android?

    Hi bgoodr,
    It is a similar process, but different functions on the version of Firefox. For further investigation do you happen to have an example where this type of file can be downloaded and what app that youare using to open the .midi file?

  • Can't import midi files in garageband 11 after lion install?

    I can't import or open midi files in garageband 11 ,tried reinstalling from my app dvd, will not allow, it is grayed out was using snow leopard and updated
    to lion and thats when it quit also my quicktime pro 7 will no longer export midi.

    Same here. Now that I think of it, I recently put in Logic Studio 8 and Garageband didn't open on it's own anymore. That was iLife'06. I then up-graded to iLife '08 and Garageband still doesn't open to a new project. The only way I can still open Garageband is to make a "template" out of one of their demos, then when that opens I strip the tracks out and start with new ones. By the way, I just tried to install XLN Audio's Addictive Drums. They work in Logic Studio, but do not open at all in Garageband. Error message says the plug-in is not "valid". So much for Garageband being easier than Logic.

  • What program should I use to transfer Music midi files to MP3 files using Lion OS10.8.5?

    I'm having a problem transferring MIDI music files from i-Tunes into use on i-Movie6? I've recently upgraded to Lion OSX 10.8.5. I never had a problem previously and I'm now wondering if I need a new program to transfer these Music files for use in i-Movie? Thanks

    Audio files from Midi. Topic Jan., 2012: "iTunes no longer recognizes midi files how can I play and convert them?" - https://discussions.apple.com/thread/3666447

  • Playing .MOV MIDI files in iTunes 10.4

    In November last year I saved hundreds of old piano roll MIDI files in QuickTime format and added them to my iTunes library. They played quite happily in iTunes on the Snow Leopard OS.  I have just updated to Lion and now the new version of iTunes 10.4 will not play them. I get this error message:
    This movie requires QuickTime, which is not supported by this version of iTunes.
    Why would they remove functionality from iTunes in this way and no longer support MOV files in iTunes? Seems a retrograde step to me.  Does anyone know what I can do to restore my functionality. I spent days getting the metadata right for these files and do not want to lose my work.
    Thanks in advance for any suggestions or a solution.
    Steve

    Ah, I have resolved this myself by opening iTunes in 32-bit mode. Now plays these midi MOV files okay. How annoying that they did not provide inbuilt support for this in 64-bit in the Lion release. I assume no-one at Apple considered it a possibility...

  • Itunes 10.7 not playing MIDI files

    ITunes 10.7 is not playing midi files (.mid).  I often play MIDI files and convert them to MP3 files using iTunes. Has Apple stopped supporting playing and converting MIDI files in iTunes? 
    When I try to open a MIDI file in Quicktime 10.2, it also does not play MIDI files. I do get a message that Quicktime 7 is required to play midi files.
    I sure hope this is changed in future updates of  iTiunes and Quicktime.
    Tom R.

    I don't think this is the complete picture...  I have tried importing midi files into iTunes 10.7 on three different computers, and it worked on one, not the other two.  The differentiating factor? Seems to be the operating system:  it worked on the one with Snow Leopard but not on the ones with Mountain Lion.  I don't have a computer with Lion to test on, unfortunately.  This might be an actual bug, or temporary omission, from the build for Mountain Lion.  Worth filing a bug report, anyway - since it's free and the more people report it the higher priority we might hope it gets?  http://bugreport.apple.com/

Maybe you are looking for

  • Why are my images way smaller when exporting out of Aperture?

    I import my photos, work on them...it's going well...but, once I export them out to put them on a external harddrive, the photos are going from approx. 3 mb at 300dpi...to about 700kb-1mb at 300 dpi. I'm exporting them as jpeg at full size. I didn't

  • Bridge between JCAPS 5.1.3 and JCAPS6 using STC JMS

    Hi Would be glad if someone could help me configure Glassfish (that we use developing applications in JCAPS6) to use STC JMS. Do not really know how to setup the JMS Resources to access the message servers that we have configured in JCAPS 5.1.3. I tr

  • Pages - Numbers deletes merge function!

    WHY did Numbers and Pages updates kill the merge function I use frequently? Guess I am going back to Word and Excel, and have many documents and spreadsheets to convert.  Very disappointing.

  • ICal event alerts won't stop repeating

    After the update to Lion 10.7.3, I get hourly repeating alerts from iCal. I've dismissed them but they keep on coming. And the list of the alerts keeps expanding each day. iCal is also repeating past alerts in the list. In addition, the alerts pop up

  • ToDos made from a Note show up as belonging to Birthdays

    I'm trying to get a little more organized an embrace the getting things done tools in Mail. I can make a To Do and it shows up just fine. I can change the calendar to which it belongs, see it in iCal, change the priority, etc. etc. My problem occurs