tags:

views:

148

answers:

1

Hello basic question , i need to play mp3's in my application in windows when goggling i got allot of tutorials about VFW32.lib to play mp3's and i know lame , what is the best option for playing mp3's in c++?

A: 

VfW is an API that predates DirectShow on Windows, and was the original API that provided access to the system's video codecs. I'd wager that today, it's extremely non-portable, and shouldn't be used. Instead, prefer either the DirectShow API or a separate library like either Lame or libmad or a framework like ffmpeg.

greyfade
does ffmpeg is free ( not gpl ? )
This page explains: http://www.ffmpeg.org/legal.html
greyfade