Discussion:
musicxml-finale output? ignore me!
Rob Canning
2006-09-21 12:56:45 UTC
Permalink
sorry about the noise!
ignore previous messages - got it figured - was running into trouble with the line break so needed to put an extra set of brackets around the the whole line...
sorry ;)
;;; *****ERROR*****
;; Plugin MUSICXML-FINAL is not registered or does not exist
i notice that the plugin folder inside the fomus folder is empty?
is this me doing something wrong or somthing missing in fomus?
thanks
rob
how do i output a musicxml-finale file?
init :output (:lilypond :view t);
init :output (:musicxml-finale :filename "fomusxxxmmmmlll");
if you're specifying two values for :output, then one will override the
init :filename "/dir/xxxxx"
;; basename
init :output (:musicxml-finale (:lilypond :view t))
you should get /dir/xxxxx.xml and /dir/xxxxx.ly
init :filename "/dir/xxxxx"
init :output ((:musicxml-finale :filename "anotherfilename.xml")
(:lilypond :view t))
you should ge t /dir/anotherfilename.xml and /dir/xxxxx.ly
_______________________________________________
fomus-devel mailing list
http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel
--------------------------------
www.robcanning.utvinternet.com
+ 44 (0)20 77390206
--------------------------------
-----------------------------------------------------------------
Find the home of your dreams with eircom net property
Sign up for email alerts now http://www.eircom.net/propertyalerts
_______________________________________________
fomus-devel mailing list
http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel
--------------------------------
www.robcanning.info
--------------------------------

-----------------------------------------------------------------
Find the home of your dreams with eircom net property
Sign up for email alerts now http://www.eircom.net/propertyalerts
David Psenicka
2006-09-21 15:56:06 UTC
Permalink
_______________________________________________
fomus-devel mailing list
fomus-devel-***@public.gmane.org
http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel
David Psenicka
2006-09-26 17:14:03 UTC
Permalink
Some more fixes, additions:

v0.2.10
Squashed a few bugs
:notes keyword in .fms files for specifying chords
AUTO-DYN-NODUP setting and cleaning repeated dynamic marks (more
user control to be added)
OFF tags in .fms file for shifting offsets over sections of file
FOMUS uses ASDF (and ASDF-Binary-Locations) to determine where
plugin .fasl files are placed
Changed some setting names
Fixed LilyPond backend bug involving alternate noteheads and grace notes
Added MARKS slot to percussion instrument definition
Added some more LilyPond settings
Straightened out deffomusplugin and made it look more like defpackage
Fixed bug with beaming in compound meters
Rob Canning
2006-09-28 20:00:28 UTC
Permalink
is this a bug or me?!

(note 1 :off 0.125 :dur 0.125 :note (66 71));


/~) # fomus /root/pd.txt
dynebolic
"/mnt/hd4/2/canning_PhD/canning_NOTATION_ENGINE/fomus-0.2.10/plugins/ads.lisp"
;; Loading input file "/root/pd.txt"...
;; Formatting music...
; Saving debug file "/tmp/fomus.dbg"...
; Checking types...
;;; *****ERROR*****
;; Error in function CHECK-TYPE*:
;; Found (66 71), expected REAL or valid note/accidental symbols in
the form X, (X X ...) or (X (X X) ...) in NOTE slot of note at offset 0.125



thanks

rob
Rob Canning
2006-09-28 20:19:40 UTC
Permalink
i cut the error out of the last mail by accident:

*WARNING: Can't register plugin file
*"/mnt/hd4/2/canning_PhD/canning_NOTATION_ENGINE/fomus-0.2.10/plugins/ads.lisp"
Post by Rob Canning
is this a bug or me?!
(note 1 :off 0.125 :dur 0.125 :note (66 71));
/~) # fomus /root/pd.txt
dynebolic
"/mnt/hd4/2/canning_PhD/canning_NOTATION_ENGINE/fomus-0.2.10/plugins/ads.lisp"
;; Loading input file "/root/pd.txt"...
;; Formatting music...
; Saving debug file "/tmp/fomus.dbg"...
; Checking types...
;;; *****ERROR*****
;; Found (66 71), expected REAL or valid note/accidental symbols in
the form X, (X X ...) or (X (X X) ...) in NOTE slot of note at offset 0.125
David Psenicka
2006-09-28 21:47:02 UTC
Permalink
Post by Rob Canning
*WARNING: Can't register plugin file
*"/mnt/hd4/2/canning_PhD/canning_NOTATION_ENGINE/fomus-0.2.10/plugins/ads.lisp"
This means it can't compile the ads.lisp plugin for some reason or
another (my guess is it can't load the "iterate" dependency that it
needs)--this shouldn't cause problems or break anything
Post by Rob Canning
Post by Rob Canning
(note 1 :off 0.125 :dur 0.125 :note (66 71));
I made the keyword :notes for chords or lists of notes, since it's also
possible to specify accidentals or lists of possible accidentals, and
since these go into lists as well, parsing these could get confusing...
:notes should only work in the input files
Kilian Sprotte
2006-10-04 11:33:23 UTC
Permalink
Post by David Psenicka
Post by Rob Canning
*WARNING: Can't register plugin file
*"/mnt/hd4/2/canning_PhD/canning_NOTATION_ENGINE/fomus-0.2.10/
plugins/ads.lisp"
This means it can't compile the ads.lisp plugin for some reason or
another (my guess is it can't load the "iterate" dependency that it
needs)--this shouldn't cause problems or break anything
I have changed this, so the actual error message will be additionally
displayed below the warning.

Loading...