Skip to content

Latest commit

 

History

History
44 lines (25 loc) · 1.43 KB

readme.md

File metadata and controls

44 lines (25 loc) · 1.43 KB

Piano Video

Piano Video is designed to assist in the creation and analysis of data from videos featuring people playing the piano. Video footage is expected to be from an overhead perspective without significant rotation.

Usage

  1. Import the piano_video.py module:

    from piano_video import PianoVideo
  2. Initialize the module with the path to the video file. Ensure that the video file name is unique as it will be used for storing intermediate files:

    pv = PianoVideo("example.mp4")

Extracted Data Points

The following data points can be extracted using the initialized PianoVideo object:

  • pv.transcribed_midi: MIDI data generated during processing, stored as an interval tree.

  • pv.hand_landmarks: List of hand landmarks in the format [frame_id, left_hand, right_hand], generated by the Mediapipe Hands library.

  • pv.background: The estimated image of the piano without hands.

  • pv.keys: Position of the keyboard and each detected key with its corresponding MIDI ID.

  • pv.fingers: An adjusted MIDI representation with estimated fingerings.

  • pv.sections: Location of frames containing a keyboard as an interval tree.

Requirements

Ensure that FFmpeg is available in your system's PATH.

Install the required Python packages by running:

pip install -r requirements.txt