21
Dear opagust,
When you open Musescore, add some "Repeats and Jumps" and export it as a musicxml file, the following code can be found in the file. It seems that the more exotic directions are just a combination of <words> and <sound> tags:
<direction placement="above">
<direction-type>
<segno default-x="-8.00" relative-y="20.00"/>
</direction-type>
<sound segno="segno"/>
</direction>
<direction placement="above">
<direction-type>
<words relative-y="20.00">D.S. al Fine</words>
</direction-type>
<sound dalsegno="segno"/>
</direction>
<direction placement="above">
<direction-type>
<words relative-y="20.00">Fine</words>
</direction-type>
<sound fine="yes"/>
</direction>
Hope this helps.
Bart
37
Another option could be to resize the video files without changing the sound quality - if that is OK for you.
FFMPEG is a very good (command line) tool with which this can be accomplished very easily. This tools is used in the background of almost all current video applications.
http://ffmpeg.org leads you (today) to https://ffmpeg.zeranoe.com/builds/ where you can download the zipfile with the windows binaries and all the documentation.
After downloading, just extract the 3 files in the bin subfolder to a directory on your hard drive at your choice.
Usefull commands for resizing:
<dir>/ffprobe -i <source file> this shows the source file specifications (video and sound)
<dir>/ffplay -i <source file> -vf scale=640:-1 this plays the film while applying the video filter "scale" (needs width and height parameters)
<dir>/ffmpeg -i <source file> -vf scale=640:-1 <output file> this effectively creates a new "scaled" output file.
With this tools you can also change the video format (avi, mov, mkv, flv, ... ) into another format. Just specify a different video extension for the output file and it is automatically converted.
Bart
46
Jan-Frerk,
Someone in this forum once pointed me to a simple and effective solution that worked for me: grace notes
(Muted) grace notes (without ledger lines and some extra note spacing) let me "make" exactly what I needed, only the equal sign needs some special attention.
!NoteWorthyComposerClip(2.751,Single)
|Clef|Type:Treble
|Key|Signature:F#,C#|Tonic:D
|Note|Dur:8th,Grace|Pos:10|Opts:Stem=Up,Beam=First,NoLegerLines
|Note|Dur:8th,Grace|Pos:10|Opts:Stem=Up,Beam=End,NoLegerLines
|Note|Dur:4th,Triplet=First,Grace|Pos:10|Opts:XNoteSpace=3,NoLegerLines
|Note|Dur:8th,Triplet=End,Grace|Pos:10|Opts:NoLegerLines
|Note|Dur:8th|Pos:-1
|Note|Dur:8th|Pos:-2
|Note|Dur:8th|Pos:-4
|Note|Dur:8th|Pos:-3
!NoteWorthyComposerClip-End
Bart
48
Opagust,
The original dynamic is :
|Dynamic|Style:mp|Pos:15|Visibility:Never
After running the tool, this dynamic remains the same.
In your version this dynamic has been changed into
|Dynamic|Style:mp|Opts:Velocity=127,Volume=31|Pos:15|Visibility:Never
Also the modification in the Staffproperties does not go back into the file;
|StaffProperties|EndingBar:Section Close|Visible:Y|BoundaryTop:12|BoundaryBottom:24|Lines:5|WithNextStaff:Bracket,ConnectBars,Layer|Color:Default
|StaffProperties|Muted:N|Volume:100|StereoPan:64|Device:0|Channel:3
Again, after running the tool, this StaffProperties remain the same.
And in your version it becomes (what I expected)
|StaffProperties|EndingBar:Section Close|Visible:Y|BoundaryTop:12|BoundaryBottom:24|Lines:5|WithNextStaff:Bracket,ConnectBars,Layer|Color:Highlight 2
|StaffProperties|Muted:N|Volume:120|StereoPan:0|Device:0|Channel:3
I suppose for some - still unknown - reason, the tool does not write this modification back into the file on my system?
Bart