ワンクリックで
javafx-midi-visualization
Visualize MIDI notes in JavaFX with piano rolls, waterfalls, note timelines, and chart-based views.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Visualize MIDI notes in JavaFX with piano rolls, waterfalls, note timelines, and chart-based views.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build JavaFX 3D modeling tools and print/export workflows with isolated geometry generation and preview rendering.
Choose and integrate mature third-party JavaFX control libraries for forms, productivity widgets, theming, and developer workflow support.
Build JavaFX terminal emulators or shell-style console panes with background process I/O, ANSI handling, and safe FX-thread updates.
Build node-based JavaFX workflow editors, graph canvases, and visual programming surfaces with clean model separation.
Animate JavaFX UIs with Timeline, Transition, Canvas, and AnimationTimer-based render loops.
Manage the JavaFX Application lifecycle, primary stage setup, startup sequencing, and shutdown behavior.
| name | javafx-midi-visualization |
| description | Visualize MIDI notes in JavaFX with piano rolls, waterfalls, note timelines, and chart-based views. |
| triggers | ["javafx midi visualization","midi piano roll javafx","midi waterfall javafx","midi note timeline javafx"] |
| compatibility | {"java":"17+","javafx":"21+"} |
| category | ui-advanced |
| tags | ["midi","visualization","piano-roll","timeline","charts"] |
| metadata | {"scope":"repository","maturity":"starter"} |
| allowed-tools | ["view","rg","apply_patch"] |
Use this skill when MIDI events should become visible: falling-note displays, piano rolls, channel views, or chart-driven music analyzers.
import javafx.animation.AnimationTimer;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
public class MidiRollView extends StackPane {
private double noteX;
public MidiRollView() {
var canvas = new Canvas(640, 240);
var gc = canvas.getGraphicsContext2D();
AnimationTimer timer = new AnimationTimer() {
@Override
public void handle(long now) {
noteX = (noteX + 2) % canvas.getWidth();
render(gc, canvas.getWidth(), canvas.getHeight(), noteX);
}
};
timer.start();
getChildren().add(canvas);
}
private void render(GraphicsContext gc, double width, double height, double x) {
gc.setFill(Color.BLACK);
gc.fillRect(0, 0, width, height);
gc.setFill(Color.LIMEGREEN);
gc.fillRect(x, 60, 24, 100);
}
}
AnimationTimer or batched FX-thread updates to keep MIDI visualization smooth.javafx-midi-device-integration when the view reacts to live incoming MIDI
traffic, and with javafx-data-visualization-dashboards when charts complement the piano roll.