tags:

views:

26

answers:

1

Hi

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

+2  A: 

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.

Joe Koberg