timidity

timidity — Midi Synthesizer Element

Synopsis

                    GstTimidity;

Description

This element renders midi-files as audio streams using Timidity.

Example pipeline

gst-launch filesrc location=song.mid ! timidity ! alsasink
This example pipeline will parse the midi and render to raw audio which is played via alsa.

Synopsis

Element Information

plugin

timidity

author

Wouter Paesen <wouter@blue-gate.be>

class

Codec/Decoder/Audio

Element Pads

name

src

direction

source

presence

always

details

audio/x-raw-int, rate=(int)44100, channels=(int)2, endianness=(int)1234, width=(int)16, depth=(int)16, signed=(boolean)true

name

sink

direction

sink

presence

always

details

audio/midi

Details

GstTimidity

typedef struct {
    GstElement element;

    GstPad *sinkpad, *srcpad;

    gboolean initialized;

    /* input stream properties */
    gint64 mididata_size, mididata_offset;
    gchar *mididata;
    gboolean mididata_filled;

    MidSong *song;

    /* output data */
    gboolean o_new_segment, o_segment_changed, o_seek;
    GstSegment o_segment[1];
    gint64 o_len;

    /* format of the stream */
    MidSongOptions song_options[1];
    gint64 bytes_per_frame;
    GstClockTime time_per_frame;

    GstCaps *out_caps;
} GstTimidity;

See Also

wildmidi