• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

midi sounds creation tool?

 
Ranch Hand
Posts: 401
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know of a decent midi creation tool that will create midi sounds compatible with most java mobiles?

(I'm currently using MidiEditor from monkeybongo.com. The sounds I've created with it work fine in my midlet on SE k800i, but not on SE k750i...)

Cheers,
James
 
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you which midi format you are using? 0,1 or 2? I have had a similar problem in the past. Converting between 0 and 1 usually solved the problem.
[ September 14, 2007: Message edited by: Rashid Mayes ]
 
James Hodgkiss
Ranch Hand
Posts: 401
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Rashid, can you enlighten me a bit more on the midi format. I'd guess that is the problem as I wasn't even aware of midi formats...

I'm using Anvil Studio to create my midi files. I've gone into 'Preferences' and it has 'Save song files in MIDI1 format' unticked. Should I tick it?

There's also a heap of other options that might be relevant - e.g., 'Record and Play SysEx MIDI Events'... Can you advise?

Which midi composer do you use?

Thanks,
James
 
Rashid Mayes
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I am not an expert on the topic and would suggest the midi.org or the Wikipedia articles for General MIDI and MIDI.

I looked at the spec for the k750 on developer.sonyericsson.com and it says that the media player supports "G-MIDI (level 1 with 40 voices polyphony)" which is the same as the k800.

There may some Java ME specific documentation on the site. I would try saving it as MIDI1 w/o SysEx. I would also try out a small file.

This is what we did when we had a problem playing midi files on certain devices. We used a Java program to convert our type 1 files to type 0 and packaged only type 0 files with the application. We also ran into problems with the size of the files. Some larger midi files would not play.

I found this converter searching today:

http://www.jsresources.org/examples/MidiConverter.html

I posted the code we used here:

http://www.worlddeveloper.org/www/forumtopicview.html?fid=185&categoryId=36&fpn=0

I use Reason 2.0 (http://www.propellerheads.se) and sometimes Adobe Audition.

You may get a better answer on the SE site.
 
James Hodgkiss
Ranch Hand
Posts: 401
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Many thanks Rashid - much appreciated.
 
reply
    Bookmark Topic Watch Topic
  • New Topic