FLV to mp3 converter GPU implementation

hi all,

can any body provide a simple c code for extracting mp3 from flv. And tell me is it a good idea to do such thing in CUDA.

I have found source code of some open projects but its very difficult to understand them because they not only extract audio from flv but also have many other functions.

So any help in this regard.

thanks

I don’t think this is a good project for CUDA. FLV is just a container format, so all you really need to do is extract the audio stream from it (which may actually be mp3 already). If the stream is in another format, then you might be able to write a transcoder from that format to mp3.