Examples of SMFTools


Examples of com.music.util.music.SMFTools

    public InputStream getPieceMusicXml(long id) throws IOException {
        Piece piece = dao.getById(Piece.class, id);
        try (InputStream is = fileStorageService.getFile(getMidiFilePath(id))) {
            ByteArrayOutputStream result = new ByteArrayOutputStream();
            Score score = new Score();
            SMFTools localSMF = new SMFTools();
            localSMF.read(is);
            SMFTools.SMFToScore(score, localSMF);
            score.setTitle(piece.getTitle());
            score.setNumerator(piece.getMetreNumerator());
            score.setDenominator(piece.getMetreDenominator());
            MusicXmlRenderer.render(score, result);
View Full Code Here

Examples of com.music.util.music.SMFTools

    public static void mainMusicXml(String[] args) throws Exception {
        InputStream is = new FileInputStream("C:\\Users\\bozho\\Downloads\\7743.midi");
        ByteArrayOutputStream result = new ByteArrayOutputStream();
        Score score = new Score();
        SMFTools localSMF = new SMFTools();
        localSMF.read(is);
        SMFTools.SMFToScore(score, localSMF);
        score.setTitle("foo");
        score.setNumerator(12);
        score.setDenominator(16);
        MusicXmlRenderer.render(score, result);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.