How can I present live audio data (updating buffer) as an audio file in C
I am recieving live audio as floating points in an updating array.开发者_开发知识库 I want this live data to present as a file that can b read by vlc media player. Can someone guide me how can I do that in C language?
/mudassar
Does your operating system support pipes or fifos? You can stream input into VLC's standard input from the command line, or have your program write to the other end of a FIFO. Only standard C library read/write calls are necessary.
精彩评论