如果我们有一个midi文件,并且通过某种方法获得.musicxml文件,比如使用MuseScore。我们如何使整首歌就像我们按下支撑踏板(钢琴)?我们能在全球范围内这样做吗?还是必须为每一个音符加上它?
发布于 2022-04-27 02:31:19
我找到了一个答案,在没有支撑的情况下拥有一首钢琴,然后在整首歌中添加“支持”,然后对这两个.musicxml文件进行区分,我在这部分中找到了以下内容:
<part id="P1">
<measure number="1" width="125.73">
<print> ... </print>
<attributes> ... </attributes>
<direction placement="above"> ... </direction>新增加了以下内容:
<direction placement="below">
<direction-type>
<pedal type="start" line="yes" default-y="-65.00"/>
</direction-type>
<staff>1</staff>
</direction>下面还有一个类似于上面的<staff>2</staff>,但是staff被更改为2,这应该是Bass的工作人员使用的。
https://stackoverflow.com/questions/72007020
复制相似问题