Giter Club home page Giter Club logo

Comments (4)

melanchall avatar melanchall commented on June 19, 2024 1

Hi Thomas,

Yes, you need to reduce time divisions of both files to common value. You can take either ticks per quarter note of first file or second one. Or you can set new value that will cause minimum rounding error on delta-times processing.

I have plans on MIDI file merge tool, so thanks for your question. I'll increase priority of this task.

Max

from drywetmidi.

melanchall avatar melanchall commented on June 19, 2024 1

@unitybru Thanks for the code snippet!

Please note that this code will work only for files with the same time division and tempo. I still have plans on MIDI files merger tool, but currently I'm busy with a big task about supporting macOS in Devices API of the library.

Merging MIDI files requires more work in general case than it can be supposed :)

from drywetmidi.

FischertBilligheim avatar FischertBilligheim commented on June 19, 2024

Hi Max,
I realized the functionality this evening in my application- and it works.
Maybe - as you mentioned - you can realize it in the library in the future…..

from drywetmidi.

unitybru avatar unitybru commented on June 19, 2024

+1 for the ability to stitch MIDI files more easily.

For those who find this thread, here is how I did it. I had a list of MIDI files that I needed to append one after the other. The trick is to shift things before adding the chunks.

var fileNameOut = "myoutput.mid";
var midiFileOut = new MidiFile()
{
	TimeDivision = midiFile.TimeDivision // copied from master file
};

// Add all parts after shifting them
long addedSoFarMicroseconds = 0;
foreach (var midiPart in lsToWrite) // lsToWrite is a list of MidiFile objects
{
	var currentDuration = midiPart.GetDuration<MetricTimeSpan>();
	midiPart.ShiftEvents(new MetricTimeSpan(addedSoFarMicroseconds));
	midiFileOut.Chunks.AddRange(midiPart.Chunks);
	addedSoFarMicroseconds += currentDuration.TotalMicroseconds;
}
midiFileOut.Write(fileNameOut);

from drywetmidi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.