Convert midi to mp3

前端 未结 5 1947
伪装坚强ぢ
伪装坚强ぢ 2020-12-31 23:14

I have got one midi file and i want to play that file on web page, currently i am using midi.js player for playing but it is not working on mobile browsers.

Please g

5条回答
  •  执笔经年
    2020-12-31 23:36

    Guessing you're on a linux machine... The simplest way is to play it with timidity and pipe the output ffmpeg:

    timidity song.mid -Ow -o - | ffmpeg -i - -acodec libmp3lame -ab 64k song.mp3
    

提交回复
热议问题