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 ;)
robcanning@eircom.net wrote:
now i get this:
;;; *****ERROR***** ;; Error in function LOAD-FOMUS-PLUGIN: ;; 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
David Psenicka dpsenick@uiuc.edu wrote:
Rob Canning wrote:
how do i output a musicxml-finale file?
this is what i'm trying:
init :output (:lilypond :view t); init :output (:musicxml-finale :filename "fomusxxxmmmmlll");
if you're specifying two values for :output, then one will override the other----try this if you want both outputs:
init :filename "/dir/xxxxx" ;; basename init :output (:musicxml-finale (:lilypond :view t))
you should get /dir/xxxxx.xml and /dir/xxxxx.ly
or this:
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 fomus-devel@common-lisp.net 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 fomus-devel@common-lisp.net 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
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
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
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"
Rob Canning wrote:
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
Rob Canning wrote:
*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
(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
Am 28.09.2006 um 23:47 schrieb David Psenicka:
Rob Canning wrote:
*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.